@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
11 lines • 331 B
TypeScript
import type { Utxo } from '../serializable/avax/utxo';
export type UtxoInfo = Readonly<{
amount: bigint;
assetId: string;
locktime: bigint;
stakeableLocktime: bigint;
threshold: number;
utxoId: string;
}>;
export declare const getUtxoInfo: (utxo: Utxo) => UtxoInfo;
//# sourceMappingURL=getUtxoInfo.d.ts.map