GMX · Schema

CrossChainWithdrawPrepareRequest

DeFiPerpetual ExchangeDEXTradingLeverageLiquidity PoolsGLPGM TokensGLVArbitrumAvalancheWeb3

Properties

Name Type Description
gasPaymentToken string Optional ERC-20 token to pay relayer fee in. Defaults to chain's gas-payment token.
bridgeOutParams object
account string
srcChainId number
View JSON Schema on GitHub

JSON Schema

CrossChainWithdrawPrepareRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/gmx/json-schema/CrossChainWithdrawPrepareRequest.json",
  "title": "CrossChainWithdrawPrepareRequest",
  "properties": {
    "gasPaymentToken": {
      "type": "string",
      "description": "Optional ERC-20 token to pay relayer fee in. Defaults to chain's gas-payment token."
    },
    "bridgeOutParams": {
      "$ref": "#/components/schemas/BridgeOutParamsDto"
    },
    "account": {
      "type": "string"
    },
    "srcChainId": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "bridgeOutParams",
    "account",
    "srcChainId"
  ],
  "type": "object"
}