2025-10-24 22:49:46 +07:00
|
|
|
export interface WalletState {
|
|
|
|
|
seedPhrase: string[] | null
|
2025-10-31 01:22:35 +07:00
|
|
|
password: string | null
|
2025-10-24 22:49:46 +07:00
|
|
|
receiverId: string | null
|
|
|
|
|
viewKey: string | null
|
|
|
|
|
address: string | null
|
|
|
|
|
network: 'mainnet' | 'testnet'
|
|
|
|
|
balance: string | null
|
|
|
|
|
utxos: any[]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface GenerateSeedResult {
|
|
|
|
|
seed_phrase: string[]
|
|
|
|
|
receiver_identifier: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ViewKeyResult {
|
|
|
|
|
receiver_identifier: string
|
|
|
|
|
view_key: string
|
|
|
|
|
address: string
|
|
|
|
|
}
|