Get Supported Assets
curl --request GET \
--url https://staging-api.getpartna.com/v4/supported/assetsimport requests
url = "https://staging-api.getpartna.com/v4/supported/assets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://staging-api.getpartna.com/v4/supported/assets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging-api.getpartna.com/v4/supported/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://staging-api.getpartna.com/v4/supported/assets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://staging-api.getpartna.com/v4/supported/assets")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging-api.getpartna.com/v4/supported/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"byCurrency": {
"BTC": {
"bitcoin": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 8,
"destinationCurrency": "BTC",
"faucets": [
"https://coinfaucet.eu/en/btc-testnet/",
"https://bitcoinfaucet.uo1.net/"
],
"minimumWithdrawal": 0,
"name": "BTC",
"symbol": "BTC",
"transactionExplorerLink": "https://blockstream.info/testnet/tx/%s",
"withdrawalFee": 0.01
}
},
"CUSD": {
"celo": {
"assetIndex": 0,
"contractAddress": "0xde9e4c3ce781b4ba68120d6261cbad65ce0ab00b",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://app.mento.org/"
],
"minimumWithdrawal": 1,
"name": "CUSD",
"symbol": "CUSD",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"ETH": {
"ethereum": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 18,
"destinationCurrency": "ETH",
"faucets": [
"https://cloud.google.com/application/web3/faucet/ethereum/sepolia",
"https://sepolia-faucet.pk910.de/",
"https://faucet.quicknode.com/ethereum/sepolia",
"https://getblock.io/faucet/eth-sepolia/"
],
"minimumWithdrawal": 0,
"name": "ETH",
"symbol": "ETH",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"GHS": {
"ghanaiancedis": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "GHS",
"minimumWithdrawal": 5,
"name": "GHS",
"symbol": "GHS",
"withdrawalFee": 0.01
}
},
"KES": {
"kenyanshilling": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "KES",
"minimumWithdrawal": 5,
"name": "KES",
"symbol": "KES",
"withdrawalFee": 0.01
}
},
"NGN": {
"naira": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "NGN",
"minimumWithdrawal": 50,
"name": "NGN",
"symbol": "NGN",
"withdrawalFee": 0.01
}
},
"USDC": {
"celo": {
"assetIndex": 0,
"contractAddress": "0x01c5c0122039549ad1493b8220cabedd739bc44e",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/",
"https://faucet.celo.org/celo-sepolia"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
},
"ethereum": {
"assetIndex": 0,
"contractAddress": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
},
"solana": {
"assetIndex": 2,
"contractAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
}
},
"USDJ": {
"tron": {
"assetIndex": 1,
"contractAddress": "TLBaRhANQoJFTqre9Nf1mjuwNWjCJeYqUL",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDJ",
"symbol": "USDJ",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
}
},
"USDT": {
"solana": {
"assetIndex": 2,
"contractAddress": "Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://spl-token-faucet.com/?token-name=USDT"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
},
"tron": {
"assetIndex": 1,
"contractAddress": "TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
}
}
},
"byNetWork": {
"bitcoin": {
"BTC": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 8,
"destinationCurrency": "BTC",
"faucets": [
"https://coinfaucet.eu/en/btc-testnet/",
"https://bitcoinfaucet.uo1.net/"
],
"minimumWithdrawal": 0,
"name": "BTC",
"symbol": "BTC",
"transactionExplorerLink": "https://blockstream.info/testnet/tx/%s",
"withdrawalFee": 0.01
}
},
"celo": {
"CUSD": {
"assetIndex": 0,
"contractAddress": "0xde9e4c3ce781b4ba68120d6261cbad65ce0ab00b",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://app.mento.org/"
],
"minimumWithdrawal": 1,
"name": "CUSD",
"symbol": "CUSD",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
},
"USDC": {
"assetIndex": 0,
"contractAddress": "0x01c5c0122039549ad1493b8220cabedd739bc44e",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/",
"https://faucet.celo.org/celo-sepolia"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"ethereum": {
"ETH": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 18,
"destinationCurrency": "ETH",
"faucets": [
"https://cloud.google.com/application/web3/faucet/ethereum/sepolia",
"https://sepolia-faucet.pk910.de/",
"https://faucet.quicknode.com/ethereum/sepolia",
"https://getblock.io/faucet/eth-sepolia/"
],
"minimumWithdrawal": 0,
"name": "ETH",
"symbol": "ETH",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
},
"USDC": {
"assetIndex": 0,
"contractAddress": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"ghanaiancedis": {
"GHS": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "GHS",
"minimumWithdrawal": 5,
"name": "GHS",
"symbol": "GHS",
"withdrawalFee": 0.01
}
},
"kenyanshilling": {
"KES": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "KES",
"minimumWithdrawal": 5,
"name": "KES",
"symbol": "KES",
"withdrawalFee": 0.01
}
},
"naira": {
"NGN": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "NGN",
"minimumWithdrawal": 50,
"name": "NGN",
"symbol": "NGN",
"withdrawalFee": 0.01
}
},
"solana": {
"USDC": {
"assetIndex": 2,
"contractAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
},
"USDT": {
"assetIndex": 2,
"contractAddress": "Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://spl-token-faucet.com/?token-name=USDT"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
}
},
"tron": {
"USDJ": {
"assetIndex": 1,
"contractAddress": "TLBaRhANQoJFTqre9Nf1mjuwNWjCJeYqUL",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDJ",
"symbol": "USDJ",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
},
"USDT": {
"assetIndex": 1,
"contractAddress": "TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
}
}
}
},
"message": "success"
}Supported
Get Supported Assets
Get a list of supported assets including symbols, contract details, withdrawal constraints, and transaction explorer links.
GET
/
supported
/
assets
Get Supported Assets
curl --request GET \
--url https://staging-api.getpartna.com/v4/supported/assetsimport requests
url = "https://staging-api.getpartna.com/v4/supported/assets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://staging-api.getpartna.com/v4/supported/assets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging-api.getpartna.com/v4/supported/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://staging-api.getpartna.com/v4/supported/assets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://staging-api.getpartna.com/v4/supported/assets")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging-api.getpartna.com/v4/supported/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"byCurrency": {
"BTC": {
"bitcoin": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 8,
"destinationCurrency": "BTC",
"faucets": [
"https://coinfaucet.eu/en/btc-testnet/",
"https://bitcoinfaucet.uo1.net/"
],
"minimumWithdrawal": 0,
"name": "BTC",
"symbol": "BTC",
"transactionExplorerLink": "https://blockstream.info/testnet/tx/%s",
"withdrawalFee": 0.01
}
},
"CUSD": {
"celo": {
"assetIndex": 0,
"contractAddress": "0xde9e4c3ce781b4ba68120d6261cbad65ce0ab00b",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://app.mento.org/"
],
"minimumWithdrawal": 1,
"name": "CUSD",
"symbol": "CUSD",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"ETH": {
"ethereum": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 18,
"destinationCurrency": "ETH",
"faucets": [
"https://cloud.google.com/application/web3/faucet/ethereum/sepolia",
"https://sepolia-faucet.pk910.de/",
"https://faucet.quicknode.com/ethereum/sepolia",
"https://getblock.io/faucet/eth-sepolia/"
],
"minimumWithdrawal": 0,
"name": "ETH",
"symbol": "ETH",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"GHS": {
"ghanaiancedis": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "GHS",
"minimumWithdrawal": 5,
"name": "GHS",
"symbol": "GHS",
"withdrawalFee": 0.01
}
},
"KES": {
"kenyanshilling": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "KES",
"minimumWithdrawal": 5,
"name": "KES",
"symbol": "KES",
"withdrawalFee": 0.01
}
},
"NGN": {
"naira": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "NGN",
"minimumWithdrawal": 50,
"name": "NGN",
"symbol": "NGN",
"withdrawalFee": 0.01
}
},
"USDC": {
"celo": {
"assetIndex": 0,
"contractAddress": "0x01c5c0122039549ad1493b8220cabedd739bc44e",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/",
"https://faucet.celo.org/celo-sepolia"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
},
"ethereum": {
"assetIndex": 0,
"contractAddress": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
},
"solana": {
"assetIndex": 2,
"contractAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
}
},
"USDJ": {
"tron": {
"assetIndex": 1,
"contractAddress": "TLBaRhANQoJFTqre9Nf1mjuwNWjCJeYqUL",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDJ",
"symbol": "USDJ",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
}
},
"USDT": {
"solana": {
"assetIndex": 2,
"contractAddress": "Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://spl-token-faucet.com/?token-name=USDT"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
},
"tron": {
"assetIndex": 1,
"contractAddress": "TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
}
}
},
"byNetWork": {
"bitcoin": {
"BTC": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 8,
"destinationCurrency": "BTC",
"faucets": [
"https://coinfaucet.eu/en/btc-testnet/",
"https://bitcoinfaucet.uo1.net/"
],
"minimumWithdrawal": 0,
"name": "BTC",
"symbol": "BTC",
"transactionExplorerLink": "https://blockstream.info/testnet/tx/%s",
"withdrawalFee": 0.01
}
},
"celo": {
"CUSD": {
"assetIndex": 0,
"contractAddress": "0xde9e4c3ce781b4ba68120d6261cbad65ce0ab00b",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://app.mento.org/"
],
"minimumWithdrawal": 1,
"name": "CUSD",
"symbol": "CUSD",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
},
"USDC": {
"assetIndex": 0,
"contractAddress": "0x01c5c0122039549ad1493b8220cabedd739bc44e",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/",
"https://faucet.celo.org/celo-sepolia"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.celoscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"ethereum": {
"ETH": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 18,
"destinationCurrency": "ETH",
"faucets": [
"https://cloud.google.com/application/web3/faucet/ethereum/sepolia",
"https://sepolia-faucet.pk910.de/",
"https://faucet.quicknode.com/ethereum/sepolia",
"https://getblock.io/faucet/eth-sepolia/"
],
"minimumWithdrawal": 0,
"name": "ETH",
"symbol": "ETH",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
},
"USDC": {
"assetIndex": 0,
"contractAddress": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://sepolia.etherscan.io/tx/%s",
"withdrawalFee": 0.01
}
},
"ghanaiancedis": {
"GHS": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "GHS",
"minimumWithdrawal": 5,
"name": "GHS",
"symbol": "GHS",
"withdrawalFee": 0.01
}
},
"kenyanshilling": {
"KES": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "KES",
"minimumWithdrawal": 5,
"name": "KES",
"symbol": "KES",
"withdrawalFee": 0.01
}
},
"naira": {
"NGN": {
"assetIndex": 0,
"contractAddress": "",
"decimals": 6,
"destinationCurrency": "NGN",
"minimumWithdrawal": 50,
"name": "NGN",
"symbol": "NGN",
"withdrawalFee": 0.01
}
},
"solana": {
"USDC": {
"assetIndex": 2,
"contractAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://faucet.circle.com/"
],
"minimumWithdrawal": 1,
"name": "USDC",
"symbol": "USDC",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
},
"USDT": {
"assetIndex": 2,
"contractAddress": "Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://spl-token-faucet.com/?token-name=USDT"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://solscan.io/tx/%s?cluster=devnet",
"withdrawalFee": 0.01
}
},
"tron": {
"USDJ": {
"assetIndex": 1,
"contractAddress": "TLBaRhANQoJFTqre9Nf1mjuwNWjCJeYqUL",
"decimals": 18,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDJ",
"symbol": "USDJ",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
},
"USDT": {
"assetIndex": 1,
"contractAddress": "TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj",
"decimals": 6,
"destinationCurrency": "USD",
"faucets": [
"https://nileex.io/join/getJoinPage"
],
"minimumWithdrawal": 1,
"name": "USDT",
"symbol": "USDT",
"transactionExplorerLink": "https://nile.tronscan.org/#/transaction/%s",
"withdrawalFee": 0.01
}
}
}
},
"message": "success"
}Was this page helpful?
⌘I