Crates.io | astroport-router |
lib.rs | astroport-router |
version | 1.2.1 |
source | src |
created_at | 2023-07-20 16:32:36.525204 |
updated_at | 2024-03-26 12:37:02.87693 |
description | The Astroport router contract - provides multi-hop swap functionality for Astroport pools |
homepage | https://astroport.fi |
repository | https://github.com/astroport-fi/astroport |
max_upload_size | |
id | 921509 |
size | 114,688 |
The Router contract contains logic to facilitate multi-hop swaps for Terra native & Astroport tokens.
For every swap, the contract checks if the resulting token is the one that was asked for and whether the receiving amount exceeds the minimum to receive.
Initializes the contract with the Astroport factory contract address.
{
"astroport_factory": "terra..."
}
receive
CW20 receive msg.
{
"receive": {
"sender": "terra...",
"amount": "123",
"msg": "<base64_encoded_json_string>"
}
}
execute_swap_operation
Swaps one token to another. single defines whether this swap is single or part of a multi hop route. This message is for internal use.
Swap UST => mABNB
{
"execute_swap_operation": {
"operation": {
"astro_swap": {
"offer_asset_info": {
"native_token": {
"denom": "uusd"
}
},
"ask_asset_info": {
"token": {
"contract_addr": "terra..."
}
}
}
},
"to": "terra...",
"max_spread": "0.05",
"single": false
}
}
execute_swap_operations
Performs multi-hop swap operations for native & Astroport tokens. Swaps execute one-by-one and the last swap will return the ask token. This function is public (can be called by anyone).
Contract sets total 'return_amount' in response data after all routes are processed. See SwapResponseData
type for more info.
Note: Response data makes sense ONLY if the first token in multi-hop swap is native. Otherwise, cw20::send message resets response data.
Swap KRT => UST => mABNB
{
"execute_swap_operations": {
"operations": [
{
"native_swap":{
"offer_denom":"ukrw",
"ask_denom":"uusd"
}
},
{
"astro_swap": {
"offer_asset_info": {
"native_token": {
"denom": "uusd"
}
},
"ask_asset_info": {
"token": {
"contract_addr": "terra..."
}
}
}
}
],
"minimum_receive": "123",
"to": "terra...",
"max_spread": "0.05"
}
}
assert_minimum_receive
Checks that an amount of ask tokens exceeds minimum_receive
. This message is for internal use.
{
"assert_minimum_receive": {
"asset_info": {
"token": {
"contract_addr": "terra..."
}
},
"prev_balance": "123",
"minimum_receive": "123",
"receiver": "terra..."
}
}
All query messages are described below. A custom struct is defined for each query response.
config
Returns the general configuration for the router contract.
{
"config": {}
}
simulate_swap_operations
Simulates multi-hop swap operations. Examples:
{
"simulate_swap_operations" : {
"offer_amount": "123",
"operations": [
{
"native_swap": {
"offer_denom": "ukrw",
"ask_denom": "uusd"
}
},
{
"astro_swap": {
"offer_asset_info": {
"native_token": {
"denom": "uusd"
}
},
"ask_asset_info": {
"token": {
"contract_addr": "terra..."
}
}
}
}
]
}
}
{
"simulate_swap_operations" : {
"offer_amount": "123",
"operations": [
{
"native_swap": {
"offer_denom": "uusd",
"ask_denom": "ukrw"
}
},
{
"astro_swap": {
"offer_asset_info": {
"token": {
"contract_addr": "terra..."
}
},
"ask_asset_info": {
"native_token": {
"denom": "uusd"
}
}
}
}
]
}
}