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

10 lines
378 B
TypeScript

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[]);
}