Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

router/v1 package

Overview

package router handles token swaps through GnoSwap liquidity pools.

The router provides user-facing swap functions with slippage protection, multi-hop routing, and both exact-input and exact-output swap modes.

Live exact-input calls enforce a minimum output and deadline. Live exact-output calls enforce a maximum input and deadline. DrySwapRoute is read-only and has no deadline or transfer.

Function

BuildSingleHopRoutePath

func BuildSingleHopRoutePath(tokenA, tokenB string, fee uint32) string

BuildSingleHopRoutePath formats one route-direction single-hop path.

Parameters:

  • tokenA: input token contract path
  • tokenB: output token contract path
  • fee: pool fee tier appended as a decimal value

Returns:

  • routePath: tokenA:tokenB:fee formatted route string; panics for empty or identical tokens

Params

Command

gnokey query vm/qeval -remote "http://127.0.0.1:26657" -data "gno.land/r/gnoswap/router/v1.BuildSingleHopRoutePath(,,)"

Result