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

10 lines
378 B
TypeScript
Raw Permalink Normal View History

2023-08-07 23:20:23 +00:00
import { NativeScript } from '@emurgo/cardano-serialization-lib-nodejs';
import { Bip32KeyPair } from '../utils';
import { AssetWallet } from './asset-wallet';
export declare class TokenWallet {
asset: AssetWallet;
script?: NativeScript;
scriptKeyPairs?: Bip32KeyPair[];
constructor(asset: AssetWallet, script?: NativeScript, scriptKeyPairs?: Bip32KeyPair[]);
}