SupportedController_getIfTokenIsSupported
GET/v2/supported/token-support
SupportedController_getIfTokenIsSupported
Request​
Query Parameters
chainId stringrequired
Id of chain, e.g Optimism = 10
Example: 10
address stringrequired
Contract address of the token
Example: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
Header Parameters
API-KEY string
Responses​
- 200
Get if token is supported
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
successbooleanrequired
Status of API.
Example:
true
result
object[]
required
chainIdnumberrequired
Id of chain.
Example:
137
namestringrequired
Name of chain.
Example:
Polygon
iconstringrequired
URL for icon of chain.
Example:
https://movricons.s3.ap-south-1.amazonaws.com/Matic.svg
isL1booleanrequired
Flag indicating whether the chain is L1.
Example:
false
sendingEnabledbooleanrequired
Flag indicating whether sending of tokens is supported from chain.
Example:
true
receivingEnabledbooleanrequired
Flag indicating whether receiving of tokens is supported to chain.
Example:
true
refuel
object
required
sendingEnabledboolean
receivingEnabledboolean
currency
object
required
addressstringrequired
Address of gas token.
Example:
0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
iconstringrequired
URL for icon of gas token.
Example:
https://maticnetwork.github.io/polygon-token-assets/assets/matic.svg
namestringrequired
Name of gas token.
Example:
Matic
symbolstringrequired
Symbol of gas token.
Example:
MATIC
decimalsnumberrequired
Decimals of gas token.
Example:
18
minNativeCurrencyForGasstringrequired
Minimum amount to be left for gas while using max amount.
Example:
100000000000000000
rpcsstring[]required
explorersstring[]required
{
"success": true,
"result": [
{
"chainId": 137,
"name": "Polygon",
"icon": "https://movricons.s3.ap-south-1.amazonaws.com/Matic.svg",
"isL1": false,
"sendingEnabled": true,
"receivingEnabled": true,
"refuel": {
"sendingEnabled": true,
"receivingEnabled": true
},
"currency": {
"address": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"icon": "https://maticnetwork.github.io/polygon-token-assets/assets/matic.svg",
"name": "Matic",
"symbol": "MATIC",
"decimals": 18,
"minNativeCurrencyForGas": "100000000000000000"
},
"rpcs": [
"string"
],
"explorers": [
"string"
]
}
]
}