mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-20 14:58:24 +00:00
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
import type { RawTransaction } from 'libs/transaction';
|
|
|
|
export interface IWallet {
|
|
getAddress: () => Promise<string>,
|
|
signRawTransaction: (_tx: RawTransaction) => Promise<string>
|
|
}
|