QuipuSwap Wrapper

Import Plugins

#import { Connection } into Tezos from "w3://ens/tezos.web3api.eth"

Response Types

Network

enum Network {
  custom
  mainnet
  ghostnet
}

Mutations

Import Plugins

#import { Mutation, SendParams, TransferParams } into Tezos from "w3://ens/tezos.web3api.eth"
#import { Network, CustomConnection } from "../common/schema.graphql"

Add Operator

FA2-interface: grant allowance to move LP tokens owned by owner.

Remove Operator

FA2-interface: revoke allowance to move LP tokens

Swap Direct

DEX interface: swap variant 1: direct swap using an explicit pair

Swap Multi Hop

DEX interface: swap variant 2: user-defined routing

Invest

DEX interface: add liquidity

Divest

DEX interface: remove liquidity

Transfer

FA2-interface: transfer own tokens (sender/from is caller)

Transfer From

FA2-interface: transfer from tokens (sender is explicit)

Common Types

Swap Direction

Operator Params

Swap Pair

Swap Params

Swap Direct Params

Swap Multi Hop Params

Invest Params

Divest Params

Transfer Params

Query Functions

Last updated