@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
14 lines (11 loc) • 345 B
text/typescript
export type SpendOptions = {
minIssuanceTime?: bigint;
changeAddresses?: readonly Uint8Array[];
threshold?: number;
memo?: Uint8Array;
locktime?: bigint;
};
export type SpendOptionsRequired = Required<SpendOptions>;
//the string is address in hex
export type SigMapping = Map<string, number>;
export type SigMappings = SigMapping[];