UNPKG

@avalabs/avalanchejs

Version:
14 lines (11 loc) 345 B
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[];