sarga-cardano-wallet-js-dist/wallet/key-wallet.d.ts
2023-08-08 01:20:23 +02:00

13 lines
372 B
TypeScript

import { ApiVerificationKey } from '../models';
export declare class KeyWallet implements ApiVerificationKey {
key: any;
role: KeyRoleEnum;
constructor(key: any, role: KeyRoleEnum);
}
export declare enum KeyRoleEnum {
AddressExternal = "utxo_external",
AddressInternal = "utxo_internal",
Stake = "mutable_account",
Script = "multisig_script"
}