mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
|
export interface ITransactionStatus {
|
||
|
serializedTransaction: Buffer;
|
||
|
broadcastedHash: string | null;
|
||
|
isBroadcasting: boolean;
|
||
|
broadcastSuccessful: boolean;
|
||
|
}
|
||
|
|
||
|
export interface State {
|
||
|
[indexingHash: string]: ITransactionStatus | null;
|
||
|
}
|