For the complete documentation index, see llms.txt. This page is also available as Markdown.

GetExchangeById

Query exchange pair based on id (Confirmed state).

This method will use 30 Compute Units.


Parameters

  • id - Int32 - Transaction Pair ID

Returns

Field
Type
Description

exchange_id

int64

Exchange pair ID

creator_address

string

Creator address

create_time

int64

Creation time

first_token_id

string

First token ID

first_token_balance

int64

First token balance

second_token_id

string

Second token ID

second_token_balance

int64

Second token balance

// Result
{
  "exchange_id": 1,
  "creator_address": "410ca7c49aa44d26aabfe7f594c645cf9f17a4ff70",
  "create_time": 1575754887000,
  "first_token_id": "31303030303033",
  "first_token_balance": 9,
  "second_token_id": "5f",
  "second_token_balance": 240000000
}

Last updated

Was this helpful?