MyCrypto/common/reducers/transaction/sign/typings.ts

11 lines
179 B
TypeScript

export interface State {
indexingHash: string | null;
pending: boolean;
local: {
signedTransaction: Buffer | null;
};
web3: {
transaction: Buffer | null;
};
}