interface GCREditBalance {
    account: string;
    amount: number;
    isRollback: boolean;
    operation: "add" | "remove";
    txhash: string;
    type: "balance";
}

Properties

account: string
amount: number
isRollback: boolean
operation: "add" | "remove"
txhash: string
type