Querying MAYAChain
How to Query MAYAChain
Last updated
Was this helpful?
How to Query MAYAChain
Last updated
Was this helpful?
Vaults are fetched from the /inbound_addresses
:
You need to select the address of the Chain the inbound transaction will go to.
The address will be the current active Asgard Address that accepts inbounds. Do not cache these address as they change regularly. Do not delay inbound transactions (e.g. do not use future timeLocks).
Example Output, each connected chain will be displayed.
Never cache vault addresses, they churn regularly.
Inbound transactions should not be delayed for any reason else there is risk funds will be sent to an unreachable address. Use standard transactions, check the inbound address
before sending and use the recommended gas rate
to ensure transactions are confirmed in the next block to the latest Inbound_Address
.
Check for the halted
parameter and never send funds if it is set to true
If a chain has a router
on the inbound address endpoint, then everything must be deposited via the router. The router is a contract that the user first approves, and the deposit call transfers the asset into the network and emits an event to THORChain.
This is done because "tokens" on protocols don't support memos on-chain, thus need to be wrapped by a router which can force a memo.
Note: you can transfer the base asset, eg ETH, directly to the address and skip the router, but it is recommended to deposit everything via the router.
Chain
: Chain Name
Address
: Asgard Vault inbound address for that chain.,
Halted
: Boolean, if the chain is halted. This should be monitored.
gas_rate
: rate to be used, e.g. in Stats or GWei. See Fees.
All values on MAYAChain (MAYANode and Midgard) are given in 1e8 eg, 100000000 base units (like Bitcoin), and unless postpended by "USD", they are in units of RUNE. Even 1e18 assets, such as ETH.ETH, are shortened to 1e8. 1e6 Assets like ETH.USDC, are padded to 1e8. MAYANode will tell you the decimals for each asset, giving you the opportunity to convert back to native units in your interface.
There are two ways to see if a Chain is halted.
If you connect to a public Midgard, you must be conscious of the fact that you can be phished and could send money to the WRONG vault. You should do safety checks, i.e. comparing with other nodes, or even inspecting the vault itself for the presence of funds. You should also consider running your own '' instance to query for trusted data.
Use the /pools
of Midgard to retrieve all swappable assets on MAYAChain. The response will be an array of objects like this:
See code examples using the MAYAChain xchain package here
Looking at the /inbound_addresses
and inspecting the halted flag.
Looking at Mimir and inspecting the HALT[Chain]TRADING setting. See for more details.