@ree-network/ts-sdk
Version:
An SDK for building applications on top of REE Network
19 lines (18 loc) • 425 B
TypeScript
export declare type CoinBalance = {
id: string;
value: bigint;
};
export declare type ReeInstruction = {
method: string;
exchange_id: string;
input_coin_balances: CoinBalance[];
output_coin_balances: CoinBalance[];
nonce?: bigint;
pool_id?: string;
};
export declare type InvokeArgs = {
instruction_set: {
steps: ReeInstruction[];
};
psbt_hex: string;
};