sarga-cardano-wallet-js-dist/wallet/key-wallet.d.ts

13 lines
372 B
TypeScript
Raw Permalink Normal View History

2023-08-07 23:20:23 +00:00
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"
}