From 222db03817d12b7c857830c572ff83f9ffe29fcb Mon Sep 17 00:00:00 2001 From: sam bacha Date: Mon, 15 Mar 2021 01:35:29 -0700 Subject: [PATCH] feat: API (#18) --- .gitignore | 5 +- api/config/creds.env.sample | 1 + api/package.json | 39 + api/scripts/erc1155-mainnet.ts | 157 + api/scripts/erc20-mainnet.ts | 109 + api/scripts/erc721-mainnet.ts | 163 + api/scripts/open-graph-scrapper.ts | 83 + api/src/data/erc-1155-dune-dump.csv | 561 + .../data/erc1155_dune_dump_2021_01_25.json | 2802 + api/src/data/erc721_dune_dump_2021_01_20.json | 14597 ++++ api/src/registry/mainnet/erc1155.json | 9 + api/src/registry/mainnet/erc20.json | 9 + api/src/registry/mainnet/erc721.json | 9 + api/src/utils.ts | 13 + api/tsconfig.json | 12 + package.json | 10 +- src/schema.json | 89 + src/yearn.ecosystem.json | 56730 ++++++++++++++++ 18 files changed, 75393 insertions(+), 5 deletions(-) create mode 100644 api/config/creds.env.sample create mode 100644 api/package.json create mode 100644 api/scripts/erc1155-mainnet.ts create mode 100644 api/scripts/erc20-mainnet.ts create mode 100644 api/scripts/erc721-mainnet.ts create mode 100644 api/scripts/open-graph-scrapper.ts create mode 100644 api/src/data/erc-1155-dune-dump.csv create mode 100644 api/src/data/erc1155_dune_dump_2021_01_25.json create mode 100644 api/src/data/erc721_dune_dump_2021_01_20.json create mode 100644 api/src/registry/mainnet/erc1155.json create mode 100644 api/src/registry/mainnet/erc20.json create mode 100644 api/src/registry/mainnet/erc721.json create mode 100644 api/src/utils.ts create mode 100644 api/tsconfig.json create mode 100644 src/schema.json create mode 100644 src/yearn.ecosystem.json diff --git a/.gitignore b/.gitignore index f3032a8..a26ae58 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ package-lock.json - +*.zip +*.tar.gz +*.tar +.DS_Store # Logs logs *.log diff --git a/api/config/creds.env.sample b/api/config/creds.env.sample new file mode 100644 index 0000000..14d6c2f --- /dev/null +++ b/api/config/creds.env.sample @@ -0,0 +1 @@ +INFURA_API_KEY="" \ No newline at end of file diff --git a/api/package.json b/api/package.json new file mode 100644 index 0000000..1afb24e --- /dev/null +++ b/api/package.json @@ -0,0 +1,39 @@ +{ + "name": "yearn-tokenlist-api", + "version": "1.0.0", + "main": "index.js", + "scripts": { + "build-list:all": "yarn build-list:erc20-mainnet && yarn build-list:erc721-mainnet && yarn build-list:erc1155-mainnet && yarn scrape-open-graph", + "build-list:erc20-mainnet": "ts-node ./scripts/erc20-mainnet.ts && yarn run lint:fix-json", + "build-list:erc721-mainnet": "ts-node ./scripts/erc721-mainnet.ts && yarn run lint:fix-json", + "build-list:erc1155-mainnet": "ts-node ./scripts/erc1155-mainnet.ts && yarn run lint:fix-json", + "scrape-open-graph": "ts-node ./scripts/open-graph-scrapper.ts && yarn run lint:fix-json", + "lint:fix-json": "prettier --write \"../index/**/*.json\"" + }, + "author": "", + "license": "ISC", + "devDependencies": { + "@nomiclabs/hardhat-ethers": "^2.0.1", + "@openzeppelin/contracts": "^3.3.0", + "@types/fs-extra": "^9.0.6", + "@types/lodash.isequal": "^4.5.5", + "@types/lodash.kebabcase": "^4.1.6", + "@types/node": "^14.14.20", + "@types/node-fetch": "^2.5.7", + "@uniswap/token-lists": "^1.0.0-beta.19", + "ajv": "6.12.2", + "ajv-formats": "^1.5.1", + "cli-progress": "^3.8.2", + "dotenv": "^8.2.0", + "ethers": "^5.0.26", + "fs-extra": "^9.0.1", + "hardhat": "^2.0.8", + "lodash.isequal": "^4.5.0", + "lodash.kebabcase": "^4.1.1", + "node-fetch": "^2.6.1", + "open-graph-scraper": "^4.7.1", + "prettier": "^2.2.1", + "ts-node": "^9.1.1", + "typescript": "^4.1.3" + } +} diff --git a/api/scripts/erc1155-mainnet.ts b/api/scripts/erc1155-mainnet.ts new file mode 100644 index 0000000..ee7ccf0 --- /dev/null +++ b/api/scripts/erc1155-mainnet.ts @@ -0,0 +1,157 @@ +import * as fs from "fs" +import * as ethers from 'ethers' +import fetch from "node-fetch" +import { nextVersion, schema, VersionUpgrade, YearnList, YearnInfo } from '@0xsequence/collectible-lists' +import { getEnvConfig } from "../src/utils" +const Ajv = require("ajv") +const isEqual = require("lodash.isequal") +const cliProgress = require('cli-progress'); + +// Loading jsons +const erc1155json = require("@openzeppelin/contracts/build/contracts/ERC1155.json") +const erc1155Dump: TokenDump[] = require("../src/data/erc1155_dune_dump_2021_01_25.json") +const erc1155: YearnList = require("../../index/mainnet/erc1155.json") + +// Build ERC-1155 list +// 1. Load crv dump from Dune analytics +// 2. Query contract info via opensea API +// 3. Build list according to @0xsequence/collectible-lists + +// List to fetch +const ERC1155_LIST_PATH = "../index/mainnet/erc1155.json" +const config = getEnvConfig() +const provider = new ethers.providers.InfuraProvider('mainnet', config['INFURA_API_KEY']) + +interface TokenDump { + name: string; + address: string; + n_transfers: number; +} + +// Building list +const main = async () => { + + // Create token information array + let newYearnList: YearnInfo[] = [] + const erc1155Contracts: string[] = [...new Set([...erc1155Dump.map(t => t.address)])] + const errors: any = [] + + // Progress bar init + console.log('Building ERC-1155 mainnet list') + const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic); + progressBar.start(erc1155Contracts.length, 0) + for (let i= 0; i < erc1155Contracts.length; i++) { + let resp + try { + resp = await fetch('https://api.opensea.io/api/v1/asset_contract/' + erc1155Contracts[i]) + } catch (err) { + console.log(err) + } + while (resp && resp.status == 429) { + await new Promise(r => setTimeout(r, 5000)); + try { + resp = await fetch('https://api.opensea.io/api/v1/asset_contract/' + erc1155Contracts[i]) + } catch (err) { + console.log(err) + } + } + if (!resp || !resp.ok) { + errors.push({ + id: i, + address: erc1155Contracts[i], + resp: !resp ? null : resp.status + ' - ' + resp.statusText + }) + progressBar.update(i+1) + continue + } + const info = await resp.json() + + // Query symbol on contract if couldn't find it + let validSymbol + if (!info.symbol || info.symbol === "") { + const erc1155contract = new ethers.Contract(erc1155Contracts[i], erc1155json.abi, provider) + try { + validSymbol = await erc1155contract.symbol() + } catch { + validSymbol = "" + } + } else { + validSymbol = info.symbol + } + + // Force some basic validation so they are compatible with schema + validSymbol = validSymbol.length <= 20 ? validSymbol : validSymbol.slice(0,20) + const validName = !info.name || info.name.length <= 64 ? info.name : info.name.slice(0,64) + const validDescription = !info.description || info.description.length <= 1000 ? info.description : info.description.slice(0,997) + '...' + + // Append token to list + newYearnList.push({ + chainId: 1, + address: erc1155Contracts[i], + name: validName, + standard: "erc1155", + symbol: validSymbol === "" ? null : validSymbol, + logoURI: !info.image_url || info.image_url === "" ? null : info.image_url, + extensions: { + "link": !info.external_link || info.external_link === "" ? null : info.external_link, + "description": !validDescription || validDescription === "" ? null : validDescription + } + }) + + progressBar.update(i+1) + } + progressBar.stop() + + // Print contracts that were ignored and why + if (errors.length > 0) { + console.log('Contracts ignored') + console.log(errors) + console.log('\n') + } + + // Validate the list fetched against current YearnList schema1 + const ajv = new Ajv() + const validateList = ajv.compile(schema) + + // Update token list version + // Increment minor version when tokens are added + // Increment patch version when tokens already on the list have details changed + const newErc1155List = { + ...erc1155, + timestamp: (new Date()).toISOString(), + tokens: newYearnList, + version: nextVersion(erc1155.version, newYearnList.length > erc1155.tokens.length ? VersionUpgrade.MINOR : VersionUpgrade.PATCH) + } + + // Validate list against schema + if (!validateList(newErc1155List)) { + console.log("New list has invalid schema: ") + console.log(validateList.errors) + //throw Error("^^^") + } + + // Check whether list changed or not (except version) + if (isEqual(newErc1155List.tokens, erc1155.tokens)) { + console.log("List is already up-to-date") + return + } + + // Store latest erc-1155 tokens list + fs.writeFile( + ERC1155_LIST_PATH, + JSON.stringify(newErc1155List), + { flag: "w+" }, + function (err) { + if (err) throw err + console.log("ERC-1155 Mainnet List Updated") + } + ) +} + +main() + .then(() => { + console.log("Finished") + }) + .catch((error) => { + console.error(error) + }) diff --git a/api/scripts/erc20-mainnet.ts b/api/scripts/erc20-mainnet.ts new file mode 100644 index 0000000..f7af459 --- /dev/null +++ b/api/scripts/erc20-mainnet.ts @@ -0,0 +1,109 @@ +import * as fs from "fs" +const Ajv = require("ajv") +import fetch from "node-fetch" +import * as ethers from 'ethers' +import { TokenList, schema, nextVersion, VersionUpgrade } from "@uniswap/token-lists" +import { getEnvConfig } from "../src/utils" +const isEqual = require("lodash.isequal") +const cliProgress = require('cli-progress'); +const erc20json = require("@openzeppelin/contracts/build/contracts/ERC20.json") +const erc20: TokenList = require("../../index/mainnet/erc20.json") + +// List to fetch +const ERC20_LIST_URL = "https://tokens.coingecko.com/uniswap/all.json" +const ERC20_LIST_PATH = "../index/mainnet/erc20.json" +const config = getEnvConfig() +const provider = new ethers.providers.InfuraProvider('mainnet', config['INFURA_API_KEY']) + +const main = async () => { + // Fetch ERC-20 token list + const newList: TokenList = await (await fetch(ERC20_LIST_URL)).json() + + // Enchance coingecko list with description and link + console.log('Fetch ERC20 tokens information') + const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic); + progressBar.start(newList.tokens.length, 0) + for (let i=0; i < newList.tokens.length; i++) { + let resp = await fetch('https://api.coingecko.com/api/v3/coins/ethereum/contract/' + newList.tokens[i].address) + while (resp.status == 429) { + await new Promise(r => setTimeout(r, 5000)); + resp = await fetch('https://api.coingecko.com/api/v3/coins/ethereum/contract/' + newList.tokens[i].address) + } + if (!resp.ok) { + console.log('Error: ' + resp.statusText) + progressBar.update(i+1) + continue + } + const info = await resp.json() + + let validSymbol + if (!info.symbol || info.symbol === "") { + const erc20contract = new ethers.Contract(newList.tokens[i].address, erc20json.abi, provider) + try { + validSymbol = await erc20contract.symbol() + } catch { + validSymbol = "" + } + } else { + validSymbol = info.symbol + } + + validSymbol = validSymbol.length <= 20 ? validSymbol : validSymbol.slice(0,20) + const validDescription = !info.description.en || info.description.en.length <= 1000 ? info.description.en : info.description.en.slice(0,997) + '...' + + newList.tokens[i] = { + ...newList.tokens[i], + //@ts-ignore + extensions: { + "link": !info.links.homepage[0] || info.links.homepage[0] === "" ? null : info.links.homepage[0], + "description": !validDescription || validDescription === "" ? null : validDescription + } + } + + progressBar.update(i+1) + } + progressBar.stop() + + const newErc20List = { + ...newList, + timestamp: (new Date()).toISOString(), + tokens: newList.tokens, + version: nextVersion(erc20.version, newList.tokens.length > erc20.tokens.length ? VersionUpgrade.MINOR : VersionUpgrade.PATCH) + } + + // Validate the list fetched against current TokenList schema1 + const ajv = new Ajv() + const validateList = ajv.compile(schema) + + // Validate list against schema + if (!validateList(newErc20List)) { + console.log("New list has invalid schema: ") + //console.log(validateList.errors) + //throw Error("^^^") + } + + // Check whether list changed or not + if (isEqual(newErc20List.tokens, erc20.tokens)) { + console.log("List is already up-to-date") + return + } + + // Store latest erc-20 tokens list + fs.writeFile( + ERC20_LIST_PATH, + JSON.stringify(newErc20List), + { flag: "w+" }, + function (err) { + if (err) throw err + console.log("ERC-20 Mainnet List Updated") + } + ) +} + +main() + .then(() => { + console.log("Finished") + }) + .catch((error) => { + console.error(error) + }) diff --git a/api/scripts/erc721-mainnet.ts b/api/scripts/erc721-mainnet.ts new file mode 100644 index 0000000..e0b283e --- /dev/null +++ b/api/scripts/erc721-mainnet.ts @@ -0,0 +1,163 @@ +import * as fs from "fs" +import * as ethers from 'ethers' +import fetch from "node-fetch" +import { nextVersion, schema, VersionUpgrade, YearnList, YearnInfo } from '@0xsequence/collectible-lists' +import { getEnvConfig } from "../src/utils" +const Ajv = require("ajv") +const isEqual = require("lodash.isequal") +const cliProgress = require('cli-progress'); + +// Loading jsons +const erc721json = require("@openzeppelin/contracts/build/contracts/ERC721.json") +const erc721Dump: TokenDump[] = require("../src/data/erc721_dune_dump_2021_01_20.json") +const erc721: YearnList = require("../../index/mainnet/erc721.json") + +// Build ERC-721 list +// 1. Load crv dump from Dune analytics +// 2. Query contract info via opensea API +// 3. Build list according to @0xsequence/collectible-lists + +// Manually tracked ERC-721 +const missingTokens = [ + '0xf5b0a3efb8e8e4c201e2a935f110eaaf3ffecb8d', // Axie infinity + '0x06012c8cf97bead5deae237070f9587f8e7a266d' // Cryptokitties +] + +// List to fetch +const ERC721_LIST_PATH = "../index/mainnet/erc721.json" +const config = getEnvConfig() +const provider = new ethers.providers.InfuraProvider('mainnet', config['INFURA_API_KEY']) + +interface TokenDump { + name: string; + contract_address: string; + n_transfers: number; +} + +// Building list +const main = async () => { + + // Create token information array + let newYearnList: YearnInfo[] = [] + const erc721Contracts: string[] = [...new Set([...missingTokens, ...erc721Dump.map(t => t.contract_address)])] + const errors: any = [] + + // Progress bar init + console.log('Building ERC-721 mainnet list') + const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic); + progressBar.start(erc721Contracts.length, 0) + for (let i= 0; i < erc721Contracts.length; i++) { + let resp + try { + resp = await fetch('https://api.opensea.io/api/v1/asset_contract/' + erc721Contracts[i]) + } catch (err) { + console.log(err) + } + while (resp && resp.status == 429) { + await new Promise(r => setTimeout(r, 5000)); + try { + resp = await fetch('https://api.opensea.io/api/v1/asset_contract/' + erc721Contracts[i]) + } catch (err) { + console.log(err) + } + } + if (!resp || !resp.ok) { + errors.push({ + id: i, + address: erc721Contracts[i], + resp: !resp ? null : resp.status + ' - ' + resp.statusText + }) + progressBar.update(i+1) + continue + } + const info = await resp.json() + + // Query symbol on contract if couldn't find it + let validSymbol + if (!info.symbol || info.symbol === "") { + const erc721contract = new ethers.Contract(erc721Contracts[i], erc721json.abi, provider) + try { + validSymbol = await erc721contract.symbol() + } catch { + validSymbol = "" + } + } else { + validSymbol = info.symbol + } + + // Force some basic validation so they are compatible with schema + validSymbol = validSymbol.length <= 20 ? validSymbol : validSymbol.slice(0,20) + const validName = !info.name || info.name.length <= 64 ? info.name : info.name.slice(0,64) + const validDescription = !info.description || info.description.length <= 1000 ? info.description : info.description.slice(0,997) + '...' + + // Append token to list + newYearnList.push({ + chainId: 1, + address: erc721Contracts[i], + name: validName, + standard: "erc721", + symbol: validSymbol === "" ? null : validSymbol, + logoURI: !info.image_url || info.image_url === "" ? null : info.image_url, + extensions: { + "link": !info.external_link || info.external_link === "" ? null : info.external_link, + "description": !validDescription || validDescription === "" ? null : validDescription + } + }) + + progressBar.update(i+1) + } + progressBar.stop() + + // Print contracts that were ignored and why + if (errors.length > 0) { + console.log('Contracts ignored') + console.log(errors) + console.log('\n') + } + + // Validate the list fetched against current YearnList schema1 + const ajv = new Ajv() + const validateList = ajv.compile(schema) + + // Update token list version + // Increment minor version when tokens are added + // Increment patch version when tokens already on the list have details changed + const newErc721List = { + ...erc721, + timestamp: (new Date()).toISOString(), + tokens: newYearnList, + version: nextVersion(erc721.version, newYearnList.length > erc721.tokens.length ? VersionUpgrade.MINOR : VersionUpgrade.PATCH) + } + + // Validate list against schema + if (!validateList(newErc721List)) { + console.log("New list has invalid schema: ") + console.log(validateList.errors) + //throw Error("^^^") + } + + // Check whether list changed or not (except version) + if (isEqual(newErc721List.tokens, erc721.tokens)) { + console.log("List is already up-to-date") + return + } + + // Store latest erc-721 tokens list + fs.writeFile( + ERC721_LIST_PATH, + JSON.stringify(newErc721List), + { flag: "w+" }, + function (err) { + if (err) throw err + console.log("ERC-721 Mainnet List Updated") + } + ) +} + +main() + .then(() => { + console.log("Finished") + }) + .catch((error) => { + console.error(error) + }) diff --git a/api/scripts/open-graph-scrapper.ts b/api/scripts/open-graph-scrapper.ts new file mode 100644 index 0000000..d5eee55 --- /dev/null +++ b/api/scripts/open-graph-scrapper.ts @@ -0,0 +1,83 @@ +import * as fs from "fs" +import { YearnInfo, YearnList, schema as yearn_schema } from "@yfi/tokenlist"; +import { TokenInfo, TokenList, schema as token_schema } from "@uniswap/token-lists"; +const cliProgress = require('cli-progress'); +const Ajv = require("ajv") +const ogs = require('open-graph-scraper'); + +// Progress bar +const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic); + +const main = async () => { + + // Get all token list files + let folders = fs.readdirSync('../index/').filter(folder => !folder.includes('.')) + let files: string[] = folders.reduce((files: string[], folder:string) => { + const currentFiles: string[] = fs.readdirSync('../index/' + folder) + currentFiles.forEach(file => { + files.push('../index/' + folder + '/' + file) + }) + return files + }, []) + + // Iterate over all lists + for (let i=0; i < files.length; i++) { + const f: string = files[i] + console.log('Images for ' + f) + const list_path = f + + // Load list + let list = f.includes('erc20') ? require('../' + list_path) as TokenList : require('../' + list_path) as YearnList + progressBar.start(list.tokens.length, 0) + for (let j = 0; j < list.tokens.length; j++ ) { + const t: YearnInfo | TokenInfo = list.tokens[j] + //@ts-ignore + if (t.extensions.link) { + try{ + //@ts-ignore + const graph = await ogs({'url': t.extensions.link, 'timeout' : 5000}) + const image = graph.result ? (await graph.result).ogImage : null + //@ts-ignore + list.tokens[j].extensions.ogImage = image ? (image.url ? image.url : null) : null + } catch (e) { + //@ts-ignore + list.tokens[j].extensions.ogImage = null + } + } else { + //@ts-ignore + list.tokens[j].extensions.ogImage = null + } + progressBar.update(j+1) + } + progressBar.stop() + + // Validate list against schema + const ajv = new Ajv() + const validateList = ajv.compile(f.includes('erc20') ? token_schema : yearn_schema) + + if (!validateList(list)) { + console.log("New list has invalid schema: ") + console.log(validateList.errors) + //throw Error("^^^") + } + + fs.writeFile( + list_path, + JSON.stringify(list), + { flag: "w+" }, + function (err) { + if (err) throw err + } + ) + } + +} + +main() + .then(() => { + console.log("Finished") + }) + .catch((error) => { + console.error(error) + }) + diff --git a/api/src/data/erc-1155-dune-dump.csv b/api/src/data/erc-1155-dune-dump.csv new file mode 100644 index 0000000..eca5b8d --- /dev/null +++ b/api/src/data/erc-1155-dune-dump.csv @@ -0,0 +1,561 @@ +name,address,n_transfers +,0xfaafdc07907ff5120a76b34b731b278c38d6043c,1115796 +rarible_v1,0xd07dc4262bcdbf85190c01c996b4c06a461d2430,186022 +,0x2b1870752208935fda32ab6a016c01a27877cf12,150680 +,0xc36cf0cfcb5d905b8b513860db0cfe63f6cf9f5c,102240 +,0xc7e5e9434f4a71e6db978bd65b4d61d3593e5f27,42538 +,0xe4605d46fd0b3f8329d936a8b258d69276cba264,35295 +,0x2af75676692817d85121353f0d6e8e9ae6ad5576,29041 +,0xdb68df0e86bc7c6176e6a2255a5365f51113bce8,16345 +,0xa58b5224e2fd94020cb2837231b2b0e4247301a6,12864 +,0xd193a22224795c43d837a3f3d7394b4d0cc15f60,12760 +,0x93ea6ec350ace7473f7694d43dec2726a515e31a,9155 +,0x7cdc0421469398e0f3aa8890693d86c840ac8931,8270 +rarible_v1,0x44d6e8933f8271abcf253c72f9ed7e0e4c0323b3,8219 +gnosis_sight,0xc59b0e4de5f1248c1140964e0ff287b192407e0c,6026 +,0x6d696d6982d2332f44358d9673c14a33780ea531,6005 +,0xd0e4847359ae76c2786d242e5f45c4f6f1abd752,5411 +,0xe54891774eed9277236bac10d82788aee0aed313,5188 +,0xcb6768a968440187157cfe13b67cac82ef6cc5a4,4978 +,0x067a1eb5e383ed24b66d72aaf80d8d7db3d299a8,4420 +,0xe8bd225aab19cd3cc0e98bd510e4b2fab91247a4,4124 +augur_v2,0x9e4799ff2023819b1272eee430eadf510edf85f0,4032 +rarible_v1,0x9d34c91d03809bc012768d8c608e862c0c985b81,3678 +,0xe3782b8688ad2b0d5ba42842d400f7adf310f88d,3581 +,0xb85070695a7599e3f6a8d46e8bd716d1923769b8,3175 +,0x2e734269c869bda3ea6550f510d2514f2d66de71,2630 +,0x618dc60c5cae3b42a3983f4c870bdf57a8037186,2270 +,0x89ee76cc25fcbf1714ed575faa6a10202b71c26a,2128 +,0x495f947276749ce646f68ac8c248420045cb7b5e,2115 +,0x3b9a790dfc910447d6557001f96b997c1efb01f8,1987 +,0x818737eec8a5350756da40d5ddafda8a84ade107,1840 +,0xd14ce4a3251c648e948337e908030d5a835a7c85,1805 +,0xdf003a97fa6b3a14bd8c2ed4c331a9187e127ad2,1653 +,0x3edf71a31b80ff6a45fdb0858ec54de98df047aa,1649 +rarible_v1,0x8280d56ac92b5bff058d60c99932fdecdcc9441a,1604 +,0x5e30b1d6f920364c847512e2528efdadf72a97a9,1407 +rarible_v1,0xb9341cca0a5f04b804f7b3a996a74726923359a8,1318 +rarible_v1,0x1dd2c47496fbd9d38ac9a884d15d816b062e1f6e,1278 +rarible_v1,0x729cd6226751279030757f61b2cac4798c949fa1,1255 +rarible_v1,0xd8cd8cb7f468ef175bc01c48497d3f7fa27b4653,1249 +,0x5b306b1d0f1c1959777469a3fd42557298e9193a,1227 +,0xeb6f174970ccdd51ed72c9978a50d83123322ff3,1129 +,0x729b3a486407a01b2fdbf4f8f90aa7ff5f20b0f1,1091 +,0x6e91869090a430e6ba6ffa7c585742e56fed2247,1083 +rarible_v1,0x4572f4db13d9ac8e6fa1a0996ccd40f8bd8d99d3,1033 +rarible_v1,0xba503dd9e11eabd91beb4ed87a7e57198eaa9d6b,1030 +rarible_v1,0xe529178bf1ad4f8e01f09037a3c6e96131cff5f3,974 +,0xc805658931f959abc01133aa13ff173769133512,960 +,0x82fdd32e998536609b624e033a16a879d2ebefe5,942 +rarible_v1,0x280afd45d12103fed9effb9e8b045e5aaca0a97b,832 +rarible_v1,0xca008c0bf62c0421b958de86b3d45c86ecae43f1,816 +,0xd997fe65d5f4259840a220e39b1e9a33b645459b,785 +,0x6e57138f4a8a9ba265a5f59896e80d4b13b81b51,745 +rarible_v1,0x492c0d0a51cbf9dc225a485f9c722413615fc570,661 +rarible_v1,0x9897327c3c71600a8f66bce1ed8d5a7af439cd3a,655 +rarible_v1,0x74f1334e210bbd0ae2555ec212019cd77a6a36ff,635 +rarible_v1,0x4d36e460f9fd391f115676d997e5187edcc8404f,569 +,0xb6ab68a44ecc9fb2244aab83eb2f6dba54205ebf,550 +,0x6656b20a5d6ccdc95aea98764285cf9d3e6ff3ce,547 +rarible_v1,0x6110604b8bfec3f3e97231cd1ed36b16faefa9f7,519 +rarible_v1,0x8c521b1179b681c7ef048ec43073a26523d06d6a,510 +rarible_v1,0x819d965d8e0a1d9852e805dec073084bd3c5637f,472 +,0xeef06c49885461f8a897f503e1bb4c3a67412d28,469 +rarible_v1,0x60d92741bf44a4a7c240bbad29e328ff74232268,456 +rarible_v1,0xab843fb5c8aacd611c9b894908977fe949440857,421 +,0x559604845ffc64a05f780ead75249c377b1dae57,417 +rarible_v1,0x64a0b52ccf9a1ee1cdec9975239781343417f0f3,396 +rarible_v1,0xa55f065e3132b6982f335f176db3a28a7344a08b,395 +rarible_v1,0xcc9f683c2fdbed1801bc8d68a663577d4f3259cd,390 +rarible_v1,0x61536dc4232a679adb4e14979768660d345527f8,381 +rarible_v1,0x188a084a62e60d22682c6000821df70aa292bb61,380 +rarible_v1,0x7920f98733b912772f89dbdd95e221bb7e6d058f,373 +,0xa2a295ae156bcd0023783cc2666ccbb0ca218d9f,370 +rarible_v1,0xc54648d5fc76b1ecbb4f76a33dec7b37caf14f7d,368 +rarible_v1,0x5470bad79b5f80149bed3cd2676e3ddcc4730334,352 +rarible_v1,0x7cda0da532827732cf326b957ef894b3d22d1f6a,346 +,0xedb88cb36ba634b01819b5e2b546834416e4a945,342 +rarible_v1,0xaeb831b60dae7bcc40d7896196a92fd442bff424,340 +rarible_v1,0xba5192b7d4c3135d371d2ab7222a7cf360783ee0,335 +rarible_v1,0x49c358afee381d32582700cbdd7e9746dc341973,334 +,0xa9cfc59a96eaf67f8e1b8bc494d3863863c1f8ed,329 +rarible_v1,0xbe15df8bb39b5dd60d28e5cb3a6c3ae24a35318c,324 +rarible_v1,0xb3faf6e8af293bd2f87662e785b06ccd35af03bc,324 +,0xd2d2a84f0eb587f70e181a0c4b252c2c053f80cb,314 +,0x13bab10a88fc5f6c77b87878d71c9f1707d2688a,309 +,0xb701f712b18c2f2d449147a04322ba76b678228e,302 +,0x5ceb7e1bd70690667b19bd2832ca85aef221a79a,300 +rarible_v1,0x4ebeae4abae85024a0e6b8b209ea8e1c6d3adb4a,297 +,0xd88e12893abd65aba3eb2b6789f4da6a4247ecea,291 +rarible_v1,0x4eb3a5f2458bdf2edd180e5af1cb4b71872539e6,291 +,0x3b60426e4ae4ad7ecb082c31826e43f028ca0365,289 +,0x238f2d6787dacb6045d72b0ec6626de0ff7c3107,288 +rarible_v1,0xb5977dd41028cdd82942dc8af59955c50295d817,287 +rarible_v1,0xf4a8523509b7d2b8aa3173c665aef282547417a9,279 +rarible_v1,0xe9e73d9a49a96ea5197d143f2636980212b074db,278 +,0xa75a3f5b447d3d929e5b2ca157cfe7046bc15b37,270 +rarible_v1,0xa889b86239ef747ca9f63e1854b7050bea244db0,267 +,0x1d72d4746647b7fe84e2bcdefd96c119fb9cb0f0,266 +rarible_v1,0x73c989f89964eccfe26353508dca86bda01e031b,253 +,0x7c56f56a51bf3b26c7fa3ab6df28d4d05997bdc3,248 +rarible_v1,0xe28d2d4f778a2061ac2ae1080c76c4bd0a6f2d3a,246 +,0x76ad70096b373dce5c2bf44eb9a9f8ecbb1c0b93,243 +rarible_v1,0x0370905fefa8ce3ac068505c0b4de8db717cdb27,228 +rarible_v1,0xad3018b6c203174f9a84373fcf862300147ba5f6,226 +rarible_v1,0x6e3d4248333f82e94c382b55cc2b72520da48702,224 +rarible_v1,0xcf8d9ff26c13ede55cfd21638fcd03ba1b77c6d9,223 +rarible_v1,0x54312186b0738e0cf9640ebf9d56f5d5a8eb8db1,220 +rarible_v1,0x02cb94aa04236904cabe656d2e70134e7388d342,219 +,0x155cbbca1ab35eab09b66270046317803919e555,214 +rarible_v1,0x3037e5a90942d37d5c57c23eef2d262dd146765a,213 +rarible_v1,0xccd4b56d975620a7bef48fb5b8b00e28be668780,212 +rarible_v1,0xf9a898c2fca5d402e37b65c0a2fd49181c7a2d88,206 +rarible_v1,0x872a2d8d43f4eaed69188a40b373dde945709ad8,206 +rarible_v1,0x929167191ca41a4753eda357bb6e5ad6f15fb89b,205 +rarible_v1,0xeb744cf035429204e4a12438fd499ffd69c0b52c,193 +,0xa257fd7658c9f2d9ccc3edacec1678e8713cdd8a,183 +rarible_v1,0x5c6e2892ed14bd178f0928abce94c1373b8265eb,181 +rarible_v1,0x9103650d8c0fe6600de16d9f17d9b84910d43df5,178 +,0x2998d346c66259e3e73dd7410899948371a28e94,178 +,0x774418646555f414cbaeca6cf3c72a0613d4dab4,176 +rarible_v1,0xcf88cff8f98994343f37bc4ec60448c20f0c917e,175 +rarible_v1,0x6357864c93119eb47a06e0283376d4dd85adf821,171 +rarible_v1,0xd2186d8c1ee0450eee790f96e355b1c497f11d03,170 +rarible_v1,0x41b40ca7b25e9014237690b05e7ed8d3c5edd362,169 +rarible_v1,0x8e893534f8ba4183d6303fe27ffecac34b7b25a1,169 +rarible_v1,0xe39a238d74bdd95a895026fc25ec97fb8a4b1959,169 +rarible_v1,0xf0b6724d259321112be27e1f1c8bdb126d6a8db7,167 +rarible_v1,0x80998e8ff2b2b8f2aa2cac096297c7516726844e,165 +rarible_v1,0xfb026c8edc423fa0aaeba2be812676e2f2d5da18,165 +rarible_v1,0xde44a816b050fa0b880028c4644f339bdeb8542a,159 +rarible_v1,0x9498e391ca49722988fc4da4d0d8c9c987ce8961,155 +rarible_v1,0x529b6787c72a6c56b8baf5c758d95f99d2dfcf0d,153 +,0x1014cf898383d275da1c2ed970d0b2cd5ffef3c2,152 +rarible_v1,0xd7033cc4fd21b49fa2227d50c21638b6a708c994,151 +rarible_v1,0x693030abaf1ac3ad2da1859c99ce97881f8078b5,150 +rarible_v1,0xb610f0e48fbec040fc803fb3a4fb66fa39c525c9,148 +rarible_v1,0xa571995a60c04471baff944ab4c360c7ed1019c1,144 +rarible_v1,0xfe55b756e674e2a5874c9b79e5a59e0d07f271ee,142 +rarible_v1,0xacd42c32ca13b1d5d3292a97363498b20e8768b8,139 +rarible_v1,0x0181fd94dc8e5dd8ac71a74f0b27bdc68e99cc35,138 +rarible_v1,0xcbf43ef91f5eb6ef28e54978baad078ae03417c1,132 +rarible_v1,0xa7a3baa3553ef91377cbef42642809e0caeb52f2,129 +rarible_v1,0x8d67ecc9cdf0c19e170629a6557d210fbb8e6123,128 +,0x33b83b6d3179dcb4094c685c2418cab06372ed89,126 +,0xa983b3d938eedf79783ce88ed227a47b6861a3e9,125 +rarible_v1,0x6da57d21a8601348f6b37ba65262d27865a89078,125 +,0x5fb784ed9d2e5b2eca16cb8f467e03a8b7ea22cd,124 +rarible_v1,0x05fda153b204a9211901e3f3da1befcf88c41b57,123 +rarible_v1,0xdd7c1be33faa2154a92c5f428df12109c14e1df8,122 +rarible_v1,0x5ab81e38b14faa61a699af1bccd1fe5ecab20fae,120 +rarible_v1,0x82a94dfe49fae276710b84aed5842bdb1d77a2fd,120 +rarible_v1,0x4a0e3d2879d8a0e8190c2c5bdb65ece9c02d7297,119 +rarible_v1,0x60e795f7aa87c0def180a9754e60d21325b63ec6,118 +,0x21dd1709ee66fa86ec1901d5c671884787fa1b9e,117 +rarible_v1,0x12448657a56bb12acab2d9a1ec9814264bb2e8fa,116 +rarible_v1,0x2ca30ed7652017fa906054fcd8b46e79b357f482,116 +rarible_v1,0x2b534cdd43d6eb1567be24f3cf7304da3dcd792a,114 +rarible_v1,0x572c16da859a14d7c512e473e6cc3f187201fb71,113 +,0xbbe8efd4e3e59525db73629e07debdfcf2917cb8,110 +rarible_v1,0x424db67b40b15ed85475c3f29dedf601b6ee75b2,109 +rarible_v1,0x2a6e931c1bf12ea508402f1faf86c4c4c08aad18,109 +,0x0f24afc9f3fcdf66132060fe1fa344711859c571,108 +,0xa342f5d851e866e18ff98f351f2c6637f4478db5,107 +,0x1c77afabe1f2f58a105376a90b2f05d37c4be8d6,107 +,0x329c9f63bb7fa8e48f607f4fa49a631ea98f6521,107 +rarible_v1,0xf7d8c07933262b2c9fa75442d452e73e694347ce,104 +rarible_v1,0x08bb16800b9bb5f40462f5ab0d8130af684f6183,104 +rarible_v1,0xaef8bec601fc9f1dc2f9bf0c4d04df4095ce5b7f,103 +rarible_v1,0x77ec5a5ecf2d3942d45cb059fa1c86a262ec855b,102 +,0x1ca3262009b21f944e6b92a2a88d039d06f1acfa,102 +,0xffb8bb08aed493fa0814fe4cca300836a29cda33,101 +rarible_v1,0x4baf72c20f7a345f62d5795ad4fd80bba42a2f50,101 +rarible_v1,0x8f9cb66a4fb2dcff44da04dfdd5fac550a3ddfae,101 +,0xc34bf59caf10df69af433cc4b49e956b4d9c31d2,100 +rarible_v1,0x5bdab992da700c02bdb07572dd026533e97c1dd3,100 +rarible_v1,0x0760abbcade5fe056bbd79a625ca2e18c17dc0e8,99 +rarible_v1,0x3a7407683549691975e0316bd1d70efd05c8ab68,99 +,0xce952f518aed9670fb04b8b8ece2654a94188ecd,99 +,0xab5b634f49b023c9f87d7ab0a591a18ab7b4df5a,98 +rarible_v1,0x9b26616ee0cbd466e072e86a99b4bfa4a3489bf4,98 +rarible_v1,0xd69a3ad926c643798fdd3d056f6ded424e75815c,97 +,0xf8822d5d95feb828d526052adc4b17945e1f0d73,97 +rarible_v1,0x08170dbe6762100d4852f276915afe179da14998,97 +rarible_v1,0xf38f3fdc3e93619971b6e27bc718e5d13fac1653,96 +rarible_v1,0x6825b4469466410b5d90fe90c69127a98ba3fae3,96 +rarible_v1,0x781de80d5d58eba72d622f2076b51ed8bbd9fab0,95 +rarible_v1,0xf732a3d45484a363bccabd8ea4d0557821d75aa9,94 +rarible_v1,0x4377e51e201caccdcc85dbf676973ed0c6a37d63,93 +rarible_v1,0x1496640fc4bdfd7ee6361894f5eefe1f5f297c6d,93 +rarible_v1,0xd862d9e36a8d9887ba330fbd1e3edfe76fe6cb1b,93 +,0xc4681b7f5206603715998dabac4fa87c586ad63d,91 +,0x9f75a77966ade660782f73f822c836c32be6784a,91 +rarible_v1,0x623bfb0cd11b9ad3a67b00a7190ce1915c0f3ecc,90 +rarible_v1,0x53bd7475af798111e100da9f64356a0051f36d7e,89 +rarible_v1,0x53e3169046a25d7d67d163a1d46156f4c1955834,89 +rarible_v1,0xa6e5454d11b626ae5a3a02f45d7e5391af256163,88 +rarible_v1,0xb153e6fd8d4da8782d11df9d6bbf63e08ac2258f,88 +rarible_v1,0x40e974c15210284b966e44e3483cf3b8ed558490,87 +rarible_v1,0x5fd7001dedc58476dc8be47e9e38e09e9e5d73c4,86 +rarible_v1,0x06dab0627e958869748dca582bb6389c538e343d,85 +,0x448cb15b00ced3ac47467e33493d602f34c8e77e,82 +,0x401b3474a0a2fbcb00d516c1ffc01854b9d9dafe,82 +rarible_v1,0xf734bbfbb5d17270a33d47df521958bfdfddff5a,78 +rarible_v1,0x78d0c06a1490d50be7baa804e602bca5f0224213,78 +rarible_v1,0x1eef8e428c8148af2b05c083d5f275eaa05f1268,77 +rarible_v1,0x5351105753bdbc3baa908a0c04f1468535749c3d,76 +rarible_v1,0x6c3eb04c73a99ca31c70eaa529cb474a699242b9,76 +rarible_v1,0x96da7bc30381e7d290c1bb491d8e99bd67c5cb40,76 +rarible_v1,0x73f126ef29bd62038c95179cfcbed2f49f1db8a8,75 +rarible_v1,0xb49c47e18c537635ed285e6688eb8d934ca5522c,73 +rarible_v1,0xcebf2f59cde3b7a7eaf03e6a7ad2dc8a7d6b82a5,73 +rarible_v1,0x77301021b53a871e9f14ad1b6762a619c58014e4,72 +rarible_v1,0xa77cb47bab725915a284d4e4c0aba777921be2a1,72 +rarible_v1,0x7fe96546314f3336fa838020b36ad01ed28be2f2,71 +rarible_v1,0x35857182ed7400c2b0f780e8a929b6e97d362ac9,71 +rarible_v1,0x86c4bb362e90bd859ac60dacd7c7a02954ceda63,67 +rarible_v1,0xe8ae428918b98263f20331396afdfb8a35fd304c,67 +rarible_v1,0x2e81cda0aababa180f2c5d9c259c93ded9069ee3,67 +rarible_v1,0x382a0c85d41481dd37f927360271097b2176b393,66 +rarible_v1,0x2f5dca0ae3306b35cce02311ff70a716f184ddfb,64 +rarible_v1,0xf42e64e7e4c8c5417259759ce70f9e648e2480d7,64 +rarible_v1,0xdf65d02348ba94d58cd9a46112d8bd4b42cbc351,64 +rarible_v1,0x25271fad43f59614c0928f63e0e7e10c2b280e89,64 +rarible_v1,0xc7792a5440d90b2327e87434f064448abee6982c,64 +,0xdaae81c0077e8917a2eb63bb66ef701ff4781bb0,63 +rarible_v1,0x305755ed424889fd8f3a593af716f6693d0dc1d1,62 +rarible_v1,0xa864865b83b0b7c95c3c108f5a3896308979bdbd,61 +rarible_v1,0x46caa8e7907cf10158dc50d609e23548c812c33a,60 +rarible_v1,0xa63b627199214d71234e075e4557083fe033059f,60 +,0x3c53bd8809c220412bcac552ce09a7b2b786dd6a,60 +rarible_v1,0x493c7314a8b63635b09b252d929fedb53075be58,59 +rarible_v1,0xb1b0dbd358dd688d803784b467c2584d3b2f4094,59 +rarible_v1,0xf22862a58ba30b597b7e7e96fccba6e1d48243da,58 +rarible_v1,0x362219d2a3a5491100d673fc899dde507c5d5534,57 +fortube,0xaabc6e639bb9f2dc6e13e1c050a822b116de665b,57 +rarible_v1,0xabebc02177422f4a31cf37986748dfa0852c2a6b,57 +rarible_v1,0xb29cd903a2e960569baa6f74792a12d1885aff13,56 +rarible_v1,0x103c167386dbc3d73c208e3e89ef0c79e7a44f60,56 +rarible_v1,0xee4ba9ffcf1ab4b15bfdd094515914d8710f4881,56 +rarible_v1,0x70e120bedba35694fd97045cc39b2c5b15b0fdff,55 +,0x8432f987b26a6747651f895bc0ae350af1c30489,55 +rarible_v1,0x8041cf97465a919786e4f1dd15c52674daf809bd,55 +rarible_v1,0x7d0960fec1353a79c743d271de6c94316e65c374,54 +rarible_v1,0x41b459f1f57f8b043a5926e9b15446adf4f1110e,54 +rarible_v1,0xcc05b7293f494fe696eff36f93e2957ba445ea06,53 +rarible_v1,0xd9c570f5e932e088c9a3b44a697b969efcf03658,53 +,0x47f42e4d4de7ebf20d582e57ecd88ff64b2d7910,52 +rarible_v1,0x5b52014d73e0c8c0eb0ad3720fc159d054790223,52 +rarible_v1,0x0044840e9b4e6a08cba475cc89ced69ec3381266,52 +rarible_v1,0x083775fdfcf0cb4780efe9710801d082005b55ea,51 +rarible_v1,0xa1b618929713134b6dda32a33e2e36d6a0cf52ef,51 +rarible_v1,0xaf07976696c7a8131a68231d20d12a46af3cb0be,51 +rarible_v1,0x0cf674e50aded42d405e1fd750f3998d8f9a033b,51 +rarible_v1,0xf40dc4cc7040635ae66ed2c54058ccb76dc239bb,50 +rarible_v1,0x744481b9b295fbef4636eff8ffe7d2901246dcfe,50 +rarible_v1,0x17da747050f3beb80607e22a6cb049f81a4cad7d,50 +rarible_v1,0x9f7a104b3107e383eec1428350cad516d3533981,49 +rarible_v1,0x9da8081f9968e6de274082849df797e6137f6fc6,48 +rarible_v1,0xc38c8f281f1e1e217d279a6d58a43d079e28a213,48 +rarible_v1,0xdeccd8da4a6f9b6f4a8da8012c11d2da912edb7b,47 +rarible_v1,0x53be1d870a4877405675da657364f753bcea3e23,47 +rarible_v1,0x7c39a6a2df2c022d1dce4ad3dfe32c9ec9c169bc,47 +rarible_v1,0x36bcede9b5a1328a8912b63389604ff451fa5a8e,47 +rarible_v1,0x1f60b693d98048e932b87b8b668e2f3b726fa7ea,47 +rarible_v1,0x7a06d2a294dd58e8ca84cb7f96919075888c098a,47 +rarible_v1,0x0538f977dae1fd982406e8e0c82120c3bb62656a,47 +rarible_v1,0xdd5df84997150ad121d8e31b631388265250c054,47 +rarible_v1,0xad9ffaa822c0b31682ebb9f66a426cbc7edc5cd2,46 +rarible_v1,0x25adc9c741b273639888081d4b79b2eb33a9785e,46 +rarible_v1,0x08d0de44c61634775c2238197a28ee20b6cd5d5e,46 +rarible_v1,0x2202751e546665c4e6456d1ba27db4f246004063,46 +rarible_v1,0x2dc8784cbec4acbf852309a931b9ab1a08a7fcaa,46 +rarible_v1,0x25993d11d50f8be484abe2e5ab0761f3585c2672,45 +rarible_v1,0x5111c8103776e097c7114282c9e0ff7acba16095,45 +rarible_v1,0xd84b83efb93e6da9ae5b1588ad3e6fd982d164b6,45 +rarible_v1,0x247c1386e2191d4180d524c4b11f62bfbef9838a,45 +rarible_v1,0x9a22e489db7c2e48c284e9b2d32d9c4b8f7108f2,45 +rarible_v1,0xe9586808751e21d88db6d6571b96c0139ed60d13,45 +rarible_v1,0x0294d891ff1632e772fd5bf7ce40042d784eebbc,45 +rarible_v1,0x25df24b41656b71f3e6da94a74ff2c60e9253f5c,44 +rarible_v1,0xec84c1002279ceb21542ac1f604fe56c29912309,44 +rarible_v1,0xb75a7e9115d10aaa6512245f7b3e7c52bced6830,43 +rarible_v1,0x375348350bcee1cf3e4b494eea18236c87915f0b,43 +rarible_v1,0x7f1fa8eccd6d321bdafe759f0583d22985fdbeb7,43 +rarible_v1,0x27372eb44d9a857e05f1582a35642cf9db7a8fea,43 +,0x1baa60dcd772d984a41ec8964b4a7d30d8b354da,43 +rarible_v1,0xe9ef3d6ea53570b5cf730b4c353e8b7ba4ebda73,43 +rarible_v1,0x1c71e2d6d4e01af9dc21e86fd3d7448d4a94bee0,42 +rarible_v1,0x3fb6e1b7e573322b5442980a83d16506ae4af22e,42 +rarible_v1,0xc394e66cb378764cd00a5d01d1cb95f9f0108899,41 +,0x2da71c9db22f9d620fdc07bd42105e852afe05a2,41 +rarible_v1,0xc1a8b3d9dd6d2ef23ac55995ded68381d8ec3118,41 +rarible_v1,0xe1bdb2e8d6b5ff2c05a6d3e9a231599c3e6efc6c,41 +rarible_v1,0xfd102de03ed2310b0eb8cf817070d0e056a28578,41 +rarible_v1,0x938f2110f177077d5b4f34985d58f44aa58b874b,41 +rarible_v1,0x310b4f07579c18347a56fdcff14206615b462cf6,40 +,0xb421523fa4cea10e97c19741a8de7dbfa66e1e4f,40 +rarible_v1,0x4690b1efab2ea1232fb95a89e175abd3331b0f62,40 +,0x33a4cfc925ad40e5bb2b9b2462d7a1a5a5da4476,40 +rarible_v1,0x8f2256063036495f5a362a57757acfcbe72e44b9,40 +rarible_v1,0x492c04144cd934eb918464426fbeb415e41ff7a7,39 +rarible_v1,0x7054777fc7cbfb7965cbb3d5fa3332d0e46b43d1,39 +rarible_v1,0x3423eed97f47deda32eb2056075f92be9055f912,39 +rarible_v1,0xd4f73d00f4d82447dd275d8e786da16b6ff80453,38 +rarible_v1,0xeb41488e98122f011b71dfcf01d21fb94dc90e8e,38 +rarible_v1,0xe8194a3c5f6b9db31f1e2c1521e27d26c800bc67,38 +rarible_v1,0xf24e070c174d9f00a092b60d81e4d2eaba67fe4c,37 +rarible_v1,0x54662a9701682b2dbacf19e1079d2fc08ab431d1,37 +rarible_v1,0xf595a6d4f88f791f190f946739c64591c3c556c0,37 +rarible_v1,0xaeda61b9126feaba872446ca4f03a3d2f46397a5,37 +rarible_v1,0x6ae270426644c8846297a0eabe8f448534420906,36 +rarible_v1,0x9fc634be5dc1ad1ff9ae6dbfb5b58491148f01f1,36 +rarible_v1,0x366c34e262e310426e117dbe2cfeeb820eebd9ca,36 +rarible_v1,0x256f6dbe7ed4f2c953b9ad972e2387f05963d5be,36 +,0xe3af60f1f08e489503d9827210c73e468400c7ec,36 +rarible_v1,0xfd5e15d62353ec6498ab64aee76035d0042d92a2,35 +rarible_v1,0xe57b446d45432a1827210240ef18a21059bfe945,35 +rarible_v1,0xbdf2ef43438e5c1150403248f0074481cef44705,35 +rarible_v1,0x7f16f5aa4bf4577402e035e518055be7c3c9bc28,35 +rarible_v1,0x317795bd78bdbe513f0369e0b2ed70693483c59d,34 +rarible_v1,0x12df506b9daaf874945022a463e6fdb3245f780c,34 +rarible_v1,0x43405d800766dc6ecafcc4d4d86d1b1463f556f0,34 +rarible_v1,0x505df5ace201098b1d198aad048cb61c9f0246d4,34 +rarible_v1,0x7a82a20e7669a9313662ba1c9d9cf0502be8ab9d,34 +rarible_v1,0x8af1b93e4a90a81ca99fee5a5b05ccf2cf8074ee,34 +rarible_v1,0x670646a8373886d8c8e0d525bd15f92c6f765fa5,34 +rarible_v1,0x5f9c9f69e7aa5bc487e85c4c3c3568a9b0b3ba82,34 +rarible_v1,0x18943a963a2ad070cdc1b811aa7228ace469adb7,34 +rarible_v1,0x2d6aff6ffffb60f5fdaf5a0ef4c1096644270d37,33 +rarible_v1,0xa7eb9a6a3a86b2fda7199a2e151aaef84cd1dfda,33 +rarible_v1,0x4a384886cf53d824a2160646637cafa356473f49,33 +rarible_v1,0xe1f254f01488ca0574ce88f90c2ebd283c407671,33 +rarible_v1,0xb88c3fdc48d3b148aba66a732a83ef8aa71ae861,33 +rarible_v1,0x0e92164df9bc46855c9476384abc4e8fd2c47edc,33 +rarible_v1,0x1651bd62a6ae8c43bdba7c3c6c344c3079936071,32 +rarible_v1,0x9d57fc71118d050805b97612c69aa8a798631f6c,32 +rarible_v1,0x32aa0094c6766c04e0e8bb4d14033d5904862545,32 +rarible_v1,0xc12ec45cf9de5c58fe40e09f4f2db8df6120945b,31 +rarible_v1,0x65604fda8ba3f4808fd7b74abc5eb04172449076,31 +rarible_v1,0xe8fc1aca7da14afb85182c113120896ac7c98a8a,31 +rarible_v1,0xed012991f72bc58e134b5496834064284306499b,30 +,0xe6822e8b4d91b85f9ca00cca79bf92bab14bc221,30 +rarible_v1,0xc6571274ca9d6e3658aadb69e2f1de799288818f,30 +rarible_v1,0xbf58b8b9b4df73efc79db071d6e8bdb4c088be2d,30 +rarible_v1,0x0ecc90aa2af935f1d1a29feb70b9cc4aa04cbb36,30 +rarible_v1,0x3b05f81864c943590c3364e5fe06632dc531cc1c,30 +rarible_v1,0x982fc7432cf41e374e7a7622e5e7b6773e1310d2,29 +rarible_v1,0x5c3daa7a35d7def65bfd9e99120d5fa07f63f555,29 +rarible_v1,0x9be29d790c7e2c3ff6acb608f6a3799b2650314d,29 +rarible_v1,0x435c8739d1fd6d2a29ab1dcc667a2e4a360e3ed4,29 +rarible_v1,0xd574f92169810afc82292117a257467c520c1210,29 +rarible_v1,0xe817c927f34b3c8db9322fe03599bf2707a4491a,29 +rarible_v1,0xa71936fdfacd9dfdee1817bce953df97d1fdf554,29 +rarible_v1,0xcbbb170c74fed5fe27245a01c61cd219a90bad18,28 +rarible_v1,0x5d6813f9c9a28c118c93598e1c10b526a8b5a1a4,28 +rarible_v1,0x40fe4c60673709a16a0f47c42ba54b466418a64a,28 +rarible_v1,0xb1432546890d88a0c510ca73475e0c3b8933bf22,28 +rarible_v1,0xeb868136fce503964b738208a677eacff5f7fccb,27 +rarible_v1,0xaa0d5b39a4664d8d700b7e12c164ed43b951554f,27 +rarible_v1,0xa1c4b6889821f50aee6c93f7eccd8c5ba1115641,26 +rarible_v1,0x72262848c8b95532fcfffe6e3e519b228ae5845b,26 +rarible_v1,0x66eb6684c7beda94e4c244e025344a20834aa64d,26 +rarible_v1,0x04955703317e1126f725abe1ffac2dce2b696cd5,26 +rarible_v1,0x6b0c1d93bfb1dbe420ae5342d81a62323f5c811f,26 +rarible_v1,0xf30e2be919161cf7d7b975a7da101eae5da902ce,26 +rarible_v1,0x3ef99698e0dc42ea9557ee393cf1b78fc36f092a,26 +rarible_v1,0x201a2bd580377905b393388ba288815128078ac0,26 +,0xd6fbc588964e5a3d5caa56b69205ad1adbe9f438,26 +,0x8233a82fa5515708d1ca9ece90821d213ec52e9d,25 +rarible_v1,0x0f4b33fdc45581fa98839c8cef6ed79437eb6363,25 +rarible_v1,0xa4aac2a1b7cc86a09c474797bf9c1b776fe0a285,25 +rarible_v1,0xf4680c917a873e2dd6ead72f9f433e74eb9c623c,25 +rarible_v1,0x1cfd39c883b4d487bf88fdfa9931b347361df81e,25 +rarible_v1,0xf9565d501c9b115345c8c24746edaa3d6cd835f6,25 +rarible_v1,0x24e473d902952d840a24771cd2d16789f8a79567,25 +rarible_v1,0x8613767f51108b198508670f622883cb3e0f1bd0,25 +rarible_v1,0x83b4b74a9fc65bf26aa4f68044b51cff0fc23cc4,25 +rarible_v1,0xbd4021c0cc0be79fc54a9ed1943fbbd3f96a9ec0,24 +rarible_v1,0x38b1e61d0897ba13ac101bec5cc75bff0b96fe6a,24 +rarible_v1,0xfd5683f0ca3e76b963ee997831f2c8b29fa7f81b,24 +rarible_v1,0xfbdbeed1ba112e8d73bd15981947fc71cf8695e4,24 +rarible_v1,0xaddbf4405a5711201e3ff3074ab272697d4e4a97,24 +rarible_v1,0x9e1866dbf872013a5cbfdf1a32ab6157ec929623,24 +rarible_v1,0xf46d0487bc0ffa2629d144f49c5e9cb5b76618d9,24 +rarible_v1,0x61bd6b10c7bf3e548f8659d016079e099510a4dc,24 +rarible_v1,0x407eb99611d27ae4bdc3997b58d81cc1e64c7d0b,24 +rarible_v1,0xb1a4eecf844421e112634bf8231b69531a0698d9,24 +rarible_v1,0x229d2a2cecae97a45fa3a9cbfd0297c22d3270b3,23 +rarible_v1,0x41a87ece33164cb55b12664db42942cd95e02932,23 +rarible_v1,0x21cf0f26eb9cf547c8f26f636eecc4d3106641cc,23 +rarible_v1,0x7b4d47feb4d6cef88302d7272da337b050f48a8f,22 +rarible_v1,0x8da8806fc0c459fce4625789374972693befc03f,22 +rarible_v1,0xba35430ffd0313d83f87317e9024293128eb98d7,22 +,0x16cb6125928d7908c620d732e16b0d1ab4c5ab96,22 +rarible_v1,0x9ec867eeaf55fc8be53dd0ce552262ddbdf70905,22 +rarible_v1,0xdc62d6d2d91dd1835a579d88f9a7e0f994b05975,22 +rarible_v1,0x3d1cc955be8957d5de8e51f464a7ca663345e757,21 +,0x4c9f1b0313699ce67264bac7326a7a02ebee747a,21 +rarible_v1,0x1f8672dca8ae79e8cd6ce0a73b9193af7ca5bf30,21 +rarible_v1,0x43919d96f02c744a8dbe72220097c28dae14675b,21 +rarible_v1,0x2a851d22281092bca9ce0573ff7c64f2840c3693,21 +rarible_v1,0x31865d76403511000d44c803017f71f6d4bc02e6,21 +rarible_v1,0xa5b7432b2c611fa2818cdbe01b73b03521f8d308,20 +rarible_v1,0x8f86390963f1faba99468a8857e65e48ef2832ec,20 +rarible_v1,0x3045474044a37d59d117200b7577af6532b80043,20 +rarible_v1,0x9d664ec54b3d1549045cd57d67998687a0dd371a,20 +rarible_v1,0x7a974b387eae135323d91309830f8119be4f9b46,20 +rarible_v1,0x7418102225e25393d0db0a4aaaa458b3f72529b1,20 +rarible_v1,0x7398e673087783ce8500161feaeedfc42d802f52,20 +rarible_v1,0x253e3e7d86f73e104ada29b682589c5164bc3ea5,20 +rarible_v1,0xc0983df152a9ed7a99be899075ca9bafe5d4b15e,20 +rarible_v1,0xcbc1deb56ccd3775fc5cf0bae51ed1ba55847517,20 +rarible_v1,0x1ccf0477a5562b7e14862d13b7daa389577a2be2,20 +,0x108ff39bc1b725870031208f44488fefc03f1f57,20 +,0x5f5c08f823aeeddc8a4e53e4f144e7a8f50d3b37,20 +,0xf64c866b5b4f25c1d17e3a7cea883c367f460f91,20 +rarible_v1,0x8be225fa78a276f930d1c14f37acd2eac8b8d9b0,19 +rarible_v1,0x05d2d781d8ca5a755924867815c1cd86085f8325,19 +rarible_v1,0xbae8fc4c95aba2c05395d4a00501d71490133467,19 +rarible_v1,0x539b53fa542675c766e49993df4841c26accf24e,19 +rarible_v1,0x0cb9c97ef3d902531004b948f2c19f1367c25a9e,19 +rarible_v1,0x25ef34f3ac14ecf0104af2ce4382ac1b82c31dc0,19 +rarible_v1,0x75b8fd69f6509289cf717dd1faaf5eb88e7dae35,19 +rarible_v1,0x8794fca913b27162ff3270abe7328ebbec9e20c2,19 +rarible_v1,0x96f69bde4d284a7bf48172cdc317521bbe3cb857,19 +,0xa9f4bfe3fc4376478ed3cc7380c08d1646b1f0b8,19 +rarible_v1,0xf62769fcf5707b52e63574f2aacf939ef9ffb1ff,19 +rarible_v1,0x5bd6890db9035caa9a4853a9c4cf49fd76801908,18 +rarible_v1,0x5bbef39747422e21991f5c8dc7e8b0c938c9970a,18 +rarible_v1,0xc602b474881c053662d72d8884af910cd6b43378,18 +,0x0248c5e6354053295637013e7c3efd901a4a185c,18 +rarible_v1,0x588c5aee9bac620b4435435903c01223a9989abc,18 +rarible_v1,0x82ba4cfeeba1d68f6cd3ce360808c6fbc416dd36,18 +rarible_v1,0x54b4cdb28659261208de782c20a98bd48b2d8e18,18 +,0x32a26380960fee5316fd1041117d5bcdb6ddd9be,18 +,0xe3896d07d7c3e7e3a1d209f5f527cb69f0ba9cdf,18 +,0xe05bbc3d1a9a7b72c130866fcab367013d1cd1d5,18 +,0x66d5a6f02432f916cc9fd307ba9cd97d7346374f,18 +,0x56e3cea51769d9a21f68c85bd78145245dd74b73,17 +rarible_v1,0x37b0fc7af6dfc0741b0ed562005da15301f6c571,17 +rarible_v1,0x0332b704f1a3c2ca064c183cd6a2548e7fdd56ee,17 +rarible_v1,0xb3be30948d4389994955a23df3f0ac1773f83084,17 +rarible_v1,0xabec196c7c3e074b5552e04364e304e39a2723c2,17 +rarible_v1,0x85b5bd374c11d8f6e0864a3927028c33bb39646e,17 +rarible_v1,0xab3c9dfd9f9ef544fb452864e0ea1d6a15be9078,17 +rarible_v1,0x87110d26c5fa701bf86d0db77513d999da90214a,17 +rarible_v1,0x63d659f73eea5c6a7c6d5b66a1f9f7b2c44d0beb,17 +rarible_v1,0x05cadc7eb68e2c06761b18b40ca927976b63464a,17 +rarible_v1,0xee48879229ee219cb99f5868449a6d03147417a9,17 +rarible_v1,0x007810366aed6ed62af3240def95879c0f20b8c4,17 +rarible_v1,0x300533115a586fa305fe6ca4a32fb22c22abbd92,16 +rarible_v1,0xe65c9866c456c94b49c58286f1686d7e554d1899,16 +rarible_v1,0x45503d36827227f0d110fb3a17b4e1bbdf5c44d8,16 +rarible_v1,0x0c5c8c539cd635a5353e6bf51357069c34085ca4,16 +rarible_v1,0x52b68a835aca64262845ccad4e18d58e10f0f521,16 +rarible_v1,0x88535eb0be6fe825c87ef8fb7c3cf66a7088779e,16 +,0x276a5b4f0140adf36be94908955bf75095bf9118,16 +rarible_v1,0x82dfc4dab7831b9721cf856e304133bcc467e0bd,16 +rarible_v1,0x65061eafee6e4d49c40497a7dcd86865541f6960,15 +rarible_v1,0x5b50931305b4ae11c08876431f0baeb51d8a6daa,15 +rarible_v1,0x8791d2cb2c67f9efe76e14ac022bd44b975ea70e,15 +,0x73242c671cf402152e3880af208071dadab0bc27,15 +rarible_v1,0x3a5ca702eafa23ec69b62dcfefa5d6e0ecfc858e,15 +rarible_v1,0x690c231a00a2bbe474d06d47372f7a2cdf2afa99,15 +rarible_v1,0x4e302fc5aac305b6976c1d837f3114bf76e7b8a5,15 +rarible_v1,0x94ac35c4225d63f01e1cdd31f6c566f3b9398787,15 +rarible_v1,0x7b9ce8df72c549c5dd2b5f6c74812dbb0c6646ef,15 +rarible_v1,0xe598d0251215f28847926db240839bfa62482643,15 +,0xdff5eb0a5e675a1fbde83fa3609320fefea88412,14 +rarible_v1,0x27576e6ff9e49bf02d5d5863c21b6f837b300bf7,14 +rarible_v1,0x6881530167e2bce09a0e635944df399ff96e34fd,14 +rarible_v1,0xac41821338fefb209473244064478b445ba482f1,14 +rarible_v1,0xd0cf6a6ca65bc95587ddb9e7fb899b62b241af84,14 +rarible_v1,0xd6f25b513fb79324cb1e4ed246a3a2a4473e13e0,14 +rarible_v1,0xa2f24396dcccf90e1dd29af5182e2c74bffd0f7f,14 +,0xff15b5f18889704cf4a05026858e299596c4793b,14 +rarible_v1,0x5ea117b28a78357166ee2e6ad1acfe6e9b0de3d6,14 +rarible_v1,0x5b2ea62fbe3944ffd92dc3a13d2eeab8d097e756,14 +rarible_v1,0xe9440414667c13c4427bd166de49fcb851108150,14 +rarible_v1,0xec46038fe707b49e084663165a36cd78fe7cd3d7,14 +rarible_v1,0xf7b472b14431abdbb0768113b0924d96bf39443b,14 +rarible_v1,0x2923c1d122720add241e21015a886d7a8fae3df2,13 +,0xcc35c66efa69d81df3af0e395bdd28065cf08840,13 +,0x3430930c101b73a4c23be0eaae78a71e5b31f2e4,13 +rarible_v1,0xb3baefe0d167cba4af84ea6e6fa97ab589bd08cf,13 +rarible_v1,0xea7fbf4a1b6c16b9a06846a91d819e44064bbaf3,13 +,0x2e7f7d6866691142cfac9e366be1075fed502a84,13 +rarible_v1,0xfa4af54f1178fd08dc3c2a4725b5f2dc81751f63,13 +,0xa57a733c001b8cf1b0ced98f66ce54c35eae532e,13 +,0x13d569e3b6ed96977f98aad5cc6dff2c88dd7cf9,13 +rarible_v1,0x5ece08d3e1997b989e4d40fa80498a86cc59cc2b,13 +rarible_v1,0x786622ec2f3fa0760e6e8059c9363286c06e2512,13 +rarible_v1,0xf73c3710a8316b1d2b42cc7e59f1f5c2396a546f,13 +rarible_v1,0x440f36dba0cc626a71af47a83d85846246ba3fb2,13 +rarible_v1,0x4813c06eb9919db20634c431565d6b88f35501ff,12 +rarible_v1,0x16f3fbcfad592305adb1c843c854a6d8454bc7be,12 +rarible_v1,0xa5af9ab3300ad1a3b05ec66561ce958722512559,12 +rarible_v1,0x2776364a653333cd5b154744c58504066c377a61,12 +,0x2986b5fa6df9ff4b33a87bca703d37a80bb5cd6a,12 +rarible_v1,0x97d05867820fcd85c83c89abfcff82662e169aaa,12 +rarible_v1,0x7d46020d056a5936711659d10393dc87e3b0828f,12 +rarible_v1,0x89b1d42af08bccb0e8168dbf92f800573ae84c73,12 +,0x81b0c8cb62daf41f3b6629c38914dbe898a9fbe7,12 +rarible_v1,0x3ec057be60db3a2d416e14a6e3ab7f37ffccd7b8,12 +rarible_v1,0x001d1cd0bcf2e9021056c6fe4428ce15d977cfe0,12 +rarible_v1,0x4568c3a9d7622d8eec6da47029325d54222b7028,12 +rarible_v1,0x12216e4ec364f8cf0e7f2d1288cd79cb13e6bd61,12 +rarible_v1,0x9f4d0fdfc755fe4dd1885418be2f63981d6c0858,12 +rarible_v1,0x9b3c6e9636e0c220a2ef9517d1e7ad0bb34d7d2f,12 +rarible_v1,0xc35a0aef49069abffbad543cb81fda3412f80034,12 +,0xb71db24658dc5765cc7921cbae43fd603576e64e,11 +rarible_v1,0x0dd3c271da45923ea536c5d91307d9cc8a0bcd74,11 +rarible_v1,0xa3d22470913460d2988e940093213e6a152fba27,11 +rarible_v1,0x0aee9395897083c75d233e98e239f677bf24d3bd,11 +,0x41c9e36a8797778159436971542fda652e49d1fe,11 +rarible_v1,0x97214d748eb8de4fbdac4cf832adf4be2ab5af2c,11 +,0x2b63711673fc94415f1dd004f54b733108c41996,11 +rarible_v1,0xcf2849ce6b2bca9cc7dddc814e63cacb2668dab8,11 +rarible_v1,0x91167b54411cca20319fda9f4a3fb8df0070aea3,11 +rarible_v1,0xecea8678c216456d0d94be4e90412159da2450cb,11 +rarible_v1,0x62a5c783187f5843fc9eccbe6ded13eed2e0d232,11 +,0x458647912e9e67a65da1452c533bf0db6ff8a0b2,11 +rarible_v1,0x459f71d12783eaca6769963b336f17dab0e4cdf7,11 +rarible_v1,0x652a0dacaf996343902dfb7519174e8d2ce011d9,11 +rarible_v1,0x215a35201631bc4f5df68412732d80e6f854a16b,11 +rarible_v1,0x279d3498903941e4f720587cc79ff641bd4bd452,11 +rarible_v1,0x3ac131f616014bde3e0bc9fa67d05deb76af0d88,11 +,0x6aa21406f574db8127ca73e362856b1870cdd4b1,11 +rarible_v1,0xbcd0814bbb12c1f03e8283a2c53fe92a041af397,11 +rarible_v1,0xbc3d26747e9833cbd05146552efaae631505b8d7,11 +rarible_v1,0x7ab29e7c8de4130aad850a6dbeee5c385d48d05a,11 +rarible_v1,0xb6c7ab64d73838a5e2328f5f4082c363fa86ce1f,10 +rarible_v1,0x82025dfc00c4a2999705d13a21a8d04d10b719bb,10 +rarible_v1,0x8e64763007daebb19fb87a2f562a873854017990,10 +,0x33561199ea127da52b6addc14b9473f1fceadd90,10 +rarible_v1,0x45c51edd1853efb04e23d9479687fe76cf4a8a37,10 +rarible_v1,0x6968f1421b7a122d431009635e32925271016fb0,10 +rarible_v1,0x291c9486d3f664d78e72ebb6cbf20428f9e5a907,10 +rarible_v1,0x8b8474a376bade9fd22e51bea2e3a94d157af090,10 +rarible_v1,0x6d2dd496ff152508b5bd0406766ed00cb748889f,10 +rarible_v1,0xb0b3252692d49b440a031844a9f6455df50217c1,10 +rarible_v1,0xe04a45c357b0248816015d7154320a6ca53c4d6e,10 +rarible_v1,0xe017441eef4f2d386aac6d2cbe12ed8a8f50855c,10 +,0x44e491adb468dfa6ab4545a030665e81ee85a77c,10 +rarible_v1,0x1727f353db253b0af54720878c4901e62d9d1b89,10 +rarible_v1,0x3921ecb96223d11f4b49e7f8515d34f91aa49150,10 +rarible_v1,0x499b373f23209b2d1e3e9b169337e4430d28f78a,10 +rarible_v1,0x33faa63735e3aad89caec564119e77aad88b9ddf,10 +rarible_v1,0x73a019678d58cf96ed0a2939f9d89b423d311145,10 +rarible_v1,0x070bb24e5f7a62ae04ef4146eec8c0ffa2870ac6,10 +rarible_v1,0x3cc9ffdf72f8e1022b1e5b38501ac4eebb5783c3,10 +rarible_v1,0xa7e637b4cfdaa10ccec8c15cfeb314dded1ab658,10 +,0x302c8b304122e6060cc3562208f1a5c605b38d0e,10 +rarible_v1,0x58c6b57e075ba2b7cbfc4bd01d189b563c4cb71f,10 +rarible_v1,0xd63311471512046f9ba9fcb0fbeb77108c3bd230,10 +rarible_v1,0xedd83b243cea6d32e3592f843cbbeecb4b3455a7,10 +rarible_v1,0xede5b971ff0edfd99422344329ce86ec0231073f,10 +rarible_v1,0x6392a36541392a0b90f020f46d7a688768b64ff7,10 +rarible_v1,0x7f45d967874fbcfc5a25ae940fa852c347e144ce,10 +rarible_v1,0x3a35f8a49521fd10af3fed7d2375837ca652b548,10 +rarible_v1,0x9f60d4a4b5dd2376ce9c3293b42257f3a12e82e4,10 diff --git a/api/src/data/erc1155_dune_dump_2021_01_25.json b/api/src/data/erc1155_dune_dump_2021_01_25.json new file mode 100644 index 0000000..70ee61f --- /dev/null +++ b/api/src/data/erc1155_dune_dump_2021_01_25.json @@ -0,0 +1,2802 @@ +[ + { + "name": "", + "address": "0xfaafdc07907ff5120a76b34b731b278c38d6043c", + "n_transfers": 1115796 + }, + { + "name": "rarible_v1", + "address": "0xd07dc4262bcdbf85190c01c996b4c06a461d2430", + "n_transfers": 186022 + }, + { + "name": "", + "address": "0x2b1870752208935fda32ab6a016c01a27877cf12", + "n_transfers": 150680 + }, + { + "name": "", + "address": "0xc36cf0cfcb5d905b8b513860db0cfe63f6cf9f5c", + "n_transfers": 102240 + }, + { + "name": "", + "address": "0xc7e5e9434f4a71e6db978bd65b4d61d3593e5f27", + "n_transfers": 42538 + }, + { + "name": "", + "address": "0xe4605d46fd0b3f8329d936a8b258d69276cba264", + "n_transfers": 35295 + }, + { + "name": "", + "address": "0x2af75676692817d85121353f0d6e8e9ae6ad5576", + "n_transfers": 29041 + }, + { + "name": "", + "address": "0xdb68df0e86bc7c6176e6a2255a5365f51113bce8", + "n_transfers": 16345 + }, + { + "name": "", + "address": "0xa58b5224e2fd94020cb2837231b2b0e4247301a6", + "n_transfers": 12864 + }, + { + "name": "", + "address": "0xd193a22224795c43d837a3f3d7394b4d0cc15f60", + "n_transfers": 12760 + }, + { + "name": "", + "address": "0x93ea6ec350ace7473f7694d43dec2726a515e31a", + "n_transfers": 9155 + }, + { + "name": "", + "address": "0x7cdc0421469398e0f3aa8890693d86c840ac8931", + "n_transfers": 8270 + }, + { + "name": "rarible_v1", + "address": "0x44d6e8933f8271abcf253c72f9ed7e0e4c0323b3", + "n_transfers": 8219 + }, + { + "name": "gnosis_sight", + "address": "0xc59b0e4de5f1248c1140964e0ff287b192407e0c", + "n_transfers": 6026 + }, + { + "name": "", + "address": "0x6d696d6982d2332f44358d9673c14a33780ea531", + "n_transfers": 6005 + }, + { + "name": "", + "address": "0xd0e4847359ae76c2786d242e5f45c4f6f1abd752", + "n_transfers": 5411 + }, + { + "name": "", + "address": "0xe54891774eed9277236bac10d82788aee0aed313", + "n_transfers": 5188 + }, + { + "name": "", + "address": "0xcb6768a968440187157cfe13b67cac82ef6cc5a4", + "n_transfers": 4978 + }, + { + "name": "", + "address": "0x067a1eb5e383ed24b66d72aaf80d8d7db3d299a8", + "n_transfers": 4420 + }, + { + "name": "", + "address": "0xe8bd225aab19cd3cc0e98bd510e4b2fab91247a4", + "n_transfers": 4124 + }, + { + "name": "augur_v2", + "address": "0x9e4799ff2023819b1272eee430eadf510edf85f0", + "n_transfers": 4032 + }, + { + "name": "rarible_v1", + "address": "0x9d34c91d03809bc012768d8c608e862c0c985b81", + "n_transfers": 3678 + }, + { + "name": "", + "address": "0xe3782b8688ad2b0d5ba42842d400f7adf310f88d", + "n_transfers": 3581 + }, + { + "name": "", + "address": "0xb85070695a7599e3f6a8d46e8bd716d1923769b8", + "n_transfers": 3175 + }, + { + "name": "", + "address": "0x2e734269c869bda3ea6550f510d2514f2d66de71", + "n_transfers": 2630 + }, + { + "name": "", + "address": "0x618dc60c5cae3b42a3983f4c870bdf57a8037186", + "n_transfers": 2270 + }, + { + "name": "", + "address": "0x89ee76cc25fcbf1714ed575faa6a10202b71c26a", + "n_transfers": 2128 + }, + { + "name": "", + "address": "0x495f947276749ce646f68ac8c248420045cb7b5e", + "n_transfers": 2115 + }, + { + "name": "", + "address": "0x3b9a790dfc910447d6557001f96b997c1efb01f8", + "n_transfers": 1987 + }, + { + "name": "", + "address": "0x818737eec8a5350756da40d5ddafda8a84ade107", + "n_transfers": 1840 + }, + { + "name": "", + "address": "0xd14ce4a3251c648e948337e908030d5a835a7c85", + "n_transfers": 1805 + }, + { + "name": "", + "address": "0xdf003a97fa6b3a14bd8c2ed4c331a9187e127ad2", + "n_transfers": 1653 + }, + { + "name": "", + "address": "0x3edf71a31b80ff6a45fdb0858ec54de98df047aa", + "n_transfers": 1649 + }, + { + "name": "rarible_v1", + "address": "0x8280d56ac92b5bff058d60c99932fdecdcc9441a", + "n_transfers": 1604 + }, + { + "name": "", + "address": "0x5e30b1d6f920364c847512e2528efdadf72a97a9", + "n_transfers": 1407 + }, + { + "name": "rarible_v1", + "address": "0xb9341cca0a5f04b804f7b3a996a74726923359a8", + "n_transfers": 1318 + }, + { + "name": "rarible_v1", + "address": "0x1dd2c47496fbd9d38ac9a884d15d816b062e1f6e", + "n_transfers": 1278 + }, + { + "name": "rarible_v1", + "address": "0x729cd6226751279030757f61b2cac4798c949fa1", + "n_transfers": 1255 + }, + { + "name": "rarible_v1", + "address": "0xd8cd8cb7f468ef175bc01c48497d3f7fa27b4653", + "n_transfers": 1249 + }, + { + "name": "", + "address": "0x5b306b1d0f1c1959777469a3fd42557298e9193a", + "n_transfers": 1227 + }, + { + "name": "", + "address": "0xeb6f174970ccdd51ed72c9978a50d83123322ff3", + "n_transfers": 1129 + }, + { + "name": "", + "address": "0x729b3a486407a01b2fdbf4f8f90aa7ff5f20b0f1", + "n_transfers": 1091 + }, + { + "name": "", + "address": "0x6e91869090a430e6ba6ffa7c585742e56fed2247", + "n_transfers": 1083 + }, + { + "name": "rarible_v1", + "address": "0x4572f4db13d9ac8e6fa1a0996ccd40f8bd8d99d3", + "n_transfers": 1033 + }, + { + "name": "rarible_v1", + "address": "0xba503dd9e11eabd91beb4ed87a7e57198eaa9d6b", + "n_transfers": 1030 + }, + { + "name": "rarible_v1", + "address": "0xe529178bf1ad4f8e01f09037a3c6e96131cff5f3", + "n_transfers": 974 + }, + { + "name": "", + "address": "0xc805658931f959abc01133aa13ff173769133512", + "n_transfers": 960 + }, + { + "name": "", + "address": "0x82fdd32e998536609b624e033a16a879d2ebefe5", + "n_transfers": 942 + }, + { + "name": "rarible_v1", + "address": "0x280afd45d12103fed9effb9e8b045e5aaca0a97b", + "n_transfers": 832 + }, + { + "name": "rarible_v1", + "address": "0xca008c0bf62c0421b958de86b3d45c86ecae43f1", + "n_transfers": 816 + }, + { + "name": "", + "address": "0xd997fe65d5f4259840a220e39b1e9a33b645459b", + "n_transfers": 785 + }, + { + "name": "", + "address": "0x6e57138f4a8a9ba265a5f59896e80d4b13b81b51", + "n_transfers": 745 + }, + { + "name": "rarible_v1", + "address": "0x492c0d0a51cbf9dc225a485f9c722413615fc570", + "n_transfers": 661 + }, + { + "name": "rarible_v1", + "address": "0x9897327c3c71600a8f66bce1ed8d5a7af439cd3a", + "n_transfers": 655 + }, + { + "name": "rarible_v1", + "address": "0x74f1334e210bbd0ae2555ec212019cd77a6a36ff", + "n_transfers": 635 + }, + { + "name": "rarible_v1", + "address": "0x4d36e460f9fd391f115676d997e5187edcc8404f", + "n_transfers": 569 + }, + { + "name": "", + "address": "0xb6ab68a44ecc9fb2244aab83eb2f6dba54205ebf", + "n_transfers": 550 + }, + { + "name": "", + "address": "0x6656b20a5d6ccdc95aea98764285cf9d3e6ff3ce", + "n_transfers": 547 + }, + { + "name": "rarible_v1", + "address": "0x6110604b8bfec3f3e97231cd1ed36b16faefa9f7", + "n_transfers": 519 + }, + { + "name": "rarible_v1", + "address": "0x8c521b1179b681c7ef048ec43073a26523d06d6a", + "n_transfers": 510 + }, + { + "name": "rarible_v1", + "address": "0x819d965d8e0a1d9852e805dec073084bd3c5637f", + "n_transfers": 472 + }, + { + "name": "", + "address": "0xeef06c49885461f8a897f503e1bb4c3a67412d28", + "n_transfers": 469 + }, + { + "name": "rarible_v1", + "address": "0x60d92741bf44a4a7c240bbad29e328ff74232268", + "n_transfers": 456 + }, + { + "name": "rarible_v1", + "address": "0xab843fb5c8aacd611c9b894908977fe949440857", + "n_transfers": 421 + }, + { + "name": "", + "address": "0x559604845ffc64a05f780ead75249c377b1dae57", + "n_transfers": 417 + }, + { + "name": "rarible_v1", + "address": "0x64a0b52ccf9a1ee1cdec9975239781343417f0f3", + "n_transfers": 396 + }, + { + "name": "rarible_v1", + "address": "0xa55f065e3132b6982f335f176db3a28a7344a08b", + "n_transfers": 395 + }, + { + "name": "rarible_v1", + "address": "0xcc9f683c2fdbed1801bc8d68a663577d4f3259cd", + "n_transfers": 390 + }, + { + "name": "rarible_v1", + "address": "0x61536dc4232a679adb4e14979768660d345527f8", + "n_transfers": 381 + }, + { + "name": "rarible_v1", + "address": "0x188a084a62e60d22682c6000821df70aa292bb61", + "n_transfers": 380 + }, + { + "name": "rarible_v1", + "address": "0x7920f98733b912772f89dbdd95e221bb7e6d058f", + "n_transfers": 373 + }, + { + "name": "", + "address": "0xa2a295ae156bcd0023783cc2666ccbb0ca218d9f", + "n_transfers": 370 + }, + { + "name": "rarible_v1", + "address": "0xc54648d5fc76b1ecbb4f76a33dec7b37caf14f7d", + "n_transfers": 368 + }, + { + "name": "rarible_v1", + "address": "0x5470bad79b5f80149bed3cd2676e3ddcc4730334", + "n_transfers": 352 + }, + { + "name": "rarible_v1", + "address": "0x7cda0da532827732cf326b957ef894b3d22d1f6a", + "n_transfers": 346 + }, + { + "name": "", + "address": "0xedb88cb36ba634b01819b5e2b546834416e4a945", + "n_transfers": 342 + }, + { + "name": "rarible_v1", + "address": "0xaeb831b60dae7bcc40d7896196a92fd442bff424", + "n_transfers": 340 + }, + { + "name": "rarible_v1", + "address": "0xba5192b7d4c3135d371d2ab7222a7cf360783ee0", + "n_transfers": 335 + }, + { + "name": "rarible_v1", + "address": "0x49c358afee381d32582700cbdd7e9746dc341973", + "n_transfers": 334 + }, + { + "name": "", + "address": "0xa9cfc59a96eaf67f8e1b8bc494d3863863c1f8ed", + "n_transfers": 329 + }, + { + "name": "rarible_v1", + "address": "0xbe15df8bb39b5dd60d28e5cb3a6c3ae24a35318c", + "n_transfers": 324 + }, + { + "name": "rarible_v1", + "address": "0xb3faf6e8af293bd2f87662e785b06ccd35af03bc", + "n_transfers": 324 + }, + { + "name": "", + "address": "0xd2d2a84f0eb587f70e181a0c4b252c2c053f80cb", + "n_transfers": 314 + }, + { + "name": "", + "address": "0x13bab10a88fc5f6c77b87878d71c9f1707d2688a", + "n_transfers": 309 + }, + { + "name": "", + "address": "0xb701f712b18c2f2d449147a04322ba76b678228e", + "n_transfers": 302 + }, + { + "name": "", + "address": "0x5ceb7e1bd70690667b19bd2832ca85aef221a79a", + "n_transfers": 300 + }, + { + "name": "rarible_v1", + "address": "0x4ebeae4abae85024a0e6b8b209ea8e1c6d3adb4a", + "n_transfers": 297 + }, + { + "name": "", + "address": "0xd88e12893abd65aba3eb2b6789f4da6a4247ecea", + "n_transfers": 291 + }, + { + "name": "rarible_v1", + "address": "0x4eb3a5f2458bdf2edd180e5af1cb4b71872539e6", + "n_transfers": 291 + }, + { + "name": "", + "address": "0x3b60426e4ae4ad7ecb082c31826e43f028ca0365", + "n_transfers": 289 + }, + { + "name": "", + "address": "0x238f2d6787dacb6045d72b0ec6626de0ff7c3107", + "n_transfers": 288 + }, + { + "name": "rarible_v1", + "address": "0xb5977dd41028cdd82942dc8af59955c50295d817", + "n_transfers": 287 + }, + { + "name": "rarible_v1", + "address": "0xf4a8523509b7d2b8aa3173c665aef282547417a9", + "n_transfers": 279 + }, + { + "name": "rarible_v1", + "address": "0xe9e73d9a49a96ea5197d143f2636980212b074db", + "n_transfers": 278 + }, + { + "name": "", + "address": "0xa75a3f5b447d3d929e5b2ca157cfe7046bc15b37", + "n_transfers": 270 + }, + { + "name": "rarible_v1", + "address": "0xa889b86239ef747ca9f63e1854b7050bea244db0", + "n_transfers": 267 + }, + { + "name": "", + "address": "0x1d72d4746647b7fe84e2bcdefd96c119fb9cb0f0", + "n_transfers": 266 + }, + { + "name": "rarible_v1", + "address": "0x73c989f89964eccfe26353508dca86bda01e031b", + "n_transfers": 253 + }, + { + "name": "", + "address": "0x7c56f56a51bf3b26c7fa3ab6df28d4d05997bdc3", + "n_transfers": 248 + }, + { + "name": "rarible_v1", + "address": "0xe28d2d4f778a2061ac2ae1080c76c4bd0a6f2d3a", + "n_transfers": 246 + }, + { + "name": "", + "address": "0x76ad70096b373dce5c2bf44eb9a9f8ecbb1c0b93", + "n_transfers": 243 + }, + { + "name": "rarible_v1", + "address": "0x0370905fefa8ce3ac068505c0b4de8db717cdb27", + "n_transfers": 228 + }, + { + "name": "rarible_v1", + "address": "0xad3018b6c203174f9a84373fcf862300147ba5f6", + "n_transfers": 226 + }, + { + "name": "rarible_v1", + "address": "0x6e3d4248333f82e94c382b55cc2b72520da48702", + "n_transfers": 224 + }, + { + "name": "rarible_v1", + "address": "0xcf8d9ff26c13ede55cfd21638fcd03ba1b77c6d9", + "n_transfers": 223 + }, + { + "name": "rarible_v1", + "address": "0x54312186b0738e0cf9640ebf9d56f5d5a8eb8db1", + "n_transfers": 220 + }, + { + "name": "rarible_v1", + "address": "0x02cb94aa04236904cabe656d2e70134e7388d342", + "n_transfers": 219 + }, + { + "name": "", + "address": "0x155cbbca1ab35eab09b66270046317803919e555", + "n_transfers": 214 + }, + { + "name": "rarible_v1", + "address": "0x3037e5a90942d37d5c57c23eef2d262dd146765a", + "n_transfers": 213 + }, + { + "name": "rarible_v1", + "address": "0xccd4b56d975620a7bef48fb5b8b00e28be668780", + "n_transfers": 212 + }, + { + "name": "rarible_v1", + "address": "0xf9a898c2fca5d402e37b65c0a2fd49181c7a2d88", + "n_transfers": 206 + }, + { + "name": "rarible_v1", + "address": "0x872a2d8d43f4eaed69188a40b373dde945709ad8", + "n_transfers": 206 + }, + { + "name": "rarible_v1", + "address": "0x929167191ca41a4753eda357bb6e5ad6f15fb89b", + "n_transfers": 205 + }, + { + "name": "rarible_v1", + "address": "0xeb744cf035429204e4a12438fd499ffd69c0b52c", + "n_transfers": 193 + }, + { + "name": "", + "address": "0xa257fd7658c9f2d9ccc3edacec1678e8713cdd8a", + "n_transfers": 183 + }, + { + "name": "rarible_v1", + "address": "0x5c6e2892ed14bd178f0928abce94c1373b8265eb", + "n_transfers": 181 + }, + { + "name": "rarible_v1", + "address": "0x9103650d8c0fe6600de16d9f17d9b84910d43df5", + "n_transfers": 178 + }, + { + "name": "", + "address": "0x2998d346c66259e3e73dd7410899948371a28e94", + "n_transfers": 178 + }, + { + "name": "", + "address": "0x774418646555f414cbaeca6cf3c72a0613d4dab4", + "n_transfers": 176 + }, + { + "name": "rarible_v1", + "address": "0xcf88cff8f98994343f37bc4ec60448c20f0c917e", + "n_transfers": 175 + }, + { + "name": "rarible_v1", + "address": "0x6357864c93119eb47a06e0283376d4dd85adf821", + "n_transfers": 171 + }, + { + "name": "rarible_v1", + "address": "0xd2186d8c1ee0450eee790f96e355b1c497f11d03", + "n_transfers": 170 + }, + { + "name": "rarible_v1", + "address": "0x41b40ca7b25e9014237690b05e7ed8d3c5edd362", + "n_transfers": 169 + }, + { + "name": "rarible_v1", + "address": "0x8e893534f8ba4183d6303fe27ffecac34b7b25a1", + "n_transfers": 169 + }, + { + "name": "rarible_v1", + "address": "0xe39a238d74bdd95a895026fc25ec97fb8a4b1959", + "n_transfers": 169 + }, + { + "name": "rarible_v1", + "address": "0xf0b6724d259321112be27e1f1c8bdb126d6a8db7", + "n_transfers": 167 + }, + { + "name": "rarible_v1", + "address": "0x80998e8ff2b2b8f2aa2cac096297c7516726844e", + "n_transfers": 165 + }, + { + "name": "rarible_v1", + "address": "0xfb026c8edc423fa0aaeba2be812676e2f2d5da18", + "n_transfers": 165 + }, + { + "name": "rarible_v1", + "address": "0xde44a816b050fa0b880028c4644f339bdeb8542a", + "n_transfers": 159 + }, + { + "name": "rarible_v1", + "address": "0x9498e391ca49722988fc4da4d0d8c9c987ce8961", + "n_transfers": 155 + }, + { + "name": "rarible_v1", + "address": "0x529b6787c72a6c56b8baf5c758d95f99d2dfcf0d", + "n_transfers": 153 + }, + { + "name": "", + "address": "0x1014cf898383d275da1c2ed970d0b2cd5ffef3c2", + "n_transfers": 152 + }, + { + "name": "rarible_v1", + "address": "0xd7033cc4fd21b49fa2227d50c21638b6a708c994", + "n_transfers": 151 + }, + { + "name": "rarible_v1", + "address": "0x693030abaf1ac3ad2da1859c99ce97881f8078b5", + "n_transfers": 150 + }, + { + "name": "rarible_v1", + "address": "0xb610f0e48fbec040fc803fb3a4fb66fa39c525c9", + "n_transfers": 148 + }, + { + "name": "rarible_v1", + "address": "0xa571995a60c04471baff944ab4c360c7ed1019c1", + "n_transfers": 144 + }, + { + "name": "rarible_v1", + "address": "0xfe55b756e674e2a5874c9b79e5a59e0d07f271ee", + "n_transfers": 142 + }, + { + "name": "rarible_v1", + "address": "0xacd42c32ca13b1d5d3292a97363498b20e8768b8", + "n_transfers": 139 + }, + { + "name": "rarible_v1", + "address": "0x0181fd94dc8e5dd8ac71a74f0b27bdc68e99cc35", + "n_transfers": 138 + }, + { + "name": "rarible_v1", + "address": "0xcbf43ef91f5eb6ef28e54978baad078ae03417c1", + "n_transfers": 132 + }, + { + "name": "rarible_v1", + "address": "0xa7a3baa3553ef91377cbef42642809e0caeb52f2", + "n_transfers": 129 + }, + { + "name": "rarible_v1", + "address": "0x8d67ecc9cdf0c19e170629a6557d210fbb8e6123", + "n_transfers": 128 + }, + { + "name": "", + "address": "0x33b83b6d3179dcb4094c685c2418cab06372ed89", + "n_transfers": 126 + }, + { + "name": "", + "address": "0xa983b3d938eedf79783ce88ed227a47b6861a3e9", + "n_transfers": 125 + }, + { + "name": "rarible_v1", + "address": "0x6da57d21a8601348f6b37ba65262d27865a89078", + "n_transfers": 125 + }, + { + "name": "", + "address": "0x5fb784ed9d2e5b2eca16cb8f467e03a8b7ea22cd", + "n_transfers": 124 + }, + { + "name": "rarible_v1", + "address": "0x05fda153b204a9211901e3f3da1befcf88c41b57", + "n_transfers": 123 + }, + { + "name": "rarible_v1", + "address": "0xdd7c1be33faa2154a92c5f428df12109c14e1df8", + "n_transfers": 122 + }, + { + "name": "rarible_v1", + "address": "0x5ab81e38b14faa61a699af1bccd1fe5ecab20fae", + "n_transfers": 120 + }, + { + "name": "rarible_v1", + "address": "0x82a94dfe49fae276710b84aed5842bdb1d77a2fd", + "n_transfers": 120 + }, + { + "name": "rarible_v1", + "address": "0x4a0e3d2879d8a0e8190c2c5bdb65ece9c02d7297", + "n_transfers": 119 + }, + { + "name": "rarible_v1", + "address": "0x60e795f7aa87c0def180a9754e60d21325b63ec6", + "n_transfers": 118 + }, + { + "name": "", + "address": "0x21dd1709ee66fa86ec1901d5c671884787fa1b9e", + "n_transfers": 117 + }, + { + "name": "rarible_v1", + "address": "0x12448657a56bb12acab2d9a1ec9814264bb2e8fa", + "n_transfers": 116 + }, + { + "name": "rarible_v1", + "address": "0x2ca30ed7652017fa906054fcd8b46e79b357f482", + "n_transfers": 116 + }, + { + "name": "rarible_v1", + "address": "0x2b534cdd43d6eb1567be24f3cf7304da3dcd792a", + "n_transfers": 114 + }, + { + "name": "rarible_v1", + "address": "0x572c16da859a14d7c512e473e6cc3f187201fb71", + "n_transfers": 113 + }, + { + "name": "", + "address": "0xbbe8efd4e3e59525db73629e07debdfcf2917cb8", + "n_transfers": 110 + }, + { + "name": "rarible_v1", + "address": "0x424db67b40b15ed85475c3f29dedf601b6ee75b2", + "n_transfers": 109 + }, + { + "name": "rarible_v1", + "address": "0x2a6e931c1bf12ea508402f1faf86c4c4c08aad18", + "n_transfers": 109 + }, + { + "name": "", + "address": "0x0f24afc9f3fcdf66132060fe1fa344711859c571", + "n_transfers": 108 + }, + { + "name": "", + "address": "0xa342f5d851e866e18ff98f351f2c6637f4478db5", + "n_transfers": 107 + }, + { + "name": "", + "address": "0x1c77afabe1f2f58a105376a90b2f05d37c4be8d6", + "n_transfers": 107 + }, + { + "name": "", + "address": "0x329c9f63bb7fa8e48f607f4fa49a631ea98f6521", + "n_transfers": 107 + }, + { + "name": "rarible_v1", + "address": "0xf7d8c07933262b2c9fa75442d452e73e694347ce", + "n_transfers": 104 + }, + { + "name": "rarible_v1", + "address": "0x08bb16800b9bb5f40462f5ab0d8130af684f6183", + "n_transfers": 104 + }, + { + "name": "rarible_v1", + "address": "0xaef8bec601fc9f1dc2f9bf0c4d04df4095ce5b7f", + "n_transfers": 103 + }, + { + "name": "rarible_v1", + "address": "0x77ec5a5ecf2d3942d45cb059fa1c86a262ec855b", + "n_transfers": 102 + }, + { + "name": "", + "address": "0x1ca3262009b21f944e6b92a2a88d039d06f1acfa", + "n_transfers": 102 + }, + { + "name": "", + "address": "0xffb8bb08aed493fa0814fe4cca300836a29cda33", + "n_transfers": 101 + }, + { + "name": "rarible_v1", + "address": "0x4baf72c20f7a345f62d5795ad4fd80bba42a2f50", + "n_transfers": 101 + }, + { + "name": "rarible_v1", + "address": "0x8f9cb66a4fb2dcff44da04dfdd5fac550a3ddfae", + "n_transfers": 101 + }, + { + "name": "", + "address": "0xc34bf59caf10df69af433cc4b49e956b4d9c31d2", + "n_transfers": 100 + }, + { + "name": "rarible_v1", + "address": "0x5bdab992da700c02bdb07572dd026533e97c1dd3", + "n_transfers": 100 + }, + { + "name": "rarible_v1", + "address": "0x0760abbcade5fe056bbd79a625ca2e18c17dc0e8", + "n_transfers": 99 + }, + { + "name": "rarible_v1", + "address": "0x3a7407683549691975e0316bd1d70efd05c8ab68", + "n_transfers": 99 + }, + { + "name": "", + "address": "0xce952f518aed9670fb04b8b8ece2654a94188ecd", + "n_transfers": 99 + }, + { + "name": "", + "address": "0xab5b634f49b023c9f87d7ab0a591a18ab7b4df5a", + "n_transfers": 98 + }, + { + "name": "rarible_v1", + "address": "0x9b26616ee0cbd466e072e86a99b4bfa4a3489bf4", + "n_transfers": 98 + }, + { + "name": "rarible_v1", + "address": "0xd69a3ad926c643798fdd3d056f6ded424e75815c", + "n_transfers": 97 + }, + { + "name": "", + "address": "0xf8822d5d95feb828d526052adc4b17945e1f0d73", + "n_transfers": 97 + }, + { + "name": "rarible_v1", + "address": "0x08170dbe6762100d4852f276915afe179da14998", + "n_transfers": 97 + }, + { + "name": "rarible_v1", + "address": "0xf38f3fdc3e93619971b6e27bc718e5d13fac1653", + "n_transfers": 96 + }, + { + "name": "rarible_v1", + "address": "0x6825b4469466410b5d90fe90c69127a98ba3fae3", + "n_transfers": 96 + }, + { + "name": "rarible_v1", + "address": "0x781de80d5d58eba72d622f2076b51ed8bbd9fab0", + "n_transfers": 95 + }, + { + "name": "rarible_v1", + "address": "0xf732a3d45484a363bccabd8ea4d0557821d75aa9", + "n_transfers": 94 + }, + { + "name": "rarible_v1", + "address": "0x4377e51e201caccdcc85dbf676973ed0c6a37d63", + "n_transfers": 93 + }, + { + "name": "rarible_v1", + "address": "0x1496640fc4bdfd7ee6361894f5eefe1f5f297c6d", + "n_transfers": 93 + }, + { + "name": "rarible_v1", + "address": "0xd862d9e36a8d9887ba330fbd1e3edfe76fe6cb1b", + "n_transfers": 93 + }, + { + "name": "", + "address": "0xc4681b7f5206603715998dabac4fa87c586ad63d", + "n_transfers": 91 + }, + { + "name": "", + "address": "0x9f75a77966ade660782f73f822c836c32be6784a", + "n_transfers": 91 + }, + { + "name": "rarible_v1", + "address": "0x623bfb0cd11b9ad3a67b00a7190ce1915c0f3ecc", + "n_transfers": 90 + }, + { + "name": "rarible_v1", + "address": "0x53bd7475af798111e100da9f64356a0051f36d7e", + "n_transfers": 89 + }, + { + "name": "rarible_v1", + "address": "0x53e3169046a25d7d67d163a1d46156f4c1955834", + "n_transfers": 89 + }, + { + "name": "rarible_v1", + "address": "0xa6e5454d11b626ae5a3a02f45d7e5391af256163", + "n_transfers": 88 + }, + { + "name": "rarible_v1", + "address": "0xb153e6fd8d4da8782d11df9d6bbf63e08ac2258f", + "n_transfers": 88 + }, + { + "name": "rarible_v1", + "address": "0x40e974c15210284b966e44e3483cf3b8ed558490", + "n_transfers": 87 + }, + { + "name": "rarible_v1", + "address": "0x5fd7001dedc58476dc8be47e9e38e09e9e5d73c4", + "n_transfers": 86 + }, + { + "name": "rarible_v1", + "address": "0x06dab0627e958869748dca582bb6389c538e343d", + "n_transfers": 85 + }, + { + "name": "", + "address": "0x448cb15b00ced3ac47467e33493d602f34c8e77e", + "n_transfers": 82 + }, + { + "name": "", + "address": "0x401b3474a0a2fbcb00d516c1ffc01854b9d9dafe", + "n_transfers": 82 + }, + { + "name": "rarible_v1", + "address": "0xf734bbfbb5d17270a33d47df521958bfdfddff5a", + "n_transfers": 78 + }, + { + "name": "rarible_v1", + "address": "0x78d0c06a1490d50be7baa804e602bca5f0224213", + "n_transfers": 78 + }, + { + "name": "rarible_v1", + "address": "0x1eef8e428c8148af2b05c083d5f275eaa05f1268", + "n_transfers": 77 + }, + { + "name": "rarible_v1", + "address": "0x5351105753bdbc3baa908a0c04f1468535749c3d", + "n_transfers": 76 + }, + { + "name": "rarible_v1", + "address": "0x6c3eb04c73a99ca31c70eaa529cb474a699242b9", + "n_transfers": 76 + }, + { + "name": "rarible_v1", + "address": "0x96da7bc30381e7d290c1bb491d8e99bd67c5cb40", + "n_transfers": 76 + }, + { + "name": "rarible_v1", + "address": "0x73f126ef29bd62038c95179cfcbed2f49f1db8a8", + "n_transfers": 75 + }, + { + "name": "rarible_v1", + "address": "0xb49c47e18c537635ed285e6688eb8d934ca5522c", + "n_transfers": 73 + }, + { + "name": "rarible_v1", + "address": "0xcebf2f59cde3b7a7eaf03e6a7ad2dc8a7d6b82a5", + "n_transfers": 73 + }, + { + "name": "rarible_v1", + "address": "0x77301021b53a871e9f14ad1b6762a619c58014e4", + "n_transfers": 72 + }, + { + "name": "rarible_v1", + "address": "0xa77cb47bab725915a284d4e4c0aba777921be2a1", + "n_transfers": 72 + }, + { + "name": "rarible_v1", + "address": "0x7fe96546314f3336fa838020b36ad01ed28be2f2", + "n_transfers": 71 + }, + { + "name": "rarible_v1", + "address": "0x35857182ed7400c2b0f780e8a929b6e97d362ac9", + "n_transfers": 71 + }, + { + "name": "rarible_v1", + "address": "0x86c4bb362e90bd859ac60dacd7c7a02954ceda63", + "n_transfers": 67 + }, + { + "name": "rarible_v1", + "address": "0xe8ae428918b98263f20331396afdfb8a35fd304c", + "n_transfers": 67 + }, + { + "name": "rarible_v1", + "address": "0x2e81cda0aababa180f2c5d9c259c93ded9069ee3", + "n_transfers": 67 + }, + { + "name": "rarible_v1", + "address": "0x382a0c85d41481dd37f927360271097b2176b393", + "n_transfers": 66 + }, + { + "name": "rarible_v1", + "address": "0x2f5dca0ae3306b35cce02311ff70a716f184ddfb", + "n_transfers": 64 + }, + { + "name": "rarible_v1", + "address": "0xf42e64e7e4c8c5417259759ce70f9e648e2480d7", + "n_transfers": 64 + }, + { + "name": "rarible_v1", + "address": "0xdf65d02348ba94d58cd9a46112d8bd4b42cbc351", + "n_transfers": 64 + }, + { + "name": "rarible_v1", + "address": "0x25271fad43f59614c0928f63e0e7e10c2b280e89", + "n_transfers": 64 + }, + { + "name": "rarible_v1", + "address": "0xc7792a5440d90b2327e87434f064448abee6982c", + "n_transfers": 64 + }, + { + "name": "", + "address": "0xdaae81c0077e8917a2eb63bb66ef701ff4781bb0", + "n_transfers": 63 + }, + { + "name": "rarible_v1", + "address": "0x305755ed424889fd8f3a593af716f6693d0dc1d1", + "n_transfers": 62 + }, + { + "name": "rarible_v1", + "address": "0xa864865b83b0b7c95c3c108f5a3896308979bdbd", + "n_transfers": 61 + }, + { + "name": "rarible_v1", + "address": "0x46caa8e7907cf10158dc50d609e23548c812c33a", + "n_transfers": 60 + }, + { + "name": "rarible_v1", + "address": "0xa63b627199214d71234e075e4557083fe033059f", + "n_transfers": 60 + }, + { + "name": "", + "address": "0x3c53bd8809c220412bcac552ce09a7b2b786dd6a", + "n_transfers": 60 + }, + { + "name": "rarible_v1", + "address": "0x493c7314a8b63635b09b252d929fedb53075be58", + "n_transfers": 59 + }, + { + "name": "rarible_v1", + "address": "0xb1b0dbd358dd688d803784b467c2584d3b2f4094", + "n_transfers": 59 + }, + { + "name": "rarible_v1", + "address": "0xf22862a58ba30b597b7e7e96fccba6e1d48243da", + "n_transfers": 58 + }, + { + "name": "rarible_v1", + "address": "0x362219d2a3a5491100d673fc899dde507c5d5534", + "n_transfers": 57 + }, + { + "name": "fortube", + "address": "0xaabc6e639bb9f2dc6e13e1c050a822b116de665b", + "n_transfers": 57 + }, + { + "name": "rarible_v1", + "address": "0xabebc02177422f4a31cf37986748dfa0852c2a6b", + "n_transfers": 57 + }, + { + "name": "rarible_v1", + "address": "0xb29cd903a2e960569baa6f74792a12d1885aff13", + "n_transfers": 56 + }, + { + "name": "rarible_v1", + "address": "0x103c167386dbc3d73c208e3e89ef0c79e7a44f60", + "n_transfers": 56 + }, + { + "name": "rarible_v1", + "address": "0xee4ba9ffcf1ab4b15bfdd094515914d8710f4881", + "n_transfers": 56 + }, + { + "name": "rarible_v1", + "address": "0x70e120bedba35694fd97045cc39b2c5b15b0fdff", + "n_transfers": 55 + }, + { + "name": "", + "address": "0x8432f987b26a6747651f895bc0ae350af1c30489", + "n_transfers": 55 + }, + { + "name": "rarible_v1", + "address": "0x8041cf97465a919786e4f1dd15c52674daf809bd", + "n_transfers": 55 + }, + { + "name": "rarible_v1", + "address": "0x7d0960fec1353a79c743d271de6c94316e65c374", + "n_transfers": 54 + }, + { + "name": "rarible_v1", + "address": "0x41b459f1f57f8b043a5926e9b15446adf4f1110e", + "n_transfers": 54 + }, + { + "name": "rarible_v1", + "address": "0xcc05b7293f494fe696eff36f93e2957ba445ea06", + "n_transfers": 53 + }, + { + "name": "rarible_v1", + "address": "0xd9c570f5e932e088c9a3b44a697b969efcf03658", + "n_transfers": 53 + }, + { + "name": "", + "address": "0x47f42e4d4de7ebf20d582e57ecd88ff64b2d7910", + "n_transfers": 52 + }, + { + "name": "rarible_v1", + "address": "0x5b52014d73e0c8c0eb0ad3720fc159d054790223", + "n_transfers": 52 + }, + { + "name": "rarible_v1", + "address": "0x0044840e9b4e6a08cba475cc89ced69ec3381266", + "n_transfers": 52 + }, + { + "name": "rarible_v1", + "address": "0x083775fdfcf0cb4780efe9710801d082005b55ea", + "n_transfers": 51 + }, + { + "name": "rarible_v1", + "address": "0xa1b618929713134b6dda32a33e2e36d6a0cf52ef", + "n_transfers": 51 + }, + { + "name": "rarible_v1", + "address": "0xaf07976696c7a8131a68231d20d12a46af3cb0be", + "n_transfers": 51 + }, + { + "name": "rarible_v1", + "address": "0x0cf674e50aded42d405e1fd750f3998d8f9a033b", + "n_transfers": 51 + }, + { + "name": "rarible_v1", + "address": "0xf40dc4cc7040635ae66ed2c54058ccb76dc239bb", + "n_transfers": 50 + }, + { + "name": "rarible_v1", + "address": "0x744481b9b295fbef4636eff8ffe7d2901246dcfe", + "n_transfers": 50 + }, + { + "name": "rarible_v1", + "address": "0x17da747050f3beb80607e22a6cb049f81a4cad7d", + "n_transfers": 50 + }, + { + "name": "rarible_v1", + "address": "0x9f7a104b3107e383eec1428350cad516d3533981", + "n_transfers": 49 + }, + { + "name": "rarible_v1", + "address": "0x9da8081f9968e6de274082849df797e6137f6fc6", + "n_transfers": 48 + }, + { + "name": "rarible_v1", + "address": "0xc38c8f281f1e1e217d279a6d58a43d079e28a213", + "n_transfers": 48 + }, + { + "name": "rarible_v1", + "address": "0xdeccd8da4a6f9b6f4a8da8012c11d2da912edb7b", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0x53be1d870a4877405675da657364f753bcea3e23", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0x7c39a6a2df2c022d1dce4ad3dfe32c9ec9c169bc", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0x36bcede9b5a1328a8912b63389604ff451fa5a8e", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0x1f60b693d98048e932b87b8b668e2f3b726fa7ea", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0x7a06d2a294dd58e8ca84cb7f96919075888c098a", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0x0538f977dae1fd982406e8e0c82120c3bb62656a", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0xdd5df84997150ad121d8e31b631388265250c054", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "address": "0xad9ffaa822c0b31682ebb9f66a426cbc7edc5cd2", + "n_transfers": 46 + }, + { + "name": "rarible_v1", + "address": "0x25adc9c741b273639888081d4b79b2eb33a9785e", + "n_transfers": 46 + }, + { + "name": "rarible_v1", + "address": "0x08d0de44c61634775c2238197a28ee20b6cd5d5e", + "n_transfers": 46 + }, + { + "name": "rarible_v1", + "address": "0x2202751e546665c4e6456d1ba27db4f246004063", + "n_transfers": 46 + }, + { + "name": "rarible_v1", + "address": "0x2dc8784cbec4acbf852309a931b9ab1a08a7fcaa", + "n_transfers": 46 + }, + { + "name": "rarible_v1", + "address": "0x25993d11d50f8be484abe2e5ab0761f3585c2672", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0x5111c8103776e097c7114282c9e0ff7acba16095", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0xd84b83efb93e6da9ae5b1588ad3e6fd982d164b6", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0x247c1386e2191d4180d524c4b11f62bfbef9838a", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0x9a22e489db7c2e48c284e9b2d32d9c4b8f7108f2", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0xe9586808751e21d88db6d6571b96c0139ed60d13", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0x0294d891ff1632e772fd5bf7ce40042d784eebbc", + "n_transfers": 45 + }, + { + "name": "rarible_v1", + "address": "0x25df24b41656b71f3e6da94a74ff2c60e9253f5c", + "n_transfers": 44 + }, + { + "name": "rarible_v1", + "address": "0xec84c1002279ceb21542ac1f604fe56c29912309", + "n_transfers": 44 + }, + { + "name": "rarible_v1", + "address": "0xb75a7e9115d10aaa6512245f7b3e7c52bced6830", + "n_transfers": 43 + }, + { + "name": "rarible_v1", + "address": "0x375348350bcee1cf3e4b494eea18236c87915f0b", + "n_transfers": 43 + }, + { + "name": "rarible_v1", + "address": "0x7f1fa8eccd6d321bdafe759f0583d22985fdbeb7", + "n_transfers": 43 + }, + { + "name": "rarible_v1", + "address": "0x27372eb44d9a857e05f1582a35642cf9db7a8fea", + "n_transfers": 43 + }, + { + "name": "", + "address": "0x1baa60dcd772d984a41ec8964b4a7d30d8b354da", + "n_transfers": 43 + }, + { + "name": "rarible_v1", + "address": "0xe9ef3d6ea53570b5cf730b4c353e8b7ba4ebda73", + "n_transfers": 43 + }, + { + "name": "rarible_v1", + "address": "0x1c71e2d6d4e01af9dc21e86fd3d7448d4a94bee0", + "n_transfers": 42 + }, + { + "name": "rarible_v1", + "address": "0x3fb6e1b7e573322b5442980a83d16506ae4af22e", + "n_transfers": 42 + }, + { + "name": "rarible_v1", + "address": "0xc394e66cb378764cd00a5d01d1cb95f9f0108899", + "n_transfers": 41 + }, + { + "name": "", + "address": "0x2da71c9db22f9d620fdc07bd42105e852afe05a2", + "n_transfers": 41 + }, + { + "name": "rarible_v1", + "address": "0xc1a8b3d9dd6d2ef23ac55995ded68381d8ec3118", + "n_transfers": 41 + }, + { + "name": "rarible_v1", + "address": "0xe1bdb2e8d6b5ff2c05a6d3e9a231599c3e6efc6c", + "n_transfers": 41 + }, + { + "name": "rarible_v1", + "address": "0xfd102de03ed2310b0eb8cf817070d0e056a28578", + "n_transfers": 41 + }, + { + "name": "rarible_v1", + "address": "0x938f2110f177077d5b4f34985d58f44aa58b874b", + "n_transfers": 41 + }, + { + "name": "rarible_v1", + "address": "0x310b4f07579c18347a56fdcff14206615b462cf6", + "n_transfers": 40 + }, + { + "name": "", + "address": "0xb421523fa4cea10e97c19741a8de7dbfa66e1e4f", + "n_transfers": 40 + }, + { + "name": "rarible_v1", + "address": "0x4690b1efab2ea1232fb95a89e175abd3331b0f62", + "n_transfers": 40 + }, + { + "name": "", + "address": "0x33a4cfc925ad40e5bb2b9b2462d7a1a5a5da4476", + "n_transfers": 40 + }, + { + "name": "rarible_v1", + "address": "0x8f2256063036495f5a362a57757acfcbe72e44b9", + "n_transfers": 40 + }, + { + "name": "rarible_v1", + "address": "0x492c04144cd934eb918464426fbeb415e41ff7a7", + "n_transfers": 39 + }, + { + "name": "rarible_v1", + "address": "0x7054777fc7cbfb7965cbb3d5fa3332d0e46b43d1", + "n_transfers": 39 + }, + { + "name": "rarible_v1", + "address": "0x3423eed97f47deda32eb2056075f92be9055f912", + "n_transfers": 39 + }, + { + "name": "rarible_v1", + "address": "0xd4f73d00f4d82447dd275d8e786da16b6ff80453", + "n_transfers": 38 + }, + { + "name": "rarible_v1", + "address": "0xeb41488e98122f011b71dfcf01d21fb94dc90e8e", + "n_transfers": 38 + }, + { + "name": "rarible_v1", + "address": "0xe8194a3c5f6b9db31f1e2c1521e27d26c800bc67", + "n_transfers": 38 + }, + { + "name": "rarible_v1", + "address": "0xf24e070c174d9f00a092b60d81e4d2eaba67fe4c", + "n_transfers": 37 + }, + { + "name": "rarible_v1", + "address": "0x54662a9701682b2dbacf19e1079d2fc08ab431d1", + "n_transfers": 37 + }, + { + "name": "rarible_v1", + "address": "0xf595a6d4f88f791f190f946739c64591c3c556c0", + "n_transfers": 37 + }, + { + "name": "rarible_v1", + "address": "0xaeda61b9126feaba872446ca4f03a3d2f46397a5", + "n_transfers": 37 + }, + { + "name": "rarible_v1", + "address": "0x6ae270426644c8846297a0eabe8f448534420906", + "n_transfers": 36 + }, + { + "name": "rarible_v1", + "address": "0x9fc634be5dc1ad1ff9ae6dbfb5b58491148f01f1", + "n_transfers": 36 + }, + { + "name": "rarible_v1", + "address": "0x366c34e262e310426e117dbe2cfeeb820eebd9ca", + "n_transfers": 36 + }, + { + "name": "rarible_v1", + "address": "0x256f6dbe7ed4f2c953b9ad972e2387f05963d5be", + "n_transfers": 36 + }, + { + "name": "", + "address": "0xe3af60f1f08e489503d9827210c73e468400c7ec", + "n_transfers": 36 + }, + { + "name": "rarible_v1", + "address": "0xfd5e15d62353ec6498ab64aee76035d0042d92a2", + "n_transfers": 35 + }, + { + "name": "rarible_v1", + "address": "0xe57b446d45432a1827210240ef18a21059bfe945", + "n_transfers": 35 + }, + { + "name": "rarible_v1", + "address": "0xbdf2ef43438e5c1150403248f0074481cef44705", + "n_transfers": 35 + }, + { + "name": "rarible_v1", + "address": "0x7f16f5aa4bf4577402e035e518055be7c3c9bc28", + "n_transfers": 35 + }, + { + "name": "rarible_v1", + "address": "0x317795bd78bdbe513f0369e0b2ed70693483c59d", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x12df506b9daaf874945022a463e6fdb3245f780c", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x43405d800766dc6ecafcc4d4d86d1b1463f556f0", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x505df5ace201098b1d198aad048cb61c9f0246d4", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x7a82a20e7669a9313662ba1c9d9cf0502be8ab9d", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x8af1b93e4a90a81ca99fee5a5b05ccf2cf8074ee", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x670646a8373886d8c8e0d525bd15f92c6f765fa5", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x5f9c9f69e7aa5bc487e85c4c3c3568a9b0b3ba82", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x18943a963a2ad070cdc1b811aa7228ace469adb7", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "address": "0x2d6aff6ffffb60f5fdaf5a0ef4c1096644270d37", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "address": "0xa7eb9a6a3a86b2fda7199a2e151aaef84cd1dfda", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "address": "0x4a384886cf53d824a2160646637cafa356473f49", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "address": "0xe1f254f01488ca0574ce88f90c2ebd283c407671", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "address": "0xb88c3fdc48d3b148aba66a732a83ef8aa71ae861", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "address": "0x0e92164df9bc46855c9476384abc4e8fd2c47edc", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "address": "0x1651bd62a6ae8c43bdba7c3c6c344c3079936071", + "n_transfers": 32 + }, + { + "name": "rarible_v1", + "address": "0x9d57fc71118d050805b97612c69aa8a798631f6c", + "n_transfers": 32 + }, + { + "name": "rarible_v1", + "address": "0x32aa0094c6766c04e0e8bb4d14033d5904862545", + "n_transfers": 32 + }, + { + "name": "rarible_v1", + "address": "0xc12ec45cf9de5c58fe40e09f4f2db8df6120945b", + "n_transfers": 31 + }, + { + "name": "rarible_v1", + "address": "0x65604fda8ba3f4808fd7b74abc5eb04172449076", + "n_transfers": 31 + }, + { + "name": "rarible_v1", + "address": "0xe8fc1aca7da14afb85182c113120896ac7c98a8a", + "n_transfers": 31 + }, + { + "name": "rarible_v1", + "address": "0xed012991f72bc58e134b5496834064284306499b", + "n_transfers": 30 + }, + { + "name": "", + "address": "0xe6822e8b4d91b85f9ca00cca79bf92bab14bc221", + "n_transfers": 30 + }, + { + "name": "rarible_v1", + "address": "0xc6571274ca9d6e3658aadb69e2f1de799288818f", + "n_transfers": 30 + }, + { + "name": "rarible_v1", + "address": "0xbf58b8b9b4df73efc79db071d6e8bdb4c088be2d", + "n_transfers": 30 + }, + { + "name": "rarible_v1", + "address": "0x0ecc90aa2af935f1d1a29feb70b9cc4aa04cbb36", + "n_transfers": 30 + }, + { + "name": "rarible_v1", + "address": "0x3b05f81864c943590c3364e5fe06632dc531cc1c", + "n_transfers": 30 + }, + { + "name": "rarible_v1", + "address": "0x982fc7432cf41e374e7a7622e5e7b6773e1310d2", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0x5c3daa7a35d7def65bfd9e99120d5fa07f63f555", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0x9be29d790c7e2c3ff6acb608f6a3799b2650314d", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0x435c8739d1fd6d2a29ab1dcc667a2e4a360e3ed4", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0xd574f92169810afc82292117a257467c520c1210", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0xe817c927f34b3c8db9322fe03599bf2707a4491a", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0xa71936fdfacd9dfdee1817bce953df97d1fdf554", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "address": "0xcbbb170c74fed5fe27245a01c61cd219a90bad18", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "address": "0x5d6813f9c9a28c118c93598e1c10b526a8b5a1a4", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "address": "0x40fe4c60673709a16a0f47c42ba54b466418a64a", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "address": "0xb1432546890d88a0c510ca73475e0c3b8933bf22", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "address": "0xeb868136fce503964b738208a677eacff5f7fccb", + "n_transfers": 27 + }, + { + "name": "rarible_v1", + "address": "0xaa0d5b39a4664d8d700b7e12c164ed43b951554f", + "n_transfers": 27 + }, + { + "name": "rarible_v1", + "address": "0xa1c4b6889821f50aee6c93f7eccd8c5ba1115641", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0x72262848c8b95532fcfffe6e3e519b228ae5845b", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0x66eb6684c7beda94e4c244e025344a20834aa64d", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0x04955703317e1126f725abe1ffac2dce2b696cd5", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0x6b0c1d93bfb1dbe420ae5342d81a62323f5c811f", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0xf30e2be919161cf7d7b975a7da101eae5da902ce", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0x3ef99698e0dc42ea9557ee393cf1b78fc36f092a", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "address": "0x201a2bd580377905b393388ba288815128078ac0", + "n_transfers": 26 + }, + { + "name": "", + "address": "0xd6fbc588964e5a3d5caa56b69205ad1adbe9f438", + "n_transfers": 26 + }, + { + "name": "", + "address": "0x8233a82fa5515708d1ca9ece90821d213ec52e9d", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0x0f4b33fdc45581fa98839c8cef6ed79437eb6363", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0xa4aac2a1b7cc86a09c474797bf9c1b776fe0a285", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0xf4680c917a873e2dd6ead72f9f433e74eb9c623c", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0x1cfd39c883b4d487bf88fdfa9931b347361df81e", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0xf9565d501c9b115345c8c24746edaa3d6cd835f6", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0x24e473d902952d840a24771cd2d16789f8a79567", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0x8613767f51108b198508670f622883cb3e0f1bd0", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0x83b4b74a9fc65bf26aa4f68044b51cff0fc23cc4", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "address": "0xbd4021c0cc0be79fc54a9ed1943fbbd3f96a9ec0", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0x38b1e61d0897ba13ac101bec5cc75bff0b96fe6a", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0xfd5683f0ca3e76b963ee997831f2c8b29fa7f81b", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0xfbdbeed1ba112e8d73bd15981947fc71cf8695e4", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0xaddbf4405a5711201e3ff3074ab272697d4e4a97", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0x9e1866dbf872013a5cbfdf1a32ab6157ec929623", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0xf46d0487bc0ffa2629d144f49c5e9cb5b76618d9", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0x61bd6b10c7bf3e548f8659d016079e099510a4dc", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0x407eb99611d27ae4bdc3997b58d81cc1e64c7d0b", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0xb1a4eecf844421e112634bf8231b69531a0698d9", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "address": "0x229d2a2cecae97a45fa3a9cbfd0297c22d3270b3", + "n_transfers": 23 + }, + { + "name": "rarible_v1", + "address": "0x41a87ece33164cb55b12664db42942cd95e02932", + "n_transfers": 23 + }, + { + "name": "rarible_v1", + "address": "0x21cf0f26eb9cf547c8f26f636eecc4d3106641cc", + "n_transfers": 23 + }, + { + "name": "rarible_v1", + "address": "0x7b4d47feb4d6cef88302d7272da337b050f48a8f", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "address": "0x8da8806fc0c459fce4625789374972693befc03f", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "address": "0xba35430ffd0313d83f87317e9024293128eb98d7", + "n_transfers": 22 + }, + { + "name": "", + "address": "0x16cb6125928d7908c620d732e16b0d1ab4c5ab96", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "address": "0x9ec867eeaf55fc8be53dd0ce552262ddbdf70905", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "address": "0xdc62d6d2d91dd1835a579d88f9a7e0f994b05975", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "address": "0x3d1cc955be8957d5de8e51f464a7ca663345e757", + "n_transfers": 21 + }, + { + "name": "", + "address": "0x4c9f1b0313699ce67264bac7326a7a02ebee747a", + "n_transfers": 21 + }, + { + "name": "rarible_v1", + "address": "0x1f8672dca8ae79e8cd6ce0a73b9193af7ca5bf30", + "n_transfers": 21 + }, + { + "name": "rarible_v1", + "address": "0x43919d96f02c744a8dbe72220097c28dae14675b", + "n_transfers": 21 + }, + { + "name": "rarible_v1", + "address": "0x2a851d22281092bca9ce0573ff7c64f2840c3693", + "n_transfers": 21 + }, + { + "name": "rarible_v1", + "address": "0x31865d76403511000d44c803017f71f6d4bc02e6", + "n_transfers": 21 + }, + { + "name": "rarible_v1", + "address": "0xa5b7432b2c611fa2818cdbe01b73b03521f8d308", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x8f86390963f1faba99468a8857e65e48ef2832ec", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x3045474044a37d59d117200b7577af6532b80043", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x9d664ec54b3d1549045cd57d67998687a0dd371a", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x7a974b387eae135323d91309830f8119be4f9b46", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x7418102225e25393d0db0a4aaaa458b3f72529b1", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x7398e673087783ce8500161feaeedfc42d802f52", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x253e3e7d86f73e104ada29b682589c5164bc3ea5", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0xc0983df152a9ed7a99be899075ca9bafe5d4b15e", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0xcbc1deb56ccd3775fc5cf0bae51ed1ba55847517", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x1ccf0477a5562b7e14862d13b7daa389577a2be2", + "n_transfers": 20 + }, + { + "name": "", + "address": "0x108ff39bc1b725870031208f44488fefc03f1f57", + "n_transfers": 20 + }, + { + "name": "", + "address": "0x5f5c08f823aeeddc8a4e53e4f144e7a8f50d3b37", + "n_transfers": 20 + }, + { + "name": "", + "address": "0xf64c866b5b4f25c1d17e3a7cea883c367f460f91", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "address": "0x8be225fa78a276f930d1c14f37acd2eac8b8d9b0", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x05d2d781d8ca5a755924867815c1cd86085f8325", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0xbae8fc4c95aba2c05395d4a00501d71490133467", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x539b53fa542675c766e49993df4841c26accf24e", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x0cb9c97ef3d902531004b948f2c19f1367c25a9e", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x25ef34f3ac14ecf0104af2ce4382ac1b82c31dc0", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x75b8fd69f6509289cf717dd1faaf5eb88e7dae35", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x8794fca913b27162ff3270abe7328ebbec9e20c2", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x96f69bde4d284a7bf48172cdc317521bbe3cb857", + "n_transfers": 19 + }, + { + "name": "", + "address": "0xa9f4bfe3fc4376478ed3cc7380c08d1646b1f0b8", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0xf62769fcf5707b52e63574f2aacf939ef9ffb1ff", + "n_transfers": 19 + }, + { + "name": "rarible_v1", + "address": "0x5bd6890db9035caa9a4853a9c4cf49fd76801908", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "address": "0x5bbef39747422e21991f5c8dc7e8b0c938c9970a", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "address": "0xc602b474881c053662d72d8884af910cd6b43378", + "n_transfers": 18 + }, + { + "name": "", + "address": "0x0248c5e6354053295637013e7c3efd901a4a185c", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "address": "0x588c5aee9bac620b4435435903c01223a9989abc", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "address": "0x82ba4cfeeba1d68f6cd3ce360808c6fbc416dd36", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "address": "0x54b4cdb28659261208de782c20a98bd48b2d8e18", + "n_transfers": 18 + }, + { + "name": "", + "address": "0x32a26380960fee5316fd1041117d5bcdb6ddd9be", + "n_transfers": 18 + }, + { + "name": "", + "address": "0xe3896d07d7c3e7e3a1d209f5f527cb69f0ba9cdf", + "n_transfers": 18 + }, + { + "name": "", + "address": "0xe05bbc3d1a9a7b72c130866fcab367013d1cd1d5", + "n_transfers": 18 + }, + { + "name": "", + "address": "0x66d5a6f02432f916cc9fd307ba9cd97d7346374f", + "n_transfers": 18 + }, + { + "name": "", + "address": "0x56e3cea51769d9a21f68c85bd78145245dd74b73", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x37b0fc7af6dfc0741b0ed562005da15301f6c571", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x0332b704f1a3c2ca064c183cd6a2548e7fdd56ee", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0xb3be30948d4389994955a23df3f0ac1773f83084", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0xabec196c7c3e074b5552e04364e304e39a2723c2", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x85b5bd374c11d8f6e0864a3927028c33bb39646e", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0xab3c9dfd9f9ef544fb452864e0ea1d6a15be9078", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x87110d26c5fa701bf86d0db77513d999da90214a", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x63d659f73eea5c6a7c6d5b66a1f9f7b2c44d0beb", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x05cadc7eb68e2c06761b18b40ca927976b63464a", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0xee48879229ee219cb99f5868449a6d03147417a9", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x007810366aed6ed62af3240def95879c0f20b8c4", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "address": "0x300533115a586fa305fe6ca4a32fb22c22abbd92", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0xe65c9866c456c94b49c58286f1686d7e554d1899", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0x45503d36827227f0d110fb3a17b4e1bbdf5c44d8", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0x0c5c8c539cd635a5353e6bf51357069c34085ca4", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0x52b68a835aca64262845ccad4e18d58e10f0f521", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0x88535eb0be6fe825c87ef8fb7c3cf66a7088779e", + "n_transfers": 16 + }, + { + "name": "", + "address": "0x276a5b4f0140adf36be94908955bf75095bf9118", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0x82dfc4dab7831b9721cf856e304133bcc467e0bd", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "address": "0x65061eafee6e4d49c40497a7dcd86865541f6960", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x5b50931305b4ae11c08876431f0baeb51d8a6daa", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x8791d2cb2c67f9efe76e14ac022bd44b975ea70e", + "n_transfers": 15 + }, + { + "name": "", + "address": "0x73242c671cf402152e3880af208071dadab0bc27", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x3a5ca702eafa23ec69b62dcfefa5d6e0ecfc858e", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x690c231a00a2bbe474d06d47372f7a2cdf2afa99", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x4e302fc5aac305b6976c1d837f3114bf76e7b8a5", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x94ac35c4225d63f01e1cdd31f6c566f3b9398787", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0x7b9ce8df72c549c5dd2b5f6c74812dbb0c6646ef", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "address": "0xe598d0251215f28847926db240839bfa62482643", + "n_transfers": 15 + }, + { + "name": "", + "address": "0xdff5eb0a5e675a1fbde83fa3609320fefea88412", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0x27576e6ff9e49bf02d5d5863c21b6f837b300bf7", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0x6881530167e2bce09a0e635944df399ff96e34fd", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xac41821338fefb209473244064478b445ba482f1", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xd0cf6a6ca65bc95587ddb9e7fb899b62b241af84", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xd6f25b513fb79324cb1e4ed246a3a2a4473e13e0", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xa2f24396dcccf90e1dd29af5182e2c74bffd0f7f", + "n_transfers": 14 + }, + { + "name": "", + "address": "0xff15b5f18889704cf4a05026858e299596c4793b", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0x5ea117b28a78357166ee2e6ad1acfe6e9b0de3d6", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0x5b2ea62fbe3944ffd92dc3a13d2eeab8d097e756", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xe9440414667c13c4427bd166de49fcb851108150", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xec46038fe707b49e084663165a36cd78fe7cd3d7", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0xf7b472b14431abdbb0768113b0924d96bf39443b", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "address": "0x2923c1d122720add241e21015a886d7a8fae3df2", + "n_transfers": 13 + }, + { + "name": "", + "address": "0xcc35c66efa69d81df3af0e395bdd28065cf08840", + "n_transfers": 13 + }, + { + "name": "", + "address": "0x3430930c101b73a4c23be0eaae78a71e5b31f2e4", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0xb3baefe0d167cba4af84ea6e6fa97ab589bd08cf", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0xea7fbf4a1b6c16b9a06846a91d819e44064bbaf3", + "n_transfers": 13 + }, + { + "name": "", + "address": "0x2e7f7d6866691142cfac9e366be1075fed502a84", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0xfa4af54f1178fd08dc3c2a4725b5f2dc81751f63", + "n_transfers": 13 + }, + { + "name": "", + "address": "0xa57a733c001b8cf1b0ced98f66ce54c35eae532e", + "n_transfers": 13 + }, + { + "name": "", + "address": "0x13d569e3b6ed96977f98aad5cc6dff2c88dd7cf9", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0x5ece08d3e1997b989e4d40fa80498a86cc59cc2b", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0x786622ec2f3fa0760e6e8059c9363286c06e2512", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0xf73c3710a8316b1d2b42cc7e59f1f5c2396a546f", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0x440f36dba0cc626a71af47a83d85846246ba3fb2", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "address": "0x4813c06eb9919db20634c431565d6b88f35501ff", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x16f3fbcfad592305adb1c843c854a6d8454bc7be", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0xa5af9ab3300ad1a3b05ec66561ce958722512559", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x2776364a653333cd5b154744c58504066c377a61", + "n_transfers": 12 + }, + { + "name": "", + "address": "0x2986b5fa6df9ff4b33a87bca703d37a80bb5cd6a", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x97d05867820fcd85c83c89abfcff82662e169aaa", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x7d46020d056a5936711659d10393dc87e3b0828f", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x89b1d42af08bccb0e8168dbf92f800573ae84c73", + "n_transfers": 12 + }, + { + "name": "", + "address": "0x81b0c8cb62daf41f3b6629c38914dbe898a9fbe7", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x3ec057be60db3a2d416e14a6e3ab7f37ffccd7b8", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x001d1cd0bcf2e9021056c6fe4428ce15d977cfe0", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x4568c3a9d7622d8eec6da47029325d54222b7028", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x12216e4ec364f8cf0e7f2d1288cd79cb13e6bd61", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x9f4d0fdfc755fe4dd1885418be2f63981d6c0858", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0x9b3c6e9636e0c220a2ef9517d1e7ad0bb34d7d2f", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "address": "0xc35a0aef49069abffbad543cb81fda3412f80034", + "n_transfers": 12 + }, + { + "name": "", + "address": "0xb71db24658dc5765cc7921cbae43fd603576e64e", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x0dd3c271da45923ea536c5d91307d9cc8a0bcd74", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0xa3d22470913460d2988e940093213e6a152fba27", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x0aee9395897083c75d233e98e239f677bf24d3bd", + "n_transfers": 11 + }, + { + "name": "", + "address": "0x41c9e36a8797778159436971542fda652e49d1fe", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x97214d748eb8de4fbdac4cf832adf4be2ab5af2c", + "n_transfers": 11 + }, + { + "name": "", + "address": "0x2b63711673fc94415f1dd004f54b733108c41996", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0xcf2849ce6b2bca9cc7dddc814e63cacb2668dab8", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x91167b54411cca20319fda9f4a3fb8df0070aea3", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0xecea8678c216456d0d94be4e90412159da2450cb", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x62a5c783187f5843fc9eccbe6ded13eed2e0d232", + "n_transfers": 11 + }, + { + "name": "", + "address": "0x458647912e9e67a65da1452c533bf0db6ff8a0b2", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x459f71d12783eaca6769963b336f17dab0e4cdf7", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x652a0dacaf996343902dfb7519174e8d2ce011d9", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x215a35201631bc4f5df68412732d80e6f854a16b", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x279d3498903941e4f720587cc79ff641bd4bd452", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x3ac131f616014bde3e0bc9fa67d05deb76af0d88", + "n_transfers": 11 + }, + { + "name": "", + "address": "0x6aa21406f574db8127ca73e362856b1870cdd4b1", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0xbcd0814bbb12c1f03e8283a2c53fe92a041af397", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0xbc3d26747e9833cbd05146552efaae631505b8d7", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0x7ab29e7c8de4130aad850a6dbeee5c385d48d05a", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "address": "0xb6c7ab64d73838a5e2328f5f4082c363fa86ce1f", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x82025dfc00c4a2999705d13a21a8d04d10b719bb", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x8e64763007daebb19fb87a2f562a873854017990", + "n_transfers": 10 + }, + { + "name": "", + "address": "0x33561199ea127da52b6addc14b9473f1fceadd90", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x45c51edd1853efb04e23d9479687fe76cf4a8a37", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x6968f1421b7a122d431009635e32925271016fb0", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x291c9486d3f664d78e72ebb6cbf20428f9e5a907", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x8b8474a376bade9fd22e51bea2e3a94d157af090", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x6d2dd496ff152508b5bd0406766ed00cb748889f", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xb0b3252692d49b440a031844a9f6455df50217c1", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xe04a45c357b0248816015d7154320a6ca53c4d6e", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xe017441eef4f2d386aac6d2cbe12ed8a8f50855c", + "n_transfers": 10 + }, + { + "name": "", + "address": "0x44e491adb468dfa6ab4545a030665e81ee85a77c", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x1727f353db253b0af54720878c4901e62d9d1b89", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x3921ecb96223d11f4b49e7f8515d34f91aa49150", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x499b373f23209b2d1e3e9b169337e4430d28f78a", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x33faa63735e3aad89caec564119e77aad88b9ddf", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x73a019678d58cf96ed0a2939f9d89b423d311145", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x070bb24e5f7a62ae04ef4146eec8c0ffa2870ac6", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x3cc9ffdf72f8e1022b1e5b38501ac4eebb5783c3", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xa7e637b4cfdaa10ccec8c15cfeb314dded1ab658", + "n_transfers": 10 + }, + { + "name": "", + "address": "0x302c8b304122e6060cc3562208f1a5c605b38d0e", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x58c6b57e075ba2b7cbfc4bd01d189b563c4cb71f", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xd63311471512046f9ba9fcb0fbeb77108c3bd230", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xedd83b243cea6d32e3592f843cbbeecb4b3455a7", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0xede5b971ff0edfd99422344329ce86ec0231073f", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x6392a36541392a0b90f020f46d7a688768b64ff7", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x7f45d967874fbcfc5a25ae940fa852c347e144ce", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x3a35f8a49521fd10af3fed7d2375837ca652b548", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "address": "0x9f60d4a4b5dd2376ce9c3293b42257f3a12e82e4", + "n_transfers": 10 + } +] \ No newline at end of file diff --git a/api/src/data/erc721_dune_dump_2021_01_20.json b/api/src/data/erc721_dune_dump_2021_01_20.json new file mode 100644 index 0000000..e2fcf20 --- /dev/null +++ b/api/src/data/erc721_dune_dump_2021_01_20.json @@ -0,0 +1,14597 @@ +[ + { + "name": "godsunchained", + "contract_address": "0x0e3a2a1f2146d86a604adc220b4967a898d7fe07", + "n_transfers": 7966004 + }, + { + "name": "", + "contract_address": "0x629cdec6acc980ebeebea9e5003bcd44db9fc5ce", + "n_transfers": 6680552 + }, + { + "name": "ethereumnameservice", + "contract_address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85", + "n_transfers": 803051 + }, + { + "name": "", + "contract_address": "0x564cb55c655f727b61d9baf258b547ca04e9e548", + "n_transfers": 580736 + }, + { + "name": "", + "contract_address": "0xbd13e53255ef917da7557db1b7d2d5c38a2efe24", + "n_transfers": 566636 + }, + { + "name": "", + "contract_address": "0x8853b05833029e3cf8d3cbb592f9784fa43d2a79", + "n_transfers": 522901 + }, + { + "name": "godsunchained", + "contract_address": "0x6ebeaf8e8e946f0716e6533a6f2cefc83f60e8ab", + "n_transfers": 383765 + }, + { + "name": "sorare", + "contract_address": "0x629a673a8242c2ac4b7b8c5d8735fbeac21a6205", + "n_transfers": 263810 + }, + { + "name": "", + "contract_address": "0xd1e5b0ff1287aa9f9a268759062e4ab08b9dacbe", + "n_transfers": 237156 + }, + { + "name": "", + "contract_address": "0x8c9b261faef3b3c2e64ab5e58e04615f8c788099", + "n_transfers": 234887 + }, + { + "name": "", + "contract_address": "0x1d963688fe2209a98db35c67a041524822cf04ff", + "n_transfers": 187270 + }, + { + "name": "", + "contract_address": "0x7e789e2dd1340971de0a9bca35b14ac0939aa330", + "n_transfers": 152747 + }, + { + "name": "", + "contract_address": "0xdceaf1652a131f32a821468dc03a92df0edd86ea", + "n_transfers": 147634 + }, + { + "name": "", + "contract_address": "0x27b4bc90fbe56f02ef50f2e2f79d7813aa8941a7", + "n_transfers": 134749 + }, + { + "name": "ethereumnameservice", + "contract_address": "0xfac7bea255a6990f749363002136af6556b31e04", + "n_transfers": 132890 + }, + { + "name": "", + "contract_address": "0x273f7f8e6489682df756151f5525576e322d51a3", + "n_transfers": 125956 + }, + { + "name": "", + "contract_address": "0x7b00ae36c7485b678fe945c2dd9349eb5baf7b6b", + "n_transfers": 103507 + }, + { + "name": "", + "contract_address": "0x2fb5d7dda4f1f20f974a0fdd547c38674e8d940c", + "n_transfers": 100543 + }, + { + "name": "sandbox", + "contract_address": "0x50f5474724e0ee42d9a4e711ccfb275809fd6d4a", + "n_transfers": 93688 + }, + { + "name": "", + "contract_address": "0x05f02507c7134dbae420ab8c0ef56e999b59da03", + "n_transfers": 86720 + }, + { + "name": "", + "contract_address": "0x55de98f2141a44f804df399468cf7133b7e3e8e5", + "n_transfers": 75825 + }, + { + "name": "", + "contract_address": "0xf87e31492faf9a91b02ee0deaad50d51d56d5d4d", + "n_transfers": 70409 + }, + { + "name": "", + "contract_address": "0x8bc67d00253fd60b1afcce88b78820413139f4c6", + "n_transfers": 60572 + }, + { + "name": "", + "contract_address": "0x875eaa41917ced7c1e435272888d23f05098fc97", + "n_transfers": 59551 + }, + { + "name": "", + "contract_address": "0x98ff4553a3dcbf5e4ff8b5d4cc6fb763b6f20174", + "n_transfers": 56565 + }, + { + "name": "", + "contract_address": "0x31af195db332bc9203d758c74df5a5c5e597cdb7", + "n_transfers": 52956 + }, + { + "name": "rarible_v1", + "contract_address": "0x60f80121c31a0d46b5279700f9df786054aa5ee5", + "n_transfers": 52754 + }, + { + "name": "", + "contract_address": "0x1276dce965ada590e42d62b3953ddc1ddceb0392", + "n_transfers": 51643 + }, + { + "name": "", + "contract_address": "0xb55c5cac5014c662fdbf21a2c59cd45403c482fd", + "n_transfers": 50934 + }, + { + "name": "", + "contract_address": "0xf06059f01f6f08a603c939359a0a1186f7687685", + "n_transfers": 49499 + }, + { + "name": "", + "contract_address": "0xd35147be6401dcb20811f2104c33de8e97ed6818", + "n_transfers": 48731 + }, + { + "name": "", + "contract_address": "0x67cbbb366a51fff9ad869d027e496ba49f5f6d55", + "n_transfers": 43437 + }, + { + "name": "", + "contract_address": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b", + "n_transfers": 40594 + }, + { + "name": "", + "contract_address": "0x5d00d312e171be5342067c09bae883f9bcb2003b", + "n_transfers": 37133 + }, + { + "name": "", + "contract_address": "0xe15e9c0bf6b6b29d3b9e1c921ab2cb09c2194463", + "n_transfers": 32774 + }, + { + "name": "", + "contract_address": "0x2a187453064356c898cae034eaed119e1663acb8", + "n_transfers": 31421 + }, + { + "name": "", + "contract_address": "0x6fa769eed284a94a73c15299e1d3719b29ae2f52", + "n_transfers": 30668 + }, + { + "name": "superrare", + "contract_address": "0xb932a70a57673d89f4acffbe830e8ed7f75fb9e0", + "n_transfers": 30450 + }, + { + "name": "", + "contract_address": "0x4f41d10f7e67fd16bde916b4a6dc3dd101c57394", + "n_transfers": 29736 + }, + { + "name": "", + "contract_address": "0x2af75676692817d85121353f0d6e8e9ae6ad5576", + "n_transfers": 28945 + }, + { + "name": "", + "contract_address": "0x18ddd7fedc4b1a5a414cded8e5be6c40408a95dc", + "n_transfers": 27305 + }, + { + "name": "", + "contract_address": "0xbfde6246df72d3ca86419628cac46a9d2b60393c", + "n_transfers": 26056 + }, + { + "name": "", + "contract_address": "0xc2d8db56c50f253d1279da6760345fe78f784ed9", + "n_transfers": 24647 + }, + { + "name": "", + "contract_address": "0xdc76a2de1861ea49e8b41a1de1e461085e8f369f", + "n_transfers": 24449 + }, + { + "name": "", + "contract_address": "0xc20cf2cda05d2355e218cb59f119e3948da65dfa", + "n_transfers": 23420 + }, + { + "name": "", + "contract_address": "0xff488fd296c38a24cccc60b43dd7254810dab64e", + "n_transfers": 23185 + }, + { + "name": "", + "contract_address": "0xc03844f07f86ad1d90a1c4a2a8204dcf00f3a991", + "n_transfers": 22126 + }, + { + "name": "", + "contract_address": "0xfc249b4a5ada66c25392c10b8f40ad284b6f185d", + "n_transfers": 21618 + }, + { + "name": "knownorigin", + "contract_address": "0xfbeef911dc5821886e1dda71586d90ed28174b7d", + "n_transfers": 21475 + }, + { + "name": "", + "contract_address": "0xac1aee5027fcc98d40a26588ac0841a44f53a8fe", + "n_transfers": 21184 + }, + { + "name": "", + "contract_address": "0x2aea4add166ebf38b63d09a75de1a7b94aa24163", + "n_transfers": 19996 + }, + { + "name": "", + "contract_address": "0x22c1f6050e56d2876009903609a2cc3fef83b415", + "n_transfers": 19835 + }, + { + "name": "avastars", + "contract_address": "0xf3e778f839934fc819cfa1040aabacecba01e049", + "n_transfers": 18570 + }, + { + "name": "", + "contract_address": "0xdf5d68d54433661b1e5e90a547237ffb0adf6ec2", + "n_transfers": 18307 + }, + { + "name": "", + "contract_address": "0x32b7495895264ac9d0b12d32afd435453458b1c6", + "n_transfers": 17949 + }, + { + "name": "", + "contract_address": "0x34047d5d7f4c906998e0d9def0d2dc3b523d8398", + "n_transfers": 17928 + }, + { + "name": "", + "contract_address": "0x81dc9934094b65b704ba9388c27089dbe2c5fb6e", + "n_transfers": 17873 + }, + { + "name": "", + "contract_address": "0x2594d80da5f2e4f742d1e479eb9408aad132d0bd", + "n_transfers": 15876 + }, + { + "name": "", + "contract_address": "0xecd6b4a2f82b0c9fb283a4a8a1ef5adf555f794b", + "n_transfers": 14351 + }, + { + "name": "", + "contract_address": "0x543ecfb0d28fa40d639494957e7cba52460f490e", + "n_transfers": 13546 + }, + { + "name": "", + "contract_address": "0x989e1fb123b67afd66e10574c8b409bc6e812d9a", + "n_transfers": 13518 + }, + { + "name": "", + "contract_address": "0xe12e5b46be75efa04b5ebd3fa5935fb6ee6d32c7", + "n_transfers": 13038 + }, + { + "name": "", + "contract_address": "0xc1caf0c19a8ac28c41fe59ba6c754e4b9bd54de9", + "n_transfers": 12698 + }, + { + "name": "", + "contract_address": "0xa5e5be69c923c701ae6ac8f1f5936af3ae610c68", + "n_transfers": 12689 + }, + { + "name": "", + "contract_address": "0x20bd491fee75b6af6c2100c83b83312d620f2958", + "n_transfers": 12568 + }, + { + "name": "", + "contract_address": "0x91047abf3cab8da5a9515c8750ab33b4f1560a7a", + "n_transfers": 11571 + }, + { + "name": "", + "contract_address": "0x34fa7ddde9d0e1b98cd281ee1e8ba1db37c64399", + "n_transfers": 11093 + }, + { + "name": "", + "contract_address": "0xd7fbd072cf99146abcffa0ff4acf51b866a70433", + "n_transfers": 11067 + }, + { + "name": "", + "contract_address": "0xfe707abaead863313d926f7b369977c3b626678f", + "n_transfers": 10967 + }, + { + "name": "artblocks", + "contract_address": "0x059edd72cd353df5106d2b9cc5ab83a52287ac3a", + "n_transfers": 10817 + }, + { + "name": "", + "contract_address": "0xe4deeb64e8701116b1d2bdb82dad4c6de2a28845", + "n_transfers": 10355 + }, + { + "name": "rarible", + "contract_address": "0x6a5ff3ceecae9ceb96e6ac6c76b82af8b39f0eb3", + "n_transfers": 10172 + }, + { + "name": "", + "contract_address": "0xcb4bf0a3a12e382ee2b9c28587bf18a22a25a143", + "n_transfers": 10048 + }, + { + "name": "", + "contract_address": "0xba7a1265933be28ee36841f8c2170d51688b365d", + "n_transfers": 9606 + }, + { + "name": "", + "contract_address": "0xec7180a95b5533093d5c1795224797b42b578a94", + "n_transfers": 9547 + }, + { + "name": "", + "contract_address": "0x157ad40f43e26e72909f16bb07f2ca97466df849", + "n_transfers": 8843 + }, + { + "name": "", + "contract_address": "0x913ae503153d9a335398d0785ba60a2d63ddb4e2", + "n_transfers": 8805 + }, + { + "name": "", + "contract_address": "0x14a4123da9ad21b2215dc0ab6984ec1e89842c6d", + "n_transfers": 8654 + }, + { + "name": "chzwzrds", + "contract_address": "0x0d8c864da1985525e0af0acbeef6562881827bd5", + "n_transfers": 8385 + }, + { + "name": "", + "contract_address": "0x6b4fccdd888bb6fd3934a9e49ef64dfd2c0d8e6d", + "n_transfers": 8352 + }, + { + "name": "", + "contract_address": "0x9f9c171afde4cc6bbf6d38ae4012c83633653b85", + "n_transfers": 8341 + }, + { + "name": "", + "contract_address": "0xc1f4b0eea2bd6690930e6c66efd3e197d620b9c2", + "n_transfers": 8269 + }, + { + "name": "", + "contract_address": "0x2f4bdafb22bd92aa7b7552d270376de8edccbc1e", + "n_transfers": 8001 + }, + { + "name": "keep_v110", + "contract_address": "0x10b66bd1e3b5a936b7f8dbc5976004311037cdf0", + "n_transfers": 7806 + }, + { + "name": "fortube", + "contract_address": "0x2d6e10561b320c4f31a903bf0fa92a1ed58637c0", + "n_transfers": 7610 + }, + { + "name": "", + "contract_address": "0xfeb52cbf71b9adac957c6f948a6cf9980ac8c907", + "n_transfers": 7519 + }, + { + "name": "", + "contract_address": "0x395e5461693e0bb5ec78302605030050f69e628d", + "n_transfers": 7502 + }, + { + "name": "", + "contract_address": "0x69a1d45318de72d6add20d4952398901e0e4a8e5", + "n_transfers": 7480 + }, + { + "name": "", + "contract_address": "0x9255ed258dcbafe165dccd93ea0a72f4ed88e24d", + "n_transfers": 7330 + }, + { + "name": "", + "contract_address": "0x5c1749bc5734b8f9ea7cda7e38b47432c6cffb66", + "n_transfers": 7195 + }, + { + "name": "", + "contract_address": "0xe694010c4f1fcd35ebc04ceb60f847caaf2cd6f2", + "n_transfers": 6862 + }, + { + "name": "", + "contract_address": "0x03e3fbc3820c1d1487cd7b275cc32c226caf5d18", + "n_transfers": 6829 + }, + { + "name": "", + "contract_address": "0xb447030c916ba07a5a4aa50a379259e387c48182", + "n_transfers": 6582 + }, + { + "name": "", + "contract_address": "0xf9b3b38a458c2512b6680e1f3bc7a022e97d7dab", + "n_transfers": 6355 + }, + { + "name": "", + "contract_address": "0xbefae3a5155220ca3ce2d90bf65752f5a12de506", + "n_transfers": 6338 + }, + { + "name": "very_nifty", + "contract_address": "0x57f0b53926dd62f2e26bc40b30140abea474da94", + "n_transfers": 6135 + }, + { + "name": "", + "contract_address": "0xcc0b5c63117189a0c368d3d559855b79be6e3e75", + "n_transfers": 6086 + }, + { + "name": "", + "contract_address": "0xcd2ae3808bb8fdc835b25fd613a905662fca048f", + "n_transfers": 6048 + }, + { + "name": "", + "contract_address": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "n_transfers": 5761 + }, + { + "name": "", + "contract_address": "0x617913dd43dbdf4236b85ec7bdf9adfd7e35b340", + "n_transfers": 5683 + }, + { + "name": "", + "contract_address": "0xd70f41dd5875eee7fa9dd8048567bc932124a8d2", + "n_transfers": 5204 + }, + { + "name": "", + "contract_address": "0xf64dc33a192e056bb5f0e5049356a0498b502d50", + "n_transfers": 5079 + }, + { + "name": "", + "contract_address": "0x1bb9c8fb07275d930b409f6f47792a06baf620d4", + "n_transfers": 5073 + }, + { + "name": "", + "contract_address": "0x9237cb5a161b860c65c61330e090cdebd847b6cf", + "n_transfers": 5019 + }, + { + "name": "", + "contract_address": "0x2a4d9aa94f7d5ee5651ebcf94d6e12cd34232433", + "n_transfers": 4994 + }, + { + "name": "", + "contract_address": "0xde544e54a330abd1ea8a0e6693d46bfe95d9a684", + "n_transfers": 4895 + }, + { + "name": "", + "contract_address": "0x6a99abebb48819d2abe92c5e4dc4f48dc09a3ee8", + "n_transfers": 4891 + }, + { + "name": "", + "contract_address": "0x56f123785b54978c6c0b117f15d3ee69eb9bf6c8", + "n_transfers": 4879 + }, + { + "name": "", + "contract_address": "0x959e104e1a4db6317fa58f8295f586e1a978c297", + "n_transfers": 4758 + }, + { + "name": "", + "contract_address": "0x6966730b1435168880b35faa1e75de0988ee2e39", + "n_transfers": 4735 + }, + { + "name": "", + "contract_address": "0x862174623bc39e57de552538f424806b947d3d05", + "n_transfers": 4497 + }, + { + "name": "", + "contract_address": "0x5fcce8ab5500ed68ff5d6d75af1071195215d97e", + "n_transfers": 4484 + }, + { + "name": "", + "contract_address": "0xce5b23f11c486be7f8be4fac3b4ee6372d7ee91e", + "n_transfers": 4473 + }, + { + "name": "", + "contract_address": "0x0efc7150b7bf98879bdfde68137110164e61d0ec", + "n_transfers": 4460 + }, + { + "name": "", + "contract_address": "0x0f3b491841680eb40bd2be42bce7104f2511dbd9", + "n_transfers": 4449 + }, + { + "name": "artblocks", + "contract_address": "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "n_transfers": 4420 + }, + { + "name": "", + "contract_address": "0xbc0e164ee423b7800e355b012c06446e28b1a29d", + "n_transfers": 4381 + }, + { + "name": "cryptopunks", + "contract_address": "0xb7f7f6c52f2e2fdb1963eab30438024864c313f6", + "n_transfers": 4374 + }, + { + "name": "", + "contract_address": "0x181aea6936b407514ebfc0754a37704eb8d98f91", + "n_transfers": 4338 + }, + { + "name": "", + "contract_address": "0x2f2d5aa0efdb9ca3c9bb789693d06bebea88792f", + "n_transfers": 4286 + }, + { + "name": "", + "contract_address": "0x2aeaffc99cef9f6fc0869c1f16f890abdfcc222b", + "n_transfers": 4224 + }, + { + "name": "", + "contract_address": "0x5caebd3b32e210e85ce3e9d51638b9c445481567", + "n_transfers": 4102 + }, + { + "name": "", + "contract_address": "0xfcad2859f3e602d4cfb9aca35465a618f9009f7b", + "n_transfers": 4099 + }, + { + "name": "", + "contract_address": "0xe3d189a69e5ae2ca76ed848a262230fb8ff5eff8", + "n_transfers": 4082 + }, + { + "name": "", + "contract_address": "0xd90f5ebc01914bbd357b754956aafb199f4d1624", + "n_transfers": 4005 + }, + { + "name": "", + "contract_address": "0xdad917d2fdf8db6f43ddfe8b97d3658de3f8d0d0", + "n_transfers": 3976 + }, + { + "name": "", + "contract_address": "0x9ecf3414a7aeb5753ce017880c7d2969ab28d763", + "n_transfers": 3778 + }, + { + "name": "", + "contract_address": "0xf095c2e133c15c69f147e6f9688465b27ca3063d", + "n_transfers": 3768 + }, + { + "name": "", + "contract_address": "0xb9250c9581e4594b7c6914897823ad18d6b78e96", + "n_transfers": 3579 + }, + { + "name": "", + "contract_address": "0x2d7e4e116789dcece32687e289d476a1ff203716", + "n_transfers": 3541 + }, + { + "name": "", + "contract_address": "0x56b80bbee68932a8d739315c79bc7b125341098a", + "n_transfers": 3479 + }, + { + "name": "", + "contract_address": "0x443b862d3815b1898e85085cafca57fc4335a1be", + "n_transfers": 3469 + }, + { + "name": "", + "contract_address": "0xd18d8bd9ab44bfc245f1a7cf93f60cf5b4541cde", + "n_transfers": 3463 + }, + { + "name": "", + "contract_address": "0xd3551ab3018edb9e1c1111e966cceffdf625a730", + "n_transfers": 3290 + }, + { + "name": "", + "contract_address": "0xf766b3e7073f5a6483e27de20ea6f59b30b28f87", + "n_transfers": 3187 + }, + { + "name": "", + "contract_address": "0xbc5370374fe08d699cf7fcd2e625a93bf393ccc4", + "n_transfers": 3177 + }, + { + "name": "", + "contract_address": "0x2e472c8c7f9659f5b61d83f547c90ea8b8247df0", + "n_transfers": 3170 + }, + { + "name": "", + "contract_address": "0xeca47dae7262d46f9e0cae8c444c528bdf2b90d2", + "n_transfers": 3157 + }, + { + "name": "", + "contract_address": "0x3910d4afdf276a0dc8af632ccfceccf5ba04a3b7", + "n_transfers": 3063 + }, + { + "name": "nftegg", + "contract_address": "0x10a7ecf97c46e3229fe1b801a5943153762e0cf0", + "n_transfers": 3050 + }, + { + "name": "", + "contract_address": "0x0111ac7e9425c891f935c4ce54cf16db7c14b7db", + "n_transfers": 2925 + }, + { + "name": "", + "contract_address": "0x35b7838dd7507ada69610397a85310ae0abd5034", + "n_transfers": 2885 + }, + { + "name": "fortube", + "contract_address": "0x42b4a7db1ed930198bc37971b33e86f19ce88600", + "n_transfers": 2866 + }, + { + "name": "", + "contract_address": "0x3a3b0dbdc0f6bc77421dcd2f55cfa087b0db9aec", + "n_transfers": 2801 + }, + { + "name": "", + "contract_address": "0xe3870569f9e1836960bf30b5a45fc743cef0ab0e", + "n_transfers": 2735 + }, + { + "name": "", + "contract_address": "0xa8005a8ca1a4e8ed2283386d812d38e038969a6c", + "n_transfers": 2720 + }, + { + "name": "", + "contract_address": "0xe60d2325f996e197eedded8964227a0c6ca82d0f", + "n_transfers": 2712 + }, + { + "name": "", + "contract_address": "0x92e1121149ac6c71a00555d62e41054910495616", + "n_transfers": 2710 + }, + { + "name": "", + "contract_address": "0x9839499c38acbd6e11b4af0e50cc2259bffeac51", + "n_transfers": 2706 + }, + { + "name": "", + "contract_address": "0x983ea5f1e0950dab1e7759135e7f3f4e3cccd7d6", + "n_transfers": 2673 + }, + { + "name": "", + "contract_address": "0xd64705f59521d6774613d04cdb7cc15a37c6af19", + "n_transfers": 2497 + }, + { + "name": "", + "contract_address": "0xa432904d6b06086a9ed3cf865120e8dfd95fb6de", + "n_transfers": 2472 + }, + { + "name": "", + "contract_address": "0x36f16a0d35b866cdd0f3c3fa39e2ba8f48b099d2", + "n_transfers": 2432 + }, + { + "name": "", + "contract_address": "0xebfe22c48a5d9707a1be9c668e0638f271efa43b", + "n_transfers": 2381 + }, + { + "name": "", + "contract_address": "0xf740f77756762c87c0ab44e20fb4b90d2615b894", + "n_transfers": 2366 + }, + { + "name": "keep_v110", + "contract_address": "0xaf3fff06b75f99352d8c2a3c4bef1339a2f94789", + "n_transfers": 2300 + }, + { + "name": "", + "contract_address": "0x3c642be0bb6cb9151652b999b26d80155bcea7de", + "n_transfers": 2300 + }, + { + "name": "", + "contract_address": "0xf88a8c89a3ae936a36b426983abdda1f99a4bf18", + "n_transfers": 2285 + }, + { + "name": "", + "contract_address": "0x28a8874150ccdb519ce06adc584961a14fe3b186", + "n_transfers": 2284 + }, + { + "name": "", + "contract_address": "0x157b9d66f864b2c2b8228efd4ad92b38410e4fa6", + "n_transfers": 2264 + }, + { + "name": "", + "contract_address": "0x99a7e1188ce9a0b7514d084878dfb8a405d8529f", + "n_transfers": 2222 + }, + { + "name": "", + "contract_address": "0x657a5cbfe69146979d7e9bcc2ff8521a55be357d", + "n_transfers": 2213 + }, + { + "name": "nftegg", + "contract_address": "0x89e9f394dbdca349ba3e08fa79a38bc1a9c1188f", + "n_transfers": 2207 + }, + { + "name": "", + "contract_address": "0x9db37d15fefbf42dc390c3c81fee453465841038", + "n_transfers": 2206 + }, + { + "name": "", + "contract_address": "0x909899c5dbb5002610dd8543b6f638be56e3b17e", + "n_transfers": 2136 + }, + { + "name": "", + "contract_address": "0x18f36d3222324ddac1efd0a524aabfb9d77d8041", + "n_transfers": 2134 + }, + { + "name": "", + "contract_address": "0x677d8fe828fd7143ff3cee5883b7fc81e7c2de60", + "n_transfers": 2116 + }, + { + "name": "", + "contract_address": "0xb2d6fb1dc231f97f8cc89467b52f7c4f78484044", + "n_transfers": 2115 + }, + { + "name": "", + "contract_address": "0x574317b5167521d2e3e34469a6993102fbbd92ed", + "n_transfers": 2100 + }, + { + "name": "", + "contract_address": "0x7fc0552df341fe7052efc8a2806a7c9bddeb23d0", + "n_transfers": 2095 + }, + { + "name": "", + "contract_address": "0xba5a230e2d29e5629737484364c694381d7875e4", + "n_transfers": 2082 + }, + { + "name": "", + "contract_address": "0x18d657832c75a9ac8bc5d15a129d5f23b04f8628", + "n_transfers": 2030 + }, + { + "name": "", + "contract_address": "0x812b17908972e3db860247303dd041312b821e0e", + "n_transfers": 2026 + }, + { + "name": "", + "contract_address": "0x1865ef5e4939dac89403ab0b5336c88784aa976d", + "n_transfers": 2004 + }, + { + "name": "", + "contract_address": "0xf26a23019b4699068bb54457f32dafcf22a9d371", + "n_transfers": 1960 + }, + { + "name": "", + "contract_address": "0x18f64687e77c012d062bce0396fbbf7f21e11b77", + "n_transfers": 1944 + }, + { + "name": "", + "contract_address": "0x814f3965cddc69cf491369a2391adb9b91863c71", + "n_transfers": 1943 + }, + { + "name": "", + "contract_address": "0xd851fbd96d16d6b818c622cbc23e4197adce4058", + "n_transfers": 1899 + }, + { + "name": "", + "contract_address": "0x125ac71f194cde29e8f2a104a04ea67779c91751", + "n_transfers": 1892 + }, + { + "name": "", + "contract_address": "0x12976ac92061ddc252060bc84c09b48dc785263c", + "n_transfers": 1791 + }, + { + "name": "", + "contract_address": "0x8b0ed96dd16f602c85c86d9a176d86086f81e8c0", + "n_transfers": 1771 + }, + { + "name": "", + "contract_address": "0x4c9e324fd7df8b2a969969bcc3663d74f058d286", + "n_transfers": 1767 + }, + { + "name": "", + "contract_address": "0x5702a70acc2e5a016129f3995ee5224dad5d13b8", + "n_transfers": 1726 + }, + { + "name": "", + "contract_address": "0xa8abf045fe1a9ef0583e436393a6e4e0b483f717", + "n_transfers": 1682 + }, + { + "name": "", + "contract_address": "0xd498fc4289ecbcf5c9ef033de3ceddc1fc3f6cc3", + "n_transfers": 1626 + }, + { + "name": "", + "contract_address": "0x89505d2a27b7e8ac56252081d721ecd525e4241e", + "n_transfers": 1609 + }, + { + "name": "", + "contract_address": "0x960f401aed58668ef476ef02b2a2d43b83c261d8", + "n_transfers": 1603 + }, + { + "name": "", + "contract_address": "0x9dd91d61a7aa58537fcdbf16fd21be25731341b3", + "n_transfers": 1593 + }, + { + "name": "", + "contract_address": "0xabb2a4e1717f51d379489df8e784f770fa6d6511", + "n_transfers": 1588 + }, + { + "name": "", + "contract_address": "0x9227a3d959654c8004fa77dffc380ec40880fff6", + "n_transfers": 1583 + }, + { + "name": "", + "contract_address": "0xe07c2cbb3bf852d7b5c4a61c8a46371c960c4854", + "n_transfers": 1557 + }, + { + "name": "async_art_v2", + "contract_address": "0xb6dae651468e9593e4581705a09c10a76ac1e0c8", + "n_transfers": 1545 + }, + { + "name": "", + "contract_address": "0x43d29d6dc3346a812b10b572ffb52fc7668bf8ba", + "n_transfers": 1530 + }, + { + "name": "", + "contract_address": "0xec14118e58d545cf02fa617930ce8741c4089b66", + "n_transfers": 1522 + }, + { + "name": "", + "contract_address": "0x555b93d60faaa1abec6a1c57c1d217cbeeb91619", + "n_transfers": 1463 + }, + { + "name": "", + "contract_address": "0x07925fbd9a9bad7f7ccad02353d0fe24b99aabb2", + "n_transfers": 1460 + }, + { + "name": "", + "contract_address": "0xb06ece7b0d5399ea0c381985f69585fdc355c5e4", + "n_transfers": 1433 + }, + { + "name": "", + "contract_address": "0x85773c1d866c89ca0b7c700f27e95a028a46b9e3", + "n_transfers": 1426 + }, + { + "name": "", + "contract_address": "0xbdaed67214641b7eda3bf8d7431c3ae5fc46f466", + "n_transfers": 1406 + }, + { + "name": "", + "contract_address": "0xc3af02c0fd486c8e9da5788b915d6fff3f049866", + "n_transfers": 1398 + }, + { + "name": "", + "contract_address": "0x1be5895fa928d271d4a1ede465bff091c91cef06", + "n_transfers": 1391 + }, + { + "name": "", + "contract_address": "0x3bce91b13f51fca65cb1ea8dd39bb2d39d4f8824", + "n_transfers": 1384 + }, + { + "name": "", + "contract_address": "0x3b58992492afdbe8cb3366ef967bbbb1da98fe88", + "n_transfers": 1381 + }, + { + "name": "", + "contract_address": "0x25741f5f2dbdde9cfd38f73be7052ec03b0e9d85", + "n_transfers": 1374 + }, + { + "name": "", + "contract_address": "0xaefc66bf4c64b5df1e12a8fbd3f7f86ee9bb590d", + "n_transfers": 1373 + }, + { + "name": "", + "contract_address": "0xed098dea07ee0060a80eba5e0b29083b1868119b", + "n_transfers": 1338 + }, + { + "name": "", + "contract_address": "0x38957b95ba3da5329acd660debaac1e72fa5c2f1", + "n_transfers": 1307 + }, + { + "name": "", + "contract_address": "0x2f1d835fdc8b59e03828d9b7f0b91b046b40f5bc", + "n_transfers": 1289 + }, + { + "name": "", + "contract_address": "0x478059f577cb739f0af0f37a365dd069ba5bd8be", + "n_transfers": 1282 + }, + { + "name": "", + "contract_address": "0xecf073f91101ce5628669c487aee8f5822a101b1", + "n_transfers": 1264 + }, + { + "name": "", + "contract_address": "0xe705a0ec17735f1d4d72f0bd2e1421fc4a95ea26", + "n_transfers": 1241 + }, + { + "name": "", + "contract_address": "0xd4e4078ca3495de5b1d4db434bebc5a986197782", + "n_transfers": 1239 + }, + { + "name": "", + "contract_address": "0x985af49e515488c6556e3d9d24d464ce95ea3088", + "n_transfers": 1235 + }, + { + "name": "", + "contract_address": "0x65d5b6c0381496bb09b5e85b58a8bc326c322fbe", + "n_transfers": 1230 + }, + { + "name": "", + "contract_address": "0xcb9ebae59738d9dadc423adbde66c018777455a4", + "n_transfers": 1229 + }, + { + "name": "", + "contract_address": "0xcae3c92a6d4b6520e00eedeada982261332d9494", + "n_transfers": 1209 + }, + { + "name": "", + "contract_address": "0xac92356226e31fe91810e48c0706daccf9cfe467", + "n_transfers": 1188 + }, + { + "name": "", + "contract_address": "0x0574c34385b039c2bb8db898f61b7767024a9449", + "n_transfers": 1177 + }, + { + "name": "", + "contract_address": "0xe498ec1aff3c1460f6a818826443fd2a7817e775", + "n_transfers": 1167 + }, + { + "name": "", + "contract_address": "0xdf74156420bd57ab387b195ed81eca36f9fabaca", + "n_transfers": 1161 + }, + { + "name": "", + "contract_address": "0x102c527714ab7e652630cac7a30abb482b041fd0", + "n_transfers": 1158 + }, + { + "name": "", + "contract_address": "0x86f76990b265cd5c9789b556d6fe3f8e7f909674", + "n_transfers": 1157 + }, + { + "name": "", + "contract_address": "0x74cb086a1611cc9ca672f458b7742dd4159ac9db", + "n_transfers": 1153 + }, + { + "name": "", + "contract_address": "0x9f2a7b5e6280727cd6c8486f5f96e5f76164f2df", + "n_transfers": 1146 + }, + { + "name": "", + "contract_address": "0x8aec2951a4368d5a30a17bf111cfae3f9ee403da", + "n_transfers": 1125 + }, + { + "name": "", + "contract_address": "0xb91c1aa27a2eb25228b5d1019ec6b24fe73c5535", + "n_transfers": 1120 + }, + { + "name": "async", + "contract_address": "0x6c424c25e9f1fff9642cb5b7750b0db7312c29ad", + "n_transfers": 1095 + }, + { + "name": "", + "contract_address": "0xcb35d14759e2931022c7315f53e37cdcd38e570c", + "n_transfers": 1065 + }, + { + "name": "", + "contract_address": "0x9fba80caf2df0cdded4628f1755d035bcd20c9d2", + "n_transfers": 1057 + }, + { + "name": "", + "contract_address": "0x452b2bc7c94515720b36d304ce33909a8323f3e3", + "n_transfers": 1055 + }, + { + "name": "", + "contract_address": "0xdd8834bf87a5762671acb2a1e30f5aced0b118f7", + "n_transfers": 1041 + }, + { + "name": "", + "contract_address": "0x0bfa7d593b7a0812f4d11459e77ee868527f53b4", + "n_transfers": 1034 + }, + { + "name": "", + "contract_address": "0xa8ee490e4c4da48cc1653502c1a77479d4d818de", + "n_transfers": 1030 + }, + { + "name": "", + "contract_address": "0xe399ec27087f4256dc55bad22550ca4660380d73", + "n_transfers": 1018 + }, + { + "name": "", + "contract_address": "0x60f3680350f65beb2752788cb48abfce84a4759e", + "n_transfers": 1013 + }, + { + "name": "", + "contract_address": "0x6d225d3b813fd7ae8d4a2e8dab01d50d500fcd6f", + "n_transfers": 1007 + }, + { + "name": "", + "contract_address": "0xec6c17475a732e3800d744ce3aa514a4ca40f100", + "n_transfers": 1000 + }, + { + "name": "", + "contract_address": "0x34d77a17038491a2a9eaa6e690b7c7cd39fc8392", + "n_transfers": 999 + }, + { + "name": "", + "contract_address": "0x0cf74f8414db9db05fc940adbb7b6a02a693365d", + "n_transfers": 995 + }, + { + "name": "", + "contract_address": "0x338c8a4ff27f1d03165c037f762c598f08176c6c", + "n_transfers": 995 + }, + { + "name": "", + "contract_address": "0x87d598064c736dd0c712d329afcfaa0ccc1921a1", + "n_transfers": 973 + }, + { + "name": "", + "contract_address": "0x14c4293d7e7325cec8c52cea3df37d91aa9cc7b6", + "n_transfers": 970 + }, + { + "name": "", + "contract_address": "0x0ae360ce5d263936beb3f59ecf74959014d2abf4", + "n_transfers": 956 + }, + { + "name": "", + "contract_address": "0x4fe99deb8f0be517c31faaad49b4b054ed28c267", + "n_transfers": 951 + }, + { + "name": "", + "contract_address": "0xc44a3f0da9a112c662e6da05448defc8ba80f6da", + "n_transfers": 940 + }, + { + "name": "", + "contract_address": "0x79f75e9f93f89d33c20573dec03710c6d9ec538d", + "n_transfers": 930 + }, + { + "name": "", + "contract_address": "0x7c37463aa592c85c56069dc6d00685cd09b6a719", + "n_transfers": 929 + }, + { + "name": "", + "contract_address": "0xa4aafcf015b281bee2833f69563a5593142bfd9a", + "n_transfers": 918 + }, + { + "name": "", + "contract_address": "0x3cd41ec039c1f2dd1f76144bb3722e7b503f50ab", + "n_transfers": 915 + }, + { + "name": "", + "contract_address": "0x52508b1cd8cdf6e79d846af0aed43d8e126493b3", + "n_transfers": 914 + }, + { + "name": "", + "contract_address": "0x7dc8ffd9020d3e91aab2aebea2edb390f8da927c", + "n_transfers": 909 + }, + { + "name": "", + "contract_address": "0xd90183850d1e1908ed8012ac9c9a7b1b23a991a3", + "n_transfers": 900 + }, + { + "name": "", + "contract_address": "0xee52c053e091e8382902e7788ac27f19bbdfeedc", + "n_transfers": 898 + }, + { + "name": "", + "contract_address": "0xa1eb40c284c5b44419425c4202fa8dabff31006b", + "n_transfers": 881 + }, + { + "name": "", + "contract_address": "0xc8197ca043696527f357905885d51878aa3d835b", + "n_transfers": 878 + }, + { + "name": "", + "contract_address": "0xd3d427d5c2cf01f8dc1777b27719b1d4ce369484", + "n_transfers": 875 + }, + { + "name": "", + "contract_address": "0xe8d42eb7358d8ee306cf6916aae5b2367d1fed46", + "n_transfers": 870 + }, + { + "name": "", + "contract_address": "0x760478dd60aa995d275a84d05fcab8addc0f2468", + "n_transfers": 867 + }, + { + "name": "", + "contract_address": "0xf99e640ead36e9128d0aeb421b76bbd02a051358", + "n_transfers": 867 + }, + { + "name": "", + "contract_address": "0xb62b330a1b1ed55feb93296f89ea7679c4e0c36c", + "n_transfers": 863 + }, + { + "name": "", + "contract_address": "0x69c1ca6a60fc703ea5f48d37f08cace6cb0a4a6f", + "n_transfers": 856 + }, + { + "name": "", + "contract_address": "0x2b9e44d466a9289da3ab23b11d17bf9140937c0e", + "n_transfers": 854 + }, + { + "name": "", + "contract_address": "0x3f4a14b2a23bd40944d9d316cdda2c74944c2646", + "n_transfers": 849 + }, + { + "name": "", + "contract_address": "0xe072aa2b0d39587a08813391e84495971a098084", + "n_transfers": 833 + }, + { + "name": "", + "contract_address": "0xe0617344d04825695df9a68a87b7c478620f0827", + "n_transfers": 831 + }, + { + "name": "", + "contract_address": "0x0593c32295d2a3848e873669ef0ec5d27d7360cc", + "n_transfers": 829 + }, + { + "name": "", + "contract_address": "0xfa364fabcb746e993249ae0780616d4f2c575d88", + "n_transfers": 826 + }, + { + "name": "", + "contract_address": "0xd6e68a5e3f7db9980ba26e0ed8d32e231f510752", + "n_transfers": 825 + }, + { + "name": "", + "contract_address": "0x638581a33b2e07663894a7f02f2b330dad6efedf", + "n_transfers": 824 + }, + { + "name": "", + "contract_address": "0xb5c461ae792ae429fa175450e1d2af7f494ea20f", + "n_transfers": 818 + }, + { + "name": "", + "contract_address": "0x2c04e6dd23c33a66f58dfb79dfb15285336c92d0", + "n_transfers": 809 + }, + { + "name": "", + "contract_address": "0xe550b04bdf2fac06e4124d731ebe645645b03e06", + "n_transfers": 802 + }, + { + "name": "", + "contract_address": "0x51c8d180ffa4c81dfe719c162c935444530a8f73", + "n_transfers": 802 + }, + { + "name": "", + "contract_address": "0x9b1aa69fe9fca10aa41250bba054aabd92aba5b6", + "n_transfers": 779 + }, + { + "name": "", + "contract_address": "0xd98db983fa7cbd21fd24ac84c9aca430191309c2", + "n_transfers": 778 + }, + { + "name": "", + "contract_address": "0xa8ab48dd7aa051243788d4e96157303f2f52ecca", + "n_transfers": 773 + }, + { + "name": "rarible_v1", + "contract_address": "0x33859e4c083544e506712984b81ea3f3b551bc16", + "n_transfers": 761 + }, + { + "name": "", + "contract_address": "0xe2f5349616fda0c35f6c66a14b6256e30dac066e", + "n_transfers": 754 + }, + { + "name": "", + "contract_address": "0x582c779b876151a3c3c193b915558ebdc018d44a", + "n_transfers": 751 + }, + { + "name": "", + "contract_address": "0xc6c11f32d3ccc3beaac68793bc3bfbe82838ca9f", + "n_transfers": 750 + }, + { + "name": "", + "contract_address": "0x797ce6d5a2e4ba7ed007b01a42f797a050a3cbd8", + "n_transfers": 747 + }, + { + "name": "", + "contract_address": "0x44e6885fb27d3c29282ab4c14c3eb0402a08692f", + "n_transfers": 739 + }, + { + "name": "", + "contract_address": "0x8d7dd7b604b4e0a8dd3cc343522caa2aa426e6e7", + "n_transfers": 734 + }, + { + "name": "", + "contract_address": "0xfa69031b8f84ade91d1fac52148363842637699a", + "n_transfers": 728 + }, + { + "name": "", + "contract_address": "0x201c3af8c471e5842428b74d1e7c0249adda2a92", + "n_transfers": 725 + }, + { + "name": "", + "contract_address": "0x8e44ebb62ef1d1191eda8e5f1cb2ffc279182c5b", + "n_transfers": 719 + }, + { + "name": "", + "contract_address": "0xd92e44ac213b9ebda0178e1523cc0ce177b7fa96", + "n_transfers": 702 + }, + { + "name": "", + "contract_address": "0xd7431870ada2f9f0053180610974f63bf8e9f504", + "n_transfers": 689 + }, + { + "name": "", + "contract_address": "0xb9b5d9c3325b5d68ebe923362e98d4f65e6a0b43", + "n_transfers": 682 + }, + { + "name": "nftfi", + "contract_address": "0x88341d1a8f672d2780c8dc725902aae72f143b0c", + "n_transfers": 679 + }, + { + "name": "", + "contract_address": "0x29a6eb0cb18a372165b210e6a14df9865d915562", + "n_transfers": 675 + }, + { + "name": "", + "contract_address": "0x03687ab12c43291bd9aa171f051cc1691b001952", + "n_transfers": 668 + }, + { + "name": "", + "contract_address": "0xc22395d3f39715ca966bebd5489d5303b29b93df", + "n_transfers": 664 + }, + { + "name": "", + "contract_address": "0xebf3fc33acf713a6f1a8af3e24cb0f8c09d3391c", + "n_transfers": 661 + }, + { + "name": "", + "contract_address": "0xdb7e971d39367b20bcf4df5ae2da0fa4261bf0e8", + "n_transfers": 652 + }, + { + "name": "", + "contract_address": "0xa98ad92a642570b83b369c4eb70efefe638bc895", + "n_transfers": 651 + }, + { + "name": "", + "contract_address": "0x69e92c16b66020e6c22bb6e478c6dcebb72f8b70", + "n_transfers": 650 + }, + { + "name": "", + "contract_address": "0xc639246eb3758349846e1fbbd2eeb77fbcc13c77", + "n_transfers": 645 + }, + { + "name": "", + "contract_address": "0xedd190d250c752baf6c96d77e2a678b1b0c2b42e", + "n_transfers": 641 + }, + { + "name": "", + "contract_address": "0x1eac31a0b93e81bd093d116f5d36a83be08f381b", + "n_transfers": 639 + }, + { + "name": "", + "contract_address": "0x5f98960e48ecf39f6628537ef899b4afd46a79b5", + "n_transfers": 639 + }, + { + "name": "", + "contract_address": "0xbcd4f1ecff4318e7a0c791c7728f3830db506c71", + "n_transfers": 631 + }, + { + "name": "rarible_v1", + "contract_address": "0xdbb163b22e839a26d2a5011841cb4430019020f9", + "n_transfers": 622 + }, + { + "name": "", + "contract_address": "0x252e26f83c7399bff2c6fb721a481f9fa5b3595e", + "n_transfers": 620 + }, + { + "name": "", + "contract_address": "0x111af6ff13d9b251488b6cd5b299f9773b2d16eb", + "n_transfers": 615 + }, + { + "name": "", + "contract_address": "0x6857853cf694d27844d74e0d8d9d68a1665b615b", + "n_transfers": 614 + }, + { + "name": "", + "contract_address": "0x4f1a2d9d1cb092074d87b8d74771738564288927", + "n_transfers": 609 + }, + { + "name": "", + "contract_address": "0x1b4bf8dac12119519730ac8373693f03d72ff9d4", + "n_transfers": 607 + }, + { + "name": "", + "contract_address": "0x4164692f986daea213ba582cfed9ec1155462107", + "n_transfers": 606 + }, + { + "name": "", + "contract_address": "0xf7f02f6fc1604bd7eed6a400d049ed0d8bae175d", + "n_transfers": 603 + }, + { + "name": "", + "contract_address": "0xca3d14e2bf039cad957c9fb7a4909e902a1572aa", + "n_transfers": 602 + }, + { + "name": "", + "contract_address": "0xeca5209b63bb16447b9deb7559c56b88251e90ce", + "n_transfers": 601 + }, + { + "name": "", + "contract_address": "0x9048583bd410526ca16f0d270a5836dbdea92033", + "n_transfers": 593 + }, + { + "name": "", + "contract_address": "0x58ac02a37dafbb0ea06f5d1590ac450713a417c6", + "n_transfers": 589 + }, + { + "name": "", + "contract_address": "0x38e908b70c8e0dcfe452c0fb2ebf432f9c5a6f20", + "n_transfers": 589 + }, + { + "name": "", + "contract_address": "0x4c100f1e9178f209dc99575f315be1ef99330dd3", + "n_transfers": 584 + }, + { + "name": "", + "contract_address": "0x1986f4c2e3ad5fe9778da67b1b836cf53b9e20cd", + "n_transfers": 580 + }, + { + "name": "", + "contract_address": "0xa3d23c04992d740cdfd6ee8d2076c1a0220b672f", + "n_transfers": 579 + }, + { + "name": "", + "contract_address": "0x845727ad971f2a177fe5548c576779c0ded9dc86", + "n_transfers": 578 + }, + { + "name": "", + "contract_address": "0xa9354f07c3e9bc1e3effbdf790a0b6dc05a46af8", + "n_transfers": 578 + }, + { + "name": "unlock", + "contract_address": "0xb9a6f2ff16812e9ad7e1f759fca4ecd7a3ab74e4", + "n_transfers": 571 + }, + { + "name": "", + "contract_address": "0x45862289631b8935dc124ea26e035eee03bc8382", + "n_transfers": 566 + }, + { + "name": "", + "contract_address": "0xa2c87d8a9de14114d56067832173e21cf105eca4", + "n_transfers": 565 + }, + { + "name": "", + "contract_address": "0x72ada42494f4080a02847f6630f1d90af4498124", + "n_transfers": 563 + }, + { + "name": "", + "contract_address": "0x71ab9600ec179c6a8f3e43c866a5c74265f1bce4", + "n_transfers": 563 + }, + { + "name": "", + "contract_address": "0x595f279de4b5df1e47ca55b65175d8a9a935a0fa", + "n_transfers": 561 + }, + { + "name": "", + "contract_address": "0x3f8ed9e2fb9cce3b375b5cb594aa1046f630277a", + "n_transfers": 558 + }, + { + "name": "", + "contract_address": "0xd6dd2578d8a5e02e276a1100be4ccf74979bd21a", + "n_transfers": 555 + }, + { + "name": "", + "contract_address": "0xbe40c0b67d03798948309f6f42874fadf25c07ab", + "n_transfers": 555 + }, + { + "name": "", + "contract_address": "0x0dfe79ab44f8f194f0475d9e78e6ef80935e173f", + "n_transfers": 554 + }, + { + "name": "", + "contract_address": "0x024008f43b1956e111cdb88a76b517cb4b241c7e", + "n_transfers": 551 + }, + { + "name": "", + "contract_address": "0x3163d2cfee3183f9874e2869942cc62649eeb004", + "n_transfers": 550 + }, + { + "name": "", + "contract_address": "0xc563b7d10c04c1e1ffccbfa31cb3d67b9698aa8a", + "n_transfers": 547 + }, + { + "name": "", + "contract_address": "0x682575b74a00ff87f74fc5f83c34220de50102ba", + "n_transfers": 545 + }, + { + "name": "", + "contract_address": "0x057eecc85ba8caaa66497e70fa7babed4bef2bb7", + "n_transfers": 544 + }, + { + "name": "", + "contract_address": "0xbc0a833e4e24e96bf35d1d0e6b07d779fdc4c482", + "n_transfers": 543 + }, + { + "name": "", + "contract_address": "0x5d7ca4bbb351f9f69ef9bcb057c54f3faa9be4d5", + "n_transfers": 539 + }, + { + "name": "", + "contract_address": "0xc1eab49cf9d2e23e43bcf23b36b2be14fc2f8838", + "n_transfers": 539 + }, + { + "name": "", + "contract_address": "0x094634cf5ec4b34b7f47bcb2c03c1c9f48e1ece8", + "n_transfers": 535 + }, + { + "name": "", + "contract_address": "0xef44211de3759d8df16db9b88929344cf8a79c7e", + "n_transfers": 535 + }, + { + "name": "", + "contract_address": "0x23766996636058b41a041d441ce1217c694f5aa9", + "n_transfers": 534 + }, + { + "name": "", + "contract_address": "0x16b9805a107d0c2803d1f995f68379b975a970d2", + "n_transfers": 534 + }, + { + "name": "", + "contract_address": "0xb9abb6e7fdc06fe25ac96d3da1c3ef4651ec660a", + "n_transfers": 533 + }, + { + "name": "", + "contract_address": "0xf4ab96fb50089329805ea1375a3fab408720bd02", + "n_transfers": 531 + }, + { + "name": "", + "contract_address": "0x02e3bb30532e75f6478538866077bce1b342bdda", + "n_transfers": 530 + }, + { + "name": "", + "contract_address": "0xecf7ef42b57ee37a959bf507183c5dd6bf182081", + "n_transfers": 528 + }, + { + "name": "", + "contract_address": "0xc328520a8b1cead2489d59c16b7752cb60ebb53d", + "n_transfers": 527 + }, + { + "name": "", + "contract_address": "0x4e45e92ed38f885d39a733c14f1817217a89d425", + "n_transfers": 526 + }, + { + "name": "", + "contract_address": "0x0609315d798409bd6b358e49f8b2cd2e973abbf2", + "n_transfers": 523 + }, + { + "name": "", + "contract_address": "0xa2d544196fdbc9da15a701c38bb60513c1802ef4", + "n_transfers": 523 + }, + { + "name": "", + "contract_address": "0x08ffa05e1f22e3081914af04e3c093385c7bbaa7", + "n_transfers": 523 + }, + { + "name": "", + "contract_address": "0x9effec6d600ea9ac54757882da1accd79e292e50", + "n_transfers": 518 + }, + { + "name": "", + "contract_address": "0xee9e8e7246c110fac842b2ce8bab2c0c842768cd", + "n_transfers": 515 + }, + { + "name": "", + "contract_address": "0x6a14cbe969b3452d2e4d9280cd474cc47d15022c", + "n_transfers": 513 + }, + { + "name": "", + "contract_address": "0xf71254147ab04be7bc7efd109641f0792de23af1", + "n_transfers": 512 + }, + { + "name": "", + "contract_address": "0x32fcff64d426d017deec541557bec47358be53f2", + "n_transfers": 509 + }, + { + "name": "", + "contract_address": "0xc5802bcf619301bdc6b1b9eda4b6fd26e63339af", + "n_transfers": 508 + }, + { + "name": "", + "contract_address": "0x76f71dcfd0bd0dbeb0ffc7decd0b327cb7dfdc84", + "n_transfers": 508 + }, + { + "name": "", + "contract_address": "0x35a397b958691f6f27d2f7eb0138a3fd4556393a", + "n_transfers": 505 + }, + { + "name": "", + "contract_address": "0x66efd47948fbbb19a9d2a6fd4124a35b26c19825", + "n_transfers": 504 + }, + { + "name": "", + "contract_address": "0x9201a886740d193e315f1f1b2b193321d6701d07", + "n_transfers": 504 + }, + { + "name": "", + "contract_address": "0xed69dc91ff6af9c28c345ce1e66c0b9648b50dd2", + "n_transfers": 503 + }, + { + "name": "", + "contract_address": "0x7f6477f2f67987a8bf03813e0b4d63dea8ba062f", + "n_transfers": 503 + }, + { + "name": "", + "contract_address": "0x6c0db75e2b5756081e93e1bcebb1a7560cbbb6d1", + "n_transfers": 502 + }, + { + "name": "", + "contract_address": "0x97575aa6364bb5f452d5b297ce74922c84621848", + "n_transfers": 500 + }, + { + "name": "", + "contract_address": "0xba93d60303a1c049ea7ce0b87a3a274ced5e2f09", + "n_transfers": 499 + }, + { + "name": "", + "contract_address": "0xbbbd7aebd29360a34cea492e012b9a2119ded306", + "n_transfers": 496 + }, + { + "name": "", + "contract_address": "0x25c0d8402e55f49afa65a121fe421ba92e1981bd", + "n_transfers": 495 + }, + { + "name": "rarible", + "contract_address": "0x71aaeb055fbd9ad073313408513f875ce7d7451f", + "n_transfers": 495 + }, + { + "name": "", + "contract_address": "0xce53b468d40a5208e7fcc8a4b589ebe0309ba030", + "n_transfers": 492 + }, + { + "name": "", + "contract_address": "0x4e01124b127ae8d0573efc4a026d9d7505fcd5bb", + "n_transfers": 490 + }, + { + "name": "", + "contract_address": "0x56b24ac7d1060d67785d8c9dddf74d86953f81e5", + "n_transfers": 489 + }, + { + "name": "", + "contract_address": "0xc707d91f2205a507e36ea9dce1ed8a7bd2dc6ab2", + "n_transfers": 487 + }, + { + "name": "", + "contract_address": "0x42ea135d8e9e90657d6d5f715f59794c68be7f17", + "n_transfers": 481 + }, + { + "name": "", + "contract_address": "0xdcc0ca8ffe623c2ee98055eba7b0e0bad0ae39b0", + "n_transfers": 479 + }, + { + "name": "", + "contract_address": "0x5960d764f709607a3c53519d643dee05fa1a988d", + "n_transfers": 474 + }, + { + "name": "", + "contract_address": "0x75a3752579dc2d63ca229eebbe3537fbabf85a12", + "n_transfers": 473 + }, + { + "name": "rarible", + "contract_address": "0xf5dee1416988ec404000c6d8626910ecb3f62d6c", + "n_transfers": 472 + }, + { + "name": "", + "contract_address": "0x1702bea2755d076adf737b785926b086eff36f75", + "n_transfers": 471 + }, + { + "name": "", + "contract_address": "0xbfb69918f12eed843c67058b2ee9059f1440133e", + "n_transfers": 470 + }, + { + "name": "", + "contract_address": "0x2287bd440a11c4585058fdc090455786130f49bf", + "n_transfers": 469 + }, + { + "name": "", + "contract_address": "0x53a01bdb3bc797b7738722d0e4cde7884aa21252", + "n_transfers": 469 + }, + { + "name": "", + "contract_address": "0x7a5a2e24a256005d25389b0efb9f0d97b8cb8647", + "n_transfers": 465 + }, + { + "name": "", + "contract_address": "0xb3cdd92323fbbd4f089e9fc73de11bf2bda56061", + "n_transfers": 457 + }, + { + "name": "", + "contract_address": "0x1e1d4e6262787c8a8783a37fee698bd42aa42bec", + "n_transfers": 456 + }, + { + "name": "", + "contract_address": "0x18ad63858b9f7fdb7903d803fea2a25fe760177c", + "n_transfers": 455 + }, + { + "name": "", + "contract_address": "0xbf53c33235cbfc22cef5a61a83484b86342679c5", + "n_transfers": 447 + }, + { + "name": "", + "contract_address": "0xe1cfebe395d6c2b4a242efce330b1505158c1959", + "n_transfers": 443 + }, + { + "name": "", + "contract_address": "0x595078d21c7659194757a64f347fb783cae5d323", + "n_transfers": 442 + }, + { + "name": "", + "contract_address": "0xd2cd254f7d42c68e1992369a47d7b47afd578109", + "n_transfers": 439 + }, + { + "name": "", + "contract_address": "0x0ffdc572adb049942e768e01bce65500741827a5", + "n_transfers": 438 + }, + { + "name": "", + "contract_address": "0x218f7bede2349a3a25b2ab688b9553e602e5f95b", + "n_transfers": 436 + }, + { + "name": "", + "contract_address": "0xc7ebc45a82c4e3456152f79d4f213bac836de630", + "n_transfers": 435 + }, + { + "name": "rarible", + "contract_address": "0x36ba769a5dad72a7a1add8a4b22eb407093b5f8d", + "n_transfers": 433 + }, + { + "name": "", + "contract_address": "0xf101430f3c4295958a06b8366e7a097596f2d612", + "n_transfers": 432 + }, + { + "name": "", + "contract_address": "0xb65a74b1bb0b8e4d38e2593e9216ad8c4fd8622a", + "n_transfers": 430 + }, + { + "name": "", + "contract_address": "0x6c7b6cc55d4098400ac787c8793205d3e86c37c9", + "n_transfers": 429 + }, + { + "name": "", + "contract_address": "0xce890b99a8987145b3bac7f5eba4a8bda8f0989b", + "n_transfers": 427 + }, + { + "name": "", + "contract_address": "0x84ac94f17622241f313511b629e5e98f489ad6e4", + "n_transfers": 427 + }, + { + "name": "", + "contract_address": "0xd650282641b033555f9fadc3947914f25635889a", + "n_transfers": 424 + }, + { + "name": "", + "contract_address": "0xe5dd92b6110e58ff46cfb174bc190bd9c1166998", + "n_transfers": 423 + }, + { + "name": "", + "contract_address": "0xc6a422a9b44080a550c11c7c21024a13d302705f", + "n_transfers": 419 + }, + { + "name": "", + "contract_address": "0x2fb704d243cfa179ffad4d87acb1d36bcf243a44", + "n_transfers": 418 + }, + { + "name": "", + "contract_address": "0x068138ad82a83cb4cb91abea810b13e95fb2872c", + "n_transfers": 417 + }, + { + "name": "", + "contract_address": "0x4334092242deea8b5d7fa025324b6509c7778846", + "n_transfers": 415 + }, + { + "name": "", + "contract_address": "0x4ee4d45620c2ed1a46d5ad1555bb79166f6cf34d", + "n_transfers": 414 + }, + { + "name": "", + "contract_address": "0x46baaa893766dd282868052b69caf8b503c90a6e", + "n_transfers": 410 + }, + { + "name": "", + "contract_address": "0x580a29fa60b86aaff102743de5cba60bb5f9de75", + "n_transfers": 410 + }, + { + "name": "", + "contract_address": "0x30a2fa3c93fb9f93d1efeffd350c6a6bb62ba000", + "n_transfers": 409 + }, + { + "name": "", + "contract_address": "0xe82ec4b42e78f67118443c1be824b07b5a8e5716", + "n_transfers": 408 + }, + { + "name": "", + "contract_address": "0x1073c94a9c54165a8b8de32a6ff0204bbf3fcf6c", + "n_transfers": 408 + }, + { + "name": "rarible", + "contract_address": "0x772f52ca0cf135462a334a1e5a990047ad046b6a", + "n_transfers": 406 + }, + { + "name": "", + "contract_address": "0x7f556e211a3e4b57d005d3aa49a31306fa8bb34d", + "n_transfers": 405 + }, + { + "name": "", + "contract_address": "0x0b2a13bc4a09bf1ee822964c3619f79791719ec0", + "n_transfers": 401 + }, + { + "name": "", + "contract_address": "0x743e27e367419d3f50855894889da135a716464e", + "n_transfers": 400 + }, + { + "name": "", + "contract_address": "0xf85c874ea05e2225982b48c93a7c7f701065d91e", + "n_transfers": 397 + }, + { + "name": "", + "contract_address": "0xa295cfc86e2d40f7b7036a36a976b598c80671bc", + "n_transfers": 397 + }, + { + "name": "", + "contract_address": "0x8cb469548c9680ed26e522a5bfd429e1f713f190", + "n_transfers": 396 + }, + { + "name": "", + "contract_address": "0xff9315c2c4c0208edb5152f4c4ebec75e74010c5", + "n_transfers": 392 + }, + { + "name": "", + "contract_address": "0xc4b44d900ea6a8b8e3dd712a89681a546f5e63b5", + "n_transfers": 391 + }, + { + "name": "", + "contract_address": "0x51c0839d38dc4d738efe13193ff7474f6672491e", + "n_transfers": 382 + }, + { + "name": "", + "contract_address": "0x753c3a8567311c8673182847f5e390d960a1e4d0", + "n_transfers": 382 + }, + { + "name": "", + "contract_address": "0xa78c17921e7e060c246ac9575b01ff0fb29bceae", + "n_transfers": 382 + }, + { + "name": "", + "contract_address": "0x162d3e80d51f96240ae0a44ab3a5b1ea23920ce4", + "n_transfers": 381 + }, + { + "name": "", + "contract_address": "0xcf719ea0525989ef1ed9522c8bbc6df4ff79144b", + "n_transfers": 380 + }, + { + "name": "", + "contract_address": "0xea3a1ac3aad24e0777288b984ff2498d2b53ca97", + "n_transfers": 378 + }, + { + "name": "", + "contract_address": "0x1c7f4a0b2ce9017d0055671c8563e8c80eccc6a5", + "n_transfers": 376 + }, + { + "name": "", + "contract_address": "0x383d66e7e66b388b754a24bc0325f1f6a168548e", + "n_transfers": 375 + }, + { + "name": "", + "contract_address": "0xd97bf331041207c4e4fb95964be7d4819f1ac157", + "n_transfers": 375 + }, + { + "name": "", + "contract_address": "0x9680223f7069203e361f55fefc89b7c1a952cdcc", + "n_transfers": 374 + }, + { + "name": "", + "contract_address": "0xd2b27bdecdae910db1983d1d67b5f7404339284f", + "n_transfers": 373 + }, + { + "name": "", + "contract_address": "0x9a2b38227b28ddd7d683f1801dd43444c090867b", + "n_transfers": 370 + }, + { + "name": "", + "contract_address": "0xb0114bbdce17e0af91b2be32916a1e236cf6034f", + "n_transfers": 369 + }, + { + "name": "", + "contract_address": "0x1f73e1ef90a0c54ab81b0dc14035a83137507822", + "n_transfers": 367 + }, + { + "name": "", + "contract_address": "0x502c4bfdab2d5bc84f01e6fcc2b5be38261ab63d", + "n_transfers": 365 + }, + { + "name": "", + "contract_address": "0xe81a782e6a7e230dcfa15033d17ce2f73ae8577d", + "n_transfers": 363 + }, + { + "name": "", + "contract_address": "0xc9a1757a52f2e87a2144c8b8ec9cb075c8b50b35", + "n_transfers": 360 + }, + { + "name": "", + "contract_address": "0xc04528c14c8ffd84c7c1fb6719b4a89853035cdd", + "n_transfers": 358 + }, + { + "name": "", + "contract_address": "0x7fc7ae92e1f531ba4da70823d24771392f5fd62b", + "n_transfers": 357 + }, + { + "name": "", + "contract_address": "0x2d625b7bcaeedf1bc75f6e90dc37eddd20ce413b", + "n_transfers": 355 + }, + { + "name": "", + "contract_address": "0xddc711f9e9152a1d8d4a38ee2903ac8ce912ca3f", + "n_transfers": 355 + }, + { + "name": "", + "contract_address": "0x82c7a8f707110f5fbb16184a5933e9f78a34c6ab", + "n_transfers": 355 + }, + { + "name": "", + "contract_address": "0xe6f08bd01e12ca0cdadaea0848590b30b6f57faa", + "n_transfers": 354 + }, + { + "name": "", + "contract_address": "0x6d2208aac56b97d222092da900a42ed5f1e7e12e", + "n_transfers": 353 + }, + { + "name": "", + "contract_address": "0x37348dafbde50426acee323b1d091321f5719b9c", + "n_transfers": 351 + }, + { + "name": "", + "contract_address": "0xbabb4d573b791fd94a5a51be1074b1e64cca97c3", + "n_transfers": 347 + }, + { + "name": "", + "contract_address": "0xb8d1098d65e60881ef540402e59f352a177b8ce4", + "n_transfers": 346 + }, + { + "name": "", + "contract_address": "0xc0d60341cb0ba6ac6ddcd2858e9f3d5c8fe6c45e", + "n_transfers": 343 + }, + { + "name": "rarible", + "contract_address": "0x40f14fadea10daab99214368dcde893300ecdbce", + "n_transfers": 342 + }, + { + "name": "rarible", + "contract_address": "0x64ba65ec863cb7db28c513f53804d9c4d56c14f2", + "n_transfers": 341 + }, + { + "name": "", + "contract_address": "0x0ac4b59aa9c320e556a1e19176ef61eebdfacd25", + "n_transfers": 339 + }, + { + "name": "", + "contract_address": "0x91c3373f6e49bcc9ff313572493c77e8aaa752b8", + "n_transfers": 339 + }, + { + "name": "", + "contract_address": "0xe73c9d94a542b1708450e13d12d4b38204dfd72c", + "n_transfers": 338 + }, + { + "name": "", + "contract_address": "0xf22d2e0c2f891ea55e16473c98161df020924642", + "n_transfers": 336 + }, + { + "name": "", + "contract_address": "0xecf1607512ad6c3723991ddcaa1b17d821554a05", + "n_transfers": 336 + }, + { + "name": "", + "contract_address": "0x292091f534eb5858d998f44b5085e2b7dc803695", + "n_transfers": 333 + }, + { + "name": "", + "contract_address": "0xb96697fa4a3361ba35b774a42c58daccaad1b8e1", + "n_transfers": 333 + }, + { + "name": "", + "contract_address": "0x789a9f9c648f9ff0f1888b4cf5b8afd51eb2408b", + "n_transfers": 332 + }, + { + "name": "", + "contract_address": "0x836a5ffadaab8e6131417abcbb41ed61fdd24dc2", + "n_transfers": 331 + }, + { + "name": "", + "contract_address": "0xfdda51b074d2213b5976396d8db36d48071646bd", + "n_transfers": 330 + }, + { + "name": "", + "contract_address": "0xfd75a1d3398ca4ae176eb1faa58b295a0d1f1498", + "n_transfers": 329 + }, + { + "name": "", + "contract_address": "0xa97b23e944d56a5063cb018eb14ca11ff0c1c1f7", + "n_transfers": 328 + }, + { + "name": "", + "contract_address": "0x8b802e9a4a1e16159661817707e3601cda30f6b7", + "n_transfers": 326 + }, + { + "name": "", + "contract_address": "0x951b0d7c1e4f10567d1ebcad1daa91d96ddaac4a", + "n_transfers": 326 + }, + { + "name": "", + "contract_address": "0xe9e3f9cfc1a64dfca53614a0182cfad56c10624f", + "n_transfers": 326 + }, + { + "name": "", + "contract_address": "0xda23de319ff844b4e8ec33092d803c6123b2e2e6", + "n_transfers": 325 + }, + { + "name": "", + "contract_address": "0x80db22675dad70e44b64029510778583187faddb", + "n_transfers": 325 + }, + { + "name": "", + "contract_address": "0x556590618327f5a2d00cfc2f0d4fc1a027810bb0", + "n_transfers": 324 + }, + { + "name": "", + "contract_address": "0x55591531864a6f0788387b00a8ad98032ad9ac79", + "n_transfers": 323 + }, + { + "name": "", + "contract_address": "0xd97d2e469be98e48c1c252843fe2203cd1b2de22", + "n_transfers": 321 + }, + { + "name": "", + "contract_address": "0x3018538a88218ea260993ec397e4d638ff98309d", + "n_transfers": 320 + }, + { + "name": "", + "contract_address": "0xa802416ff444cc12742bb229fc0486445dade82b", + "n_transfers": 319 + }, + { + "name": "", + "contract_address": "0xa5fe4205c2aaed761eb89faa5b87e13954e3cb73", + "n_transfers": 318 + }, + { + "name": "", + "contract_address": "0x378839a7b6a46d972df8bc016ec984c5d9b841d8", + "n_transfers": 318 + }, + { + "name": "unlock", + "contract_address": "0x775e90a06a3d908940ec326924262b37943aa140", + "n_transfers": 318 + }, + { + "name": "", + "contract_address": "0xe9b4ad578264d16b55eb25e6eec1999306d912bd", + "n_transfers": 317 + }, + { + "name": "", + "contract_address": "0x1301566b3cb584e550a02d09562041ddc4989b91", + "n_transfers": 317 + }, + { + "name": "", + "contract_address": "0x533bafa16aa76218ec4a365ad71bf8816cf21bbb", + "n_transfers": 317 + }, + { + "name": "", + "contract_address": "0x601eb48eeb8baabd197d279919d55303f49f319d", + "n_transfers": 313 + }, + { + "name": "", + "contract_address": "0xb7cd552ee45697fb4b5ae2103df71c17a3b9eac4", + "n_transfers": 313 + }, + { + "name": "", + "contract_address": "0xa6d82fc1f99a868eaab5c935fe7ba9c9e962040e", + "n_transfers": 313 + }, + { + "name": "", + "contract_address": "0x337c0be4fb4238c9fc75a2e20ad4367a79318db9", + "n_transfers": 312 + }, + { + "name": "", + "contract_address": "0xfa2c6c8599026583dbc274484e5a088880c8de8e", + "n_transfers": 311 + }, + { + "name": "", + "contract_address": "0xf90aeef57ae8bc85fe8d40a3f4a45042f4258c67", + "n_transfers": 310 + }, + { + "name": "", + "contract_address": "0x04f23ffaddddd335d3df6172d876e192fddd0eae", + "n_transfers": 309 + }, + { + "name": "", + "contract_address": "0x3dfe0c3d764b4468f84844cdf3eef4b8aefc7f80", + "n_transfers": 307 + }, + { + "name": "", + "contract_address": "0x385e81b4d6809bc9875252d3624295988717bdd5", + "n_transfers": 307 + }, + { + "name": "", + "contract_address": "0x77673ce54c88aa2adcfa904a0d2886bdae41e996", + "n_transfers": 307 + }, + { + "name": "", + "contract_address": "0x3c62e8de798721963b439868d3ce22a5252a7e03", + "n_transfers": 306 + }, + { + "name": "", + "contract_address": "0x020171085bcd43b6fd36ad8c95ad61848b1211a2", + "n_transfers": 305 + }, + { + "name": "", + "contract_address": "0xd3b353421fc5048ad38f7581097951bb9d6c52ff", + "n_transfers": 304 + }, + { + "name": "fortube", + "contract_address": "0xc1def47cf1e15ee8c2a92f4e0e968372880d18d1", + "n_transfers": 303 + }, + { + "name": "", + "contract_address": "0x0683e840ea22b089dafa0bf8c59f1a9690de7c12", + "n_transfers": 303 + }, + { + "name": "", + "contract_address": "0x86daf7db5fd66db2767a0da2ff5eaab16d18e74c", + "n_transfers": 301 + }, + { + "name": "", + "contract_address": "0x61d203df5fa1431f0f0ab4d2fd7f850ce0b32b96", + "n_transfers": 300 + }, + { + "name": "", + "contract_address": "0x0eaa2c84708c360fb5fdab4693a000f2e50f489c", + "n_transfers": 300 + }, + { + "name": "rarible", + "contract_address": "0x6e058ccbb49b05ada07f2cf75f7f4647901b5b3f", + "n_transfers": 300 + }, + { + "name": "", + "contract_address": "0x3ee6dfdfb766d7581067ab8f5c938210f9a2f84e", + "n_transfers": 299 + }, + { + "name": "", + "contract_address": "0x9f5b1fa6ec33513b8a9f22cea0acdc9c3b2835b2", + "n_transfers": 298 + }, + { + "name": "", + "contract_address": "0xc5ae797a87d9d72fb7d4934a304787164a29857a", + "n_transfers": 296 + }, + { + "name": "", + "contract_address": "0xe9155fca5b29a451d2fa8a584e05d6c41c61ca12", + "n_transfers": 296 + }, + { + "name": "", + "contract_address": "0x0fe21e7d62449cb60636c68ca2c62f5443ef0ada", + "n_transfers": 294 + }, + { + "name": "", + "contract_address": "0x45301a18cab92399cf67c5ffece51e5cbbafb1cc", + "n_transfers": 294 + }, + { + "name": "", + "contract_address": "0x2eec2d8ffb26eb04dd37078f52913321d840f607", + "n_transfers": 294 + }, + { + "name": "rarible", + "contract_address": "0x36d16e0758d1b52c28c4579e12b9efa0d23bab29", + "n_transfers": 294 + }, + { + "name": "", + "contract_address": "0x5b8c7104122ab9d33550d43d2343b20dcd455126", + "n_transfers": 292 + }, + { + "name": "", + "contract_address": "0x03c67746d9482ffee0d48cf03c56ad914687a31e", + "n_transfers": 292 + }, + { + "name": "", + "contract_address": "0xb85fe8796344a5b23d40095809abba5ba678484a", + "n_transfers": 292 + }, + { + "name": "", + "contract_address": "0x5b0e580c6e44162ca8e3e3b59e7fe97a83ea1fcd", + "n_transfers": 291 + }, + { + "name": "", + "contract_address": "0x397206a955a6a20d1688ede77a7c767a101a8cfc", + "n_transfers": 290 + }, + { + "name": "", + "contract_address": "0xac11d6f8f840a97aeba2e658aaf02ce0afbcc34c", + "n_transfers": 289 + }, + { + "name": "", + "contract_address": "0x4f8d6d539ce6691c61d891d0f35d507a7f5f052a", + "n_transfers": 289 + }, + { + "name": "", + "contract_address": "0x596d2af40da320ffdde0ab6fa9b1e9c6c1fca2ca", + "n_transfers": 287 + }, + { + "name": "", + "contract_address": "0x8f56406622d712778682181c66c2fe70123bcbba", + "n_transfers": 287 + }, + { + "name": "", + "contract_address": "0x33c8a345830636556160c2ebc3abb90be2e1252b", + "n_transfers": 287 + }, + { + "name": "", + "contract_address": "0xd73aaa94523ae09547a5348486ba3209df666b68", + "n_transfers": 286 + }, + { + "name": "", + "contract_address": "0xda7e17690deb4f2bc18b6ca2b48ddcc0486ead01", + "n_transfers": 285 + }, + { + "name": "rarible", + "contract_address": "0x1bc0c6d164e9e7b3e8e357baebb24994cf84f85d", + "n_transfers": 285 + }, + { + "name": "", + "contract_address": "0x77cb648dae3ecbb0289c19c22672f9a85fe20b18", + "n_transfers": 284 + }, + { + "name": "", + "contract_address": "0xdd8a96c20acd430522564c81f7ae5bb234ac28d0", + "n_transfers": 282 + }, + { + "name": "", + "contract_address": "0x062f189b36fd2df5821daebf2ea706e56a86a1e8", + "n_transfers": 280 + }, + { + "name": "", + "contract_address": "0x032ef0359eb068d3dddd6e91021c02f397afce5a", + "n_transfers": 278 + }, + { + "name": "", + "contract_address": "0x2908a881d04658b9bc59f0e7646cd87094e969a2", + "n_transfers": 278 + }, + { + "name": "", + "contract_address": "0x102daabd1e9d294d4436ec4c521dce7b1f15499e", + "n_transfers": 276 + }, + { + "name": "", + "contract_address": "0x9b74b34c4dd53ad6e5c17fa9249ae10ea6daf5e9", + "n_transfers": 274 + }, + { + "name": "", + "contract_address": "0x71ad8fcbf5dee3d5772545a321905a6ddf3c8032", + "n_transfers": 273 + }, + { + "name": "", + "contract_address": "0xd5d31a30dd78b4a8a4effb8c9ae410c8e86c1812", + "n_transfers": 272 + }, + { + "name": "", + "contract_address": "0xe9ebe74da15fbdbae742d94599ea5fd54d589d02", + "n_transfers": 272 + }, + { + "name": "", + "contract_address": "0xb2ad4e7a39e0a33b9ef29a7a221e48850b55ee38", + "n_transfers": 271 + }, + { + "name": "", + "contract_address": "0x12ff19c4edcfec9e758a43f5fae013bda91eba1a", + "n_transfers": 271 + }, + { + "name": "", + "contract_address": "0x9f61cbad5526e4c02d83559fbcaedae15b6c1119", + "n_transfers": 271 + }, + { + "name": "", + "contract_address": "0xb5d14052d1e2bce2a2d7459d0379256e632b855d", + "n_transfers": 271 + }, + { + "name": "", + "contract_address": "0x1d72d4746647b7fe84e2bcdefd96c119fb9cb0f0", + "n_transfers": 266 + }, + { + "name": "", + "contract_address": "0x97ddb2097d6de6fa8df56fc1620840c7e784553e", + "n_transfers": 266 + }, + { + "name": "", + "contract_address": "0x4ea1dc65667b8f7e395a0dec3182622cba67703f", + "n_transfers": 264 + }, + { + "name": "", + "contract_address": "0x55a2525a0f4b0caa2005fb83a3aa3ac95683c661", + "n_transfers": 264 + }, + { + "name": "", + "contract_address": "0xb0ad425ca5792dd4c4af9177c636e5b0e6c317bf", + "n_transfers": 263 + }, + { + "name": "", + "contract_address": "0x524675875fcd5601d4fe58d1fa16720c2f868c5e", + "n_transfers": 263 + }, + { + "name": "", + "contract_address": "0x7673020703d81ee43f3f689c8f998de9e64f15e3", + "n_transfers": 261 + }, + { + "name": "", + "contract_address": "0xb19a7bf69492fa2642f4774c8fa501aaf5c427d2", + "n_transfers": 259 + }, + { + "name": "", + "contract_address": "0xfb0176604aab0147c4c94d851ae720542e1324e8", + "n_transfers": 258 + }, + { + "name": "", + "contract_address": "0xf67f2b39652019c9a00d54540480ebb0fae593f2", + "n_transfers": 258 + }, + { + "name": "", + "contract_address": "0x0b509f4b044f713a91bb50535914f7ad160532fe", + "n_transfers": 257 + }, + { + "name": "", + "contract_address": "0x64332f0fd0fd4698d79ce059a07ba8f934a1256a", + "n_transfers": 256 + }, + { + "name": "", + "contract_address": "0xf81d9cd2e2de3af509d41f2d825b00257cec6618", + "n_transfers": 255 + }, + { + "name": "", + "contract_address": "0x5c1110907a0f0d39b7e3b7bf472981bc19e88a62", + "n_transfers": 254 + }, + { + "name": "", + "contract_address": "0x292610fd80ac4087dd0df186a01a71ea66281573", + "n_transfers": 252 + }, + { + "name": "", + "contract_address": "0x9d81380c78fd1488bb88148c4c10dd38f3f91dd9", + "n_transfers": 251 + }, + { + "name": "", + "contract_address": "0x0cbd0570401aa68f9e4fee05285eacd7b1bb6069", + "n_transfers": 251 + }, + { + "name": "", + "contract_address": "0x74f1241adda635f3f2e214543a39bee0bb7c0fef", + "n_transfers": 250 + }, + { + "name": "rarible_v1", + "contract_address": "0x78d551cd9e5ad303b6bb60df75e21ad22480de93", + "n_transfers": 249 + }, + { + "name": "", + "contract_address": "0xe977bfe8b83db27616ec10c7862066d37e0326a9", + "n_transfers": 247 + }, + { + "name": "", + "contract_address": "0xaee79d372a41bc1f38c1a4de80a8e42f2b6a6659", + "n_transfers": 247 + }, + { + "name": "", + "contract_address": "0xecaf182e934b650decdb260e8eade410a589c44f", + "n_transfers": 246 + }, + { + "name": "", + "contract_address": "0x9d060a74befd28c6431f86171cd5982bcce1bbab", + "n_transfers": 245 + }, + { + "name": "", + "contract_address": "0x8bafa5f4ab1a45fad116dacc8f7c6842038051a9", + "n_transfers": 245 + }, + { + "name": "rarible", + "contract_address": "0xa7823d6fdb8c3d522fc5720e4a4f5f1f0352567c", + "n_transfers": 244 + }, + { + "name": "", + "contract_address": "0x6290d9d85734216e8044abc0e34a2c8fff7acaf5", + "n_transfers": 244 + }, + { + "name": "", + "contract_address": "0xdefca3d2c714f581b94b5a17bb55db7365c109ff", + "n_transfers": 244 + }, + { + "name": "", + "contract_address": "0x5457ef2d4e248d62b7194f57901361024af9a3f0", + "n_transfers": 243 + }, + { + "name": "", + "contract_address": "0xffc5043d9a00865d089d5eefa5b3d1625aec6763", + "n_transfers": 243 + }, + { + "name": "", + "contract_address": "0xb722cd2bfaa4f62fd43854b1db3342ad120c184c", + "n_transfers": 242 + }, + { + "name": "", + "contract_address": "0x69a750960847dac20b710d0a1eb7adaff22b34bd", + "n_transfers": 242 + }, + { + "name": "rarible_v1", + "contract_address": "0xc04bf7a16e4db62ab5317aa9d776723ff2bbc9ab", + "n_transfers": 240 + }, + { + "name": "", + "contract_address": "0x032dad5d1d9f3fba88046b08c2676a0daf96b745", + "n_transfers": 240 + }, + { + "name": "", + "contract_address": "0x318bfbb5dfae7ee7c853eb82dbab9e10a45e768d", + "n_transfers": 239 + }, + { + "name": "", + "contract_address": "0x278795eb02ac9f85bfa9762b3e65c141fd4c742a", + "n_transfers": 239 + }, + { + "name": "", + "contract_address": "0x6ade36be35b0fd03e0bc06e469b71a35e25d8a0a", + "n_transfers": 239 + }, + { + "name": "rarible", + "contract_address": "0xd0bd0d368436b4252116fb1fb6e148c4acf3e72b", + "n_transfers": 238 + }, + { + "name": "", + "contract_address": "0x9355fb9693fff9bb6f06721c82fe0b5f49e6c956", + "n_transfers": 238 + }, + { + "name": "", + "contract_address": "0xb8786b474d63f320162391685487f5b490ede68a", + "n_transfers": 237 + }, + { + "name": "", + "contract_address": "0xba0d69d83b4b914f1107de4067ee34e863b80bde", + "n_transfers": 237 + }, + { + "name": "", + "contract_address": "0x28cfaf829d7d0a684b33c3afca06905ef5e071bd", + "n_transfers": 235 + }, + { + "name": "", + "contract_address": "0xdc7b5bcc0cb266b9974c8ad977dff71a25eed0df", + "n_transfers": 234 + }, + { + "name": "", + "contract_address": "0xe5385102abb47514d7ae0f6c6233e07430638316", + "n_transfers": 234 + }, + { + "name": "", + "contract_address": "0xebb1da4a068fcb9e8b83928a8c3e83ef564f9989", + "n_transfers": 233 + }, + { + "name": "", + "contract_address": "0xa7c5c9e2fef1c447e962a9eb3d1fc5012dfaa68e", + "n_transfers": 233 + }, + { + "name": "", + "contract_address": "0xf779cae120093807985d5f2e7dbb21d69be6b963", + "n_transfers": 232 + }, + { + "name": "rarible", + "contract_address": "0x5924cd4764df7a1b12c725c05fca70bd510f4689", + "n_transfers": 232 + }, + { + "name": "", + "contract_address": "0x08dad07075efa7db37eb3057b3598f37dfbbadcd", + "n_transfers": 232 + }, + { + "name": "", + "contract_address": "0x4629122c04eacc2ca48bda4a92aadcaee5d15389", + "n_transfers": 231 + }, + { + "name": "", + "contract_address": "0xb382f44fc434105a94ca566abdb5ab9fa5dac0ee", + "n_transfers": 231 + }, + { + "name": "", + "contract_address": "0x3a0c25422d086950880a976557d53d924935d878", + "n_transfers": 231 + }, + { + "name": "", + "contract_address": "0x0000000000001b84b1cb32787b0d64758d019317", + "n_transfers": 231 + }, + { + "name": "", + "contract_address": "0x9cb151054ab13fa715f170c731a9705236e0a537", + "n_transfers": 230 + }, + { + "name": "", + "contract_address": "0x9b84a7f48d251950d944b41eafb36560469281b3", + "n_transfers": 230 + }, + { + "name": "", + "contract_address": "0x2cb1fb5a946f55f11b35a1a6b44db8cc247b96c9", + "n_transfers": 230 + }, + { + "name": "", + "contract_address": "0x574f64ac2e7215cba9752b85fc73030f35166bc0", + "n_transfers": 229 + }, + { + "name": "", + "contract_address": "0xd8dcb0c856b5d0d234e70f9e5f13b6bc165f7de4", + "n_transfers": 228 + }, + { + "name": "", + "contract_address": "0xba53e26fea710bf533a3c39b86929cde08cbdad1", + "n_transfers": 228 + }, + { + "name": "", + "contract_address": "0x1a7946f366f7c2ab8a7ba4fa673fab46c2bcc488", + "n_transfers": 228 + }, + { + "name": "", + "contract_address": "0x78fcad8425ee130e7a7c45a26310bda69a4163fd", + "n_transfers": 227 + }, + { + "name": "", + "contract_address": "0xa20f75be9427995e596788c29a10c7d734671251", + "n_transfers": 226 + }, + { + "name": "", + "contract_address": "0x962a71bb0d2bb118fbe021e320f58c8f9236a700", + "n_transfers": 226 + }, + { + "name": "", + "contract_address": "0xb3ebb6a057e81708cc884a5dcff0c4a9f91075de", + "n_transfers": 225 + }, + { + "name": "", + "contract_address": "0xc1013acd27091812f32b59e1d28f08ad502dac92", + "n_transfers": 224 + }, + { + "name": "", + "contract_address": "0xd6e367f5d0cbf8762feaea4565c60f74f8bd6827", + "n_transfers": 224 + }, + { + "name": "", + "contract_address": "0xde6123d1e7b0483b16e745ac329750b170ef79d8", + "n_transfers": 223 + }, + { + "name": "fortube", + "contract_address": "0x252f663b3de038e34348b7fe9585a03a5caa1594", + "n_transfers": 223 + }, + { + "name": "", + "contract_address": "0x36f379400de6c6bcdf4408b282f8b685c56adc60", + "n_transfers": 222 + }, + { + "name": "", + "contract_address": "0xca2b39de304221a6cd76f79fef2368cf69ba7deb", + "n_transfers": 222 + }, + { + "name": "rarible", + "contract_address": "0xd06f51965a7ff3d33f47e216b617b2eaab02215e", + "n_transfers": 221 + }, + { + "name": "", + "contract_address": "0x077fe80ef0c2e316bdaecef4af1b55794d088e0d", + "n_transfers": 220 + }, + { + "name": "", + "contract_address": "0xe360147d64bce619accc815087f58e56886cb0f9", + "n_transfers": 220 + }, + { + "name": "", + "contract_address": "0x817d5bd2f7458b604490869b8bc91d288505ef8f", + "n_transfers": 220 + }, + { + "name": "", + "contract_address": "0xb4e2342bd1fc099a1be79b235b3a1de3b17266fe", + "n_transfers": 219 + }, + { + "name": "", + "contract_address": "0xd508731686f2c933b849762f9a92539c666584dc", + "n_transfers": 219 + }, + { + "name": "", + "contract_address": "0xc3ca6c364b854fd0a653a43f8344f8c22ddfdd26", + "n_transfers": 219 + }, + { + "name": "", + "contract_address": "0x0b23ad11e92fdf87eb5c9b0f24b9860f9c4689ee", + "n_transfers": 218 + }, + { + "name": "", + "contract_address": "0xa2cadf11076fa2a33ec8e599672b2a17a4a2023e", + "n_transfers": 218 + }, + { + "name": "", + "contract_address": "0x3aa2c783da6de789981f6fd0abf83c3e14e259b9", + "n_transfers": 218 + }, + { + "name": "", + "contract_address": "0x8995ad7deabd17c31b62ac89ee5f7d850a4bedb0", + "n_transfers": 217 + }, + { + "name": "", + "contract_address": "0xcd76a34fcdcc482e25e1d86e71111b78f818b470", + "n_transfers": 215 + }, + { + "name": "", + "contract_address": "0x7dc16c00ee794ff1c536e0b732648b67bbdbf373", + "n_transfers": 215 + }, + { + "name": "", + "contract_address": "0x1b38b5a4d68689766bd5b519cc7c095a82593511", + "n_transfers": 215 + }, + { + "name": "", + "contract_address": "0xf2129ea3cf8f356da9dbaa276773fbf8259d6690", + "n_transfers": 215 + }, + { + "name": "", + "contract_address": "0x94430a10f1c84abcbaf56202651372b981bd60ef", + "n_transfers": 214 + }, + { + "name": "", + "contract_address": "0xba619d9d9de290240bfacae060467ccff3b38649", + "n_transfers": 214 + }, + { + "name": "", + "contract_address": "0x30d3387ff3de2a21bef7032f82d00ff7739e403c", + "n_transfers": 214 + }, + { + "name": "", + "contract_address": "0x9b2558cfeb54364011df8de24ebe7423533e6b09", + "n_transfers": 214 + }, + { + "name": "", + "contract_address": "0x011c77fa577c500deedad364b8af9e8540b808c0", + "n_transfers": 213 + }, + { + "name": "", + "contract_address": "0x112bec51a4b0942e7f7b2a5090f5ad57b7901559", + "n_transfers": 213 + }, + { + "name": "", + "contract_address": "0x60909c259cb13021c834c9653c55057ff589fce0", + "n_transfers": 212 + }, + { + "name": "", + "contract_address": "0xdb0527a196445483115d5fd7d12334701049b6f2", + "n_transfers": 212 + }, + { + "name": "", + "contract_address": "0xe1ecb4e5130f493551c7d6df96ad19e5b431a0a9", + "n_transfers": 211 + }, + { + "name": "", + "contract_address": "0x20eecec5530e772f17f8b37dbfbcce4a67e4fbe8", + "n_transfers": 211 + }, + { + "name": "", + "contract_address": "0x279bd4f5aa647de9ce912e1eb989ef103cb63742", + "n_transfers": 211 + }, + { + "name": "", + "contract_address": "0x50476811f205c0701ee7792ae1745c5af191f48c", + "n_transfers": 210 + }, + { + "name": "", + "contract_address": "0x42c6bbc990261b67bec968c1ea02a3286968e99e", + "n_transfers": 209 + }, + { + "name": "", + "contract_address": "0xa7b9c81a67d1cf835b6d357786d7ffe221aa2c7e", + "n_transfers": 209 + }, + { + "name": "", + "contract_address": "0x7c99dedb1dd8b9c9b12a8043c569988c3f881550", + "n_transfers": 208 + }, + { + "name": "rarible", + "contract_address": "0x6fce4a2d220d5a975eecfec0d2e0a81d3247d342", + "n_transfers": 208 + }, + { + "name": "", + "contract_address": "0x1866c6907e70eb176109363492b95e3617b4a195", + "n_transfers": 208 + }, + { + "name": "", + "contract_address": "0x9f8c6346ca2e987342f301bd93b0c4b13819b234", + "n_transfers": 208 + }, + { + "name": "", + "contract_address": "0xa0a5bb7b563461a586c1bd6d635ba9fde7315008", + "n_transfers": 208 + }, + { + "name": "", + "contract_address": "0x43dbea78dd1a0e6d2fa43f08e109cab95c1679a0", + "n_transfers": 207 + }, + { + "name": "", + "contract_address": "0x9e1f3e8db4d1119894624632499eaed1e56d2b1d", + "n_transfers": 207 + }, + { + "name": "", + "contract_address": "0xecab82abe5d30b736730f88dcee21895fa0b18c2", + "n_transfers": 206 + }, + { + "name": "", + "contract_address": "0xdbba35892f7bf059c65279c0eebd05d9bb00af1f", + "n_transfers": 205 + }, + { + "name": "", + "contract_address": "0xfe21b0a8df3308c61cb13df57ae5962c567a668a", + "n_transfers": 205 + }, + { + "name": "", + "contract_address": "0xf80a31718151ee890a7e44f6dbd6562b5e219a41", + "n_transfers": 205 + }, + { + "name": "rarible", + "contract_address": "0x188a7c473d94f5c5ed21bc2e820cf51934b40388", + "n_transfers": 204 + }, + { + "name": "", + "contract_address": "0x8cf3d6bbaead351bdd4533691855d08b2d814a2d", + "n_transfers": 203 + }, + { + "name": "", + "contract_address": "0x9326bd1cf4c4b52f7cb040ea89eca6d6f265e456", + "n_transfers": 203 + }, + { + "name": "", + "contract_address": "0xf792d78278642d2fe59043b0b762abd96305c309", + "n_transfers": 202 + }, + { + "name": "", + "contract_address": "0x05c45300bf90c9d1cb53371376fcb3852b420de0", + "n_transfers": 202 + }, + { + "name": "", + "contract_address": "0xe5d8ca49cd502ff580834abb40bc7d8d7abbc284", + "n_transfers": 202 + }, + { + "name": "", + "contract_address": "0xe74aedf09367d3272f0fd726f2f9ef693488eefe", + "n_transfers": 201 + }, + { + "name": "", + "contract_address": "0x7d1c2756a5de2a319378639034e935a96830f21c", + "n_transfers": 200 + }, + { + "name": "", + "contract_address": "0x1e1b3525388e8a63988f8455638aee87f68eeaa7", + "n_transfers": 200 + }, + { + "name": "", + "contract_address": "0xff6823fffb19100a205beb5d9e637c03e6d75397", + "n_transfers": 200 + }, + { + "name": "", + "contract_address": "0xe6080a0a323ee7412f8836c5cbcaa53595dc2e32", + "n_transfers": 200 + }, + { + "name": "", + "contract_address": "0xd2eb63023aaeb44030ff53a6ebd6e0c05edec836", + "n_transfers": 199 + }, + { + "name": "", + "contract_address": "0xb2b879764c649c7769f7c90845b0cb2a86add821", + "n_transfers": 199 + }, + { + "name": "", + "contract_address": "0x238c0ebf1af19b9a8881155b4fffaa202be50d35", + "n_transfers": 198 + }, + { + "name": "", + "contract_address": "0xa0244afbc4d0366eebbd4cbfcf82ce49547d8eaa", + "n_transfers": 198 + }, + { + "name": "", + "contract_address": "0x30ab12b93a31124333643cb6d55b96046b31aaa1", + "n_transfers": 198 + }, + { + "name": "", + "contract_address": "0xe5bd6e710da9e177acb5b4e348b94b514f9cfb4e", + "n_transfers": 197 + }, + { + "name": "", + "contract_address": "0xa0488e09af052e71caeca415a9401df904d1773c", + "n_transfers": 197 + }, + { + "name": "", + "contract_address": "0xc73a1bca8bebef34e5851dbe6e60f8a347c126b1", + "n_transfers": 197 + }, + { + "name": "", + "contract_address": "0xf10a09c41f395c01f9138b0caf1b652a1a9042ec", + "n_transfers": 196 + }, + { + "name": "", + "contract_address": "0xf6fcc76df5d6d43d4205f2c752921e4f60e9d67b", + "n_transfers": 196 + }, + { + "name": "", + "contract_address": "0x7d72da80084359751122a11af5305f38df18e246", + "n_transfers": 195 + }, + { + "name": "", + "contract_address": "0xf15f61643eea73be40ad9b72c09ed381fac7a256", + "n_transfers": 194 + }, + { + "name": "", + "contract_address": "0x57a39b53e3e90d0820d1448fa0920b2355773b0f", + "n_transfers": 193 + }, + { + "name": "", + "contract_address": "0x476eda02bf0c35603fd6e0306cf85381029f90f1", + "n_transfers": 193 + }, + { + "name": "rarible", + "contract_address": "0x11e246c34707f7b1d0ce7170026090630274d31a", + "n_transfers": 192 + }, + { + "name": "", + "contract_address": "0xc937c594cb126fed0db22b41ab070bc206080825", + "n_transfers": 190 + }, + { + "name": "", + "contract_address": "0x610e6a9a978fc37642bbf73345dcc5def29ade7a", + "n_transfers": 190 + }, + { + "name": "", + "contract_address": "0x110101156e8f0743948b2a61afcf3994a8fb172e", + "n_transfers": 190 + }, + { + "name": "", + "contract_address": "0xe07919263b3b209f4ce065670be4e75e9a1adac3", + "n_transfers": 189 + }, + { + "name": "", + "contract_address": "0xf315ccd130b43c33a9a497c67dc3a4f7a0be54ae", + "n_transfers": 189 + }, + { + "name": "", + "contract_address": "0x6cd012ad09caef9c71f324deac1c42bca18b6eff", + "n_transfers": 189 + }, + { + "name": "", + "contract_address": "0xccc014e5735bbd21928384142e6460b452f63a26", + "n_transfers": 189 + }, + { + "name": "", + "contract_address": "0xaf488234796ca27dba8ecf17f803ea1f4ab33e15", + "n_transfers": 188 + }, + { + "name": "", + "contract_address": "0xd2ea2d4ba675c2495251f7d578bcc52162e445cc", + "n_transfers": 188 + }, + { + "name": "", + "contract_address": "0x628826bb563ed557773cffbaf499087f8435c559", + "n_transfers": 187 + }, + { + "name": "", + "contract_address": "0x29b7315fc83172cfcb45c2fb415e91a265fb73f2", + "n_transfers": 187 + }, + { + "name": "", + "contract_address": "0x34ed0aa248f60f54dd32fbc9883d6137a491f4f3", + "n_transfers": 186 + }, + { + "name": "", + "contract_address": "0xcbb4094193ca590069f9b246a7a6f1c6de4a6439", + "n_transfers": 186 + }, + { + "name": "", + "contract_address": "0xc6cfc6a31e516d1622b80c0864b16f665712f89e", + "n_transfers": 186 + }, + { + "name": "", + "contract_address": "0x65770b5283117639760bea3f867b69b3697a91dd", + "n_transfers": 186 + }, + { + "name": "", + "contract_address": "0xc02697c417ddacfbe5edbf23edad956bc883f4fb", + "n_transfers": 185 + }, + { + "name": "", + "contract_address": "0xb1acc51807aa91832b8a388bcd042b49e1bb76b2", + "n_transfers": 185 + }, + { + "name": "", + "contract_address": "0x0163f249af5a4781cd09edeb2326066b9552d8ec", + "n_transfers": 184 + }, + { + "name": "", + "contract_address": "0x54266bcf2ffa841af934f003d144957d5934f3ab", + "n_transfers": 183 + }, + { + "name": "", + "contract_address": "0x4f80965f1e5c19669e62aa3537dea5f5a0fa7f1c", + "n_transfers": 182 + }, + { + "name": "", + "contract_address": "0x530ff125b9039c047125462a0dead4d4c0903ad1", + "n_transfers": 182 + }, + { + "name": "", + "contract_address": "0x472bedd0f4de2573bae522546940c93ae37c5b21", + "n_transfers": 181 + }, + { + "name": "", + "contract_address": "0x836bc86bb91ae6675f5fa654ebc8d143bb47d171", + "n_transfers": 181 + }, + { + "name": "", + "contract_address": "0x5cf39e64392c615fd8086838883958752a11b486", + "n_transfers": 180 + }, + { + "name": "", + "contract_address": "0x8216ff1d1ae7b2d9a8c8a939d61a52c9d32c7236", + "n_transfers": 180 + }, + { + "name": "rarible", + "contract_address": "0xb35ebc34e3ef6850cfcd54ff0a128b70e2ddf651", + "n_transfers": 179 + }, + { + "name": "", + "contract_address": "0xaefa27a665d48e19c38437ba7135c8107bb5928f", + "n_transfers": 178 + }, + { + "name": "", + "contract_address": "0xe550d1955404c8aec18da6c192eb2295415178cf", + "n_transfers": 177 + }, + { + "name": "", + "contract_address": "0xedafd7bd75416584fb9275acff63cb41f89bf38c", + "n_transfers": 177 + }, + { + "name": "", + "contract_address": "0x5e876afe2ad4a21cd895395c0cc2fb8a8b2105e4", + "n_transfers": 176 + }, + { + "name": "", + "contract_address": "0x3cf8695c5cb6caa78d9c7fc9fa34bc8271483a1a", + "n_transfers": 176 + }, + { + "name": "", + "contract_address": "0xaaccaab0e85b1efcecdba88f4399fa6cab402349", + "n_transfers": 176 + }, + { + "name": "", + "contract_address": "0xddf15e4160148635b48214ee451ba588a709040e", + "n_transfers": 175 + }, + { + "name": "", + "contract_address": "0xc11135fbdd294b88ba50bd7c34d072cbba0b95f3", + "n_transfers": 175 + }, + { + "name": "", + "contract_address": "0x053ad8752a081e55cc029c786ef3401ae5a83c7c", + "n_transfers": 175 + }, + { + "name": "", + "contract_address": "0x772da237fc93ded712e5823b497db5991cc6951e", + "n_transfers": 175 + }, + { + "name": "", + "contract_address": "0x22adcaf1d6b5213a76bfddab6d4d38c25ce7c029", + "n_transfers": 175 + }, + { + "name": "rarible", + "contract_address": "0x560de36966bcd0d4691263b115aec64cb34e0281", + "n_transfers": 174 + }, + { + "name": "", + "contract_address": "0xef9e50890693cc4f21d9dd33cd26c19f0bdeab60", + "n_transfers": 174 + }, + { + "name": "", + "contract_address": "0x574acd83d37722c60c08268f7755faad39a6ef81", + "n_transfers": 174 + }, + { + "name": "", + "contract_address": "0x3903525e5c6cec55d4d38060c3edf05068a7a8d1", + "n_transfers": 172 + }, + { + "name": "", + "contract_address": "0x947ef9d7af79b892b1bc242d6575ad4dfe4242b6", + "n_transfers": 172 + }, + { + "name": "", + "contract_address": "0x7b9dee87da0df330e890eafdf7f355a8b0d88408", + "n_transfers": 172 + }, + { + "name": "", + "contract_address": "0xb66b599efba395e432e51f3b91989ba9b96a5893", + "n_transfers": 171 + }, + { + "name": "", + "contract_address": "0xe79bd721ea130d1773dfe791d2b2b52877c85442", + "n_transfers": 171 + }, + { + "name": "", + "contract_address": "0x7d8d225118f7b93a737cbcf259e03e7887806d08", + "n_transfers": 171 + }, + { + "name": "", + "contract_address": "0x12f28e2106ce8fd8464885b80ea865e98b465149", + "n_transfers": 171 + }, + { + "name": "", + "contract_address": "0x533508e1d3dc9a08440578f95ef168db1710aad2", + "n_transfers": 171 + }, + { + "name": "", + "contract_address": "0x9ad833f673d4992c203b4e6c66c7cbb6d1b25dee", + "n_transfers": 170 + }, + { + "name": "", + "contract_address": "0xcb1b2a805273115feb4e3bc13c3111d70afb2270", + "n_transfers": 170 + }, + { + "name": "", + "contract_address": "0x3eea5bf894236f4b7a6f1451bca89a9c91f49719", + "n_transfers": 170 + }, + { + "name": "", + "contract_address": "0xae4015cdc92792e78b865bf6621d7576cb586d15", + "n_transfers": 169 + }, + { + "name": "", + "contract_address": "0x50e0c4c7fdb6b9db229a4b414641883d5b4419e5", + "n_transfers": 169 + }, + { + "name": "", + "contract_address": "0xfc5b4fe32494dfe71fe20994264a6be7237ef9a8", + "n_transfers": 168 + }, + { + "name": "", + "contract_address": "0xc64163d0a402dd9764ee28ae9f65be1f3004e1eb", + "n_transfers": 168 + }, + { + "name": "", + "contract_address": "0x591fb4438a0fb02c689105b1d29aa172be6db049", + "n_transfers": 168 + }, + { + "name": "", + "contract_address": "0x479fa91a1a4adbfe74e884ad6e83739619a2c7f3", + "n_transfers": 167 + }, + { + "name": "", + "contract_address": "0xf4878f54ddd8166a71dc71cbdf0c0e4bcde59c0d", + "n_transfers": 167 + }, + { + "name": "", + "contract_address": "0x480a0f4e360e8964e68858dd231c2922f1df45ef", + "n_transfers": 167 + }, + { + "name": "", + "contract_address": "0xba3842d576bb6d98dd10d1e5e22fec3853f83655", + "n_transfers": 166 + }, + { + "name": "", + "contract_address": "0x00bd8f77a6222a17cda498807fa938031e158298", + "n_transfers": 166 + }, + { + "name": "", + "contract_address": "0x4597a3076c6468a9d98dd71f7d0de1b5ab4567e2", + "n_transfers": 166 + }, + { + "name": "", + "contract_address": "0xb5c518ab9b41080af0d9df48d9ecbf1f098a44d0", + "n_transfers": 165 + }, + { + "name": "rarible", + "contract_address": "0x9b57fc285c83287cfdbb1a70c87dc644f83c385a", + "n_transfers": 165 + }, + { + "name": "", + "contract_address": "0xb633b0d142f0cdf2ad641432480c4b08ae99340e", + "n_transfers": 165 + }, + { + "name": "", + "contract_address": "0x90d86699b60938fca1cb5817c6e85f65e84663eb", + "n_transfers": 165 + }, + { + "name": "", + "contract_address": "0x875955af00d2a67786aed9501f92a2ce98750aa6", + "n_transfers": 164 + }, + { + "name": "", + "contract_address": "0x40b16a1b6bea856745fedf7e0946494b895611a2", + "n_transfers": 164 + }, + { + "name": "", + "contract_address": "0x676e18a3a73c7185041f901a0da4dfbf670e04d6", + "n_transfers": 164 + }, + { + "name": "", + "contract_address": "0xb5e423dcc740bbc80f906133e15601f980998356", + "n_transfers": 163 + }, + { + "name": "", + "contract_address": "0x0acc06d74a4125ba5901da00d372b9342065237a", + "n_transfers": 163 + }, + { + "name": "", + "contract_address": "0x91cc2cf7b0bd7ad99c0d8fa4cdfc93c15381fb2d", + "n_transfers": 162 + }, + { + "name": "", + "contract_address": "0x3c654913902714c5cc13ffbae2169dfa1b65cdae", + "n_transfers": 161 + }, + { + "name": "rarible", + "contract_address": "0xa27a9b68367b04bf63d1edd27337f0c239cca13a", + "n_transfers": 161 + }, + { + "name": "", + "contract_address": "0xc63f3320b4bf3c1f45bf3bbc3590434694b50c15", + "n_transfers": 161 + }, + { + "name": "", + "contract_address": "0xfe5deebaaf04d25864718cbf0289a49692a0ffee", + "n_transfers": 161 + }, + { + "name": "", + "contract_address": "0x9469ebbd1539550e9c67c2098d5225a102aeb5db", + "n_transfers": 160 + }, + { + "name": "", + "contract_address": "0x7271949ca2bdc931b9097120b0e701615840f5f3", + "n_transfers": 160 + }, + { + "name": "", + "contract_address": "0x4df5675f9a5996b292a8704bc467c684f66eda58", + "n_transfers": 159 + }, + { + "name": "", + "contract_address": "0x58a3c68e2d3aaf316239c003779f71acb870ee47", + "n_transfers": 159 + }, + { + "name": "", + "contract_address": "0x000000000a42c2791eec307fff43fa5c640e3ef7", + "n_transfers": 159 + }, + { + "name": "", + "contract_address": "0x5e7d7406148bd47d86f3a6f497433a145b6542c1", + "n_transfers": 158 + }, + { + "name": "", + "contract_address": "0x05dde4609035e464f995d13221b5166080634f21", + "n_transfers": 158 + }, + { + "name": "", + "contract_address": "0x2b75cadb5f73bf24713f68b901ea4cc095da06ab", + "n_transfers": 158 + }, + { + "name": "", + "contract_address": "0x1858c41983e6a9d789f2a022623ebf1fa0b33ebc", + "n_transfers": 158 + }, + { + "name": "", + "contract_address": "0x90958d4531258ca11d18396d4174a007edbc2b42", + "n_transfers": 157 + }, + { + "name": "", + "contract_address": "0x9363b88cb3718a63280f63742f67ec27caa1d2bf", + "n_transfers": 157 + }, + { + "name": "", + "contract_address": "0x24c3124dc5200e5bfaa5cf4755ad4cc591c65ee2", + "n_transfers": 156 + }, + { + "name": "rarible", + "contract_address": "0xcdcfb1876467b08d37e6a49582017126df966c5f", + "n_transfers": 156 + }, + { + "name": "", + "contract_address": "0x14e8640d94a9910fe650c5a1b8ee271b505ce4cc", + "n_transfers": 155 + }, + { + "name": "", + "contract_address": "0x1d346f76c93a2a6d78e7484829451ae211fb15b8", + "n_transfers": 155 + }, + { + "name": "", + "contract_address": "0x96bc32f1e544fcbf586f9d2002c6c295b47f1000", + "n_transfers": 154 + }, + { + "name": "", + "contract_address": "0xfdd583fa6a299134fcd402b4d4ef9d0666c37aaf", + "n_transfers": 154 + }, + { + "name": "", + "contract_address": "0x7ee1b5cbd032a6258171580484ac3adc63ee130a", + "n_transfers": 153 + }, + { + "name": "", + "contract_address": "0x2b4572419f2b2a0c198cc8789de881287c09d8c3", + "n_transfers": 153 + }, + { + "name": "rarible", + "contract_address": "0x17571820e22c0f4773ec36147737720b0f047a60", + "n_transfers": 153 + }, + { + "name": "", + "contract_address": "0x87be7f119ca6748b340153269736446ec225e309", + "n_transfers": 151 + }, + { + "name": "", + "contract_address": "0xb80fbf6cdb49c33dc6ae4ca11af8ac47b0b4c0f3", + "n_transfers": 151 + }, + { + "name": "", + "contract_address": "0xa8f9a747653ce85cc7277a09a986f7b0eacc8b69", + "n_transfers": 151 + }, + { + "name": "", + "contract_address": "0x3041d13e7c594fcc7f7221488555337983e3cfa6", + "n_transfers": 150 + }, + { + "name": "", + "contract_address": "0x8bf592fd4217f064327d1db45a58c66f6d297584", + "n_transfers": 150 + }, + { + "name": "", + "contract_address": "0x165a7cbb4c0f88c2ad40efe141ead10706ae5f37", + "n_transfers": 150 + }, + { + "name": "", + "contract_address": "0xb46219144e8f1aed54b9ff79e3f68dad098ca563", + "n_transfers": 150 + }, + { + "name": "", + "contract_address": "0x234b859d7135dc21a6c187b9769a5e34706ab1ad", + "n_transfers": 149 + }, + { + "name": "", + "contract_address": "0xf7aa404bae09ad87660f84487526b5ae6961841b", + "n_transfers": 149 + }, + { + "name": "", + "contract_address": "0x6fb1c47331c2edaedd13f37a588f234d34cedf25", + "n_transfers": 148 + }, + { + "name": "", + "contract_address": "0xdd5c14f6ec5281ca7bd2ad3c6934bee7fedd6d1b", + "n_transfers": 148 + }, + { + "name": "", + "contract_address": "0x3ad503084f1bd8d15a7f5ebe7a038c064e1e3fa1", + "n_transfers": 148 + }, + { + "name": "", + "contract_address": "0x109041526873c4f9695a534045ffe80839f3de27", + "n_transfers": 147 + }, + { + "name": "", + "contract_address": "0x38da695c837bb0ee4aa9f62be0307f3d94003c4b", + "n_transfers": 147 + }, + { + "name": "", + "contract_address": "0xf924fed62a15c879213e677dada6cf7db5174620", + "n_transfers": 147 + }, + { + "name": "", + "contract_address": "0x6ad0f855c97eb80665f2d0c7d8204895e052c373", + "n_transfers": 146 + }, + { + "name": "", + "contract_address": "0xc6eebd4a45a8ff06c7e26365dde2c0dfc488da36", + "n_transfers": 146 + }, + { + "name": "", + "contract_address": "0x9c3aebe3af3abc5b9bac0f7c272f115ef04b41dd", + "n_transfers": 146 + }, + { + "name": "", + "contract_address": "0x8a954618dec93ca46405ecb182823242fbb9fc27", + "n_transfers": 145 + }, + { + "name": "", + "contract_address": "0xa408baab333a0dfdf0055ddde9f2322ceb2d4cf9", + "n_transfers": 145 + }, + { + "name": "", + "contract_address": "0xdc836338f6602aa81c4888ab4144fc85bb835f4d", + "n_transfers": 144 + }, + { + "name": "", + "contract_address": "0xca4a880e3dd240c882667106b41f9fce8f282da7", + "n_transfers": 143 + }, + { + "name": "", + "contract_address": "0x391415703ebd0034a95f0b7852caa0568c96527b", + "n_transfers": 143 + }, + { + "name": "", + "contract_address": "0x090c53bac270768759c8f4c93151bd1a808a280e", + "n_transfers": 143 + }, + { + "name": "", + "contract_address": "0xc20fb4260032d6532774435ee7a7845e59395f75", + "n_transfers": 143 + }, + { + "name": "", + "contract_address": "0x56074ac10eef4c63428e0be4853e5bcfebd42bd0", + "n_transfers": 143 + }, + { + "name": "", + "contract_address": "0xc170384371494b2a8f6ba20f4d085c4dde763d96", + "n_transfers": 142 + }, + { + "name": "", + "contract_address": "0x0ce87f77b1d83df522ae96af9cf810b16ab0942b", + "n_transfers": 142 + }, + { + "name": "rarible", + "contract_address": "0x3e3bf91740a8363d9433c8d3535b9b3c9e55f669", + "n_transfers": 141 + }, + { + "name": "", + "contract_address": "0x7885584a108e7996f415585a094e6914b169d87c", + "n_transfers": 141 + }, + { + "name": "", + "contract_address": "0xed9a36e68e61b3d2e359de441305fb05417581f1", + "n_transfers": 141 + }, + { + "name": "", + "contract_address": "0x5700951b2604a0dedda7a4c89c31fe0f5e3cd67c", + "n_transfers": 140 + }, + { + "name": "", + "contract_address": "0x60d8271c501501c4b8cd9ed5343ac59d1b79d993", + "n_transfers": 140 + }, + { + "name": "", + "contract_address": "0xe55c8732de80cb474c756440082270e3b2ac7af7", + "n_transfers": 140 + }, + { + "name": "", + "contract_address": "0x0fbf3f400d6b2e53a5f95647d7e7c3d0813e7d51", + "n_transfers": 140 + }, + { + "name": "", + "contract_address": "0xf980759616a795b2d692a5c0a0f1bad651984bc1", + "n_transfers": 140 + }, + { + "name": "", + "contract_address": "0xf9b22515ecb9271a9e1bd3cc8af9df0046b73501", + "n_transfers": 140 + }, + { + "name": "", + "contract_address": "0xe8ebeb96e74f81ec8aad8e2e3e8a68309cb86908", + "n_transfers": 139 + }, + { + "name": "", + "contract_address": "0xa257fd7658c9f2d9ccc3edacec1678e8713cdd8a", + "n_transfers": 138 + }, + { + "name": "", + "contract_address": "0xfb6751d440406edc54136b3b803e8bdae3db8865", + "n_transfers": 138 + }, + { + "name": "", + "contract_address": "0xbd050d8555ee7c8c0ccc343b541e9ed02eeeee05", + "n_transfers": 138 + }, + { + "name": "", + "contract_address": "0x12f405b520e6b9ef3f52a87b8dbdcdb9b9aff9b6", + "n_transfers": 137 + }, + { + "name": "", + "contract_address": "0xdb345d106d3b17901f44f1b4cb5be83471861053", + "n_transfers": 137 + }, + { + "name": "", + "contract_address": "0xf31d7d9e68562e2b7100e83b500e07ea5fbf9e08", + "n_transfers": 137 + }, + { + "name": "", + "contract_address": "0xc6a02724a3bfbdee37017f9d70c6d3ba5823c7af", + "n_transfers": 137 + }, + { + "name": "", + "contract_address": "0x3caed19b6f5d3b879e6c0de6fbe9928bbf433c09", + "n_transfers": 137 + }, + { + "name": "", + "contract_address": "0xb5c79237789f9d07e04bedafce7ed127215647ea", + "n_transfers": 136 + }, + { + "name": "", + "contract_address": "0x04eb489ea6d4983f4c798b06853b949182d129c7", + "n_transfers": 136 + }, + { + "name": "", + "contract_address": "0x148bb64e8910422e74f79fef1a2e830bde0bb938", + "n_transfers": 136 + }, + { + "name": "", + "contract_address": "0x03f41eaa68968a4443ecee18139637c59c8f7b6b", + "n_transfers": 135 + }, + { + "name": "", + "contract_address": "0xa84fc8bbc9e1f7ecc2b4e9e1f879d806d5384869", + "n_transfers": 135 + }, + { + "name": "rarible", + "contract_address": "0x290c090c032902bd32b1194df40f7eb1abbe1f33", + "n_transfers": 135 + }, + { + "name": "", + "contract_address": "0x79c91241eff1f119cdf743730f6e6fb2af7fb279", + "n_transfers": 134 + }, + { + "name": "", + "contract_address": "0xb4612c2f7b7dac79e176a1d8513c9a5b3a33e868", + "n_transfers": 133 + }, + { + "name": "", + "contract_address": "0xfa80c50ffb11c255267147a85175a838835cdade", + "n_transfers": 133 + }, + { + "name": "", + "contract_address": "0x196dad31fb79156b7adbdc00ac6f4f69c7e91a7d", + "n_transfers": 133 + }, + { + "name": "", + "contract_address": "0x400f3c85d2b50ac0acced459d75b27ce51b620ef", + "n_transfers": 133 + }, + { + "name": "", + "contract_address": "0x9044c1f34f29d19558c11662cb2de79f858347d9", + "n_transfers": 133 + }, + { + "name": "", + "contract_address": "0xcc42f00298936d58c4dea5ba1c63cb8b9f486cba", + "n_transfers": 132 + }, + { + "name": "", + "contract_address": "0x83e3d76bd9303917ad0383a45fc6df171f1be219", + "n_transfers": 132 + }, + { + "name": "", + "contract_address": "0xdf3f33f2398f85032f244a9496c5c30d37b65a96", + "n_transfers": 131 + }, + { + "name": "", + "contract_address": "0xcea11e8706b67f710c83d79ec7105031decc8068", + "n_transfers": 131 + }, + { + "name": "", + "contract_address": "0x8ed428a5762c4b9b14e7a214fad646b25a339064", + "n_transfers": 131 + }, + { + "name": "", + "contract_address": "0x2346358d22b8b59f25a1cf05bbe86fe762db6134", + "n_transfers": 130 + }, + { + "name": "", + "contract_address": "0x6c10511ddea5f3ed38a0163224198e37b81525bc", + "n_transfers": 130 + }, + { + "name": "", + "contract_address": "0x4f35cfd55969de652c8c0c1927cf3c579a3e3288", + "n_transfers": 130 + }, + { + "name": "", + "contract_address": "0x6b31a2ef5986d283332e4a3a608adb3c09ffdd13", + "n_transfers": 130 + }, + { + "name": "", + "contract_address": "0x69baad9c96cd98437d8b5b6a90c854a1ba2688de", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0x8dc3be37a1d83a174a4d417980bcb455e347ba65", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0x56e81e9cbd38bcf72cb3f5a976ab2a5d96cb0d0b", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0x1266f2370987f0cbcd14dc144e07b8da1dd920a4", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0xc4aeb6cdfac2dc870bb8ac00cc9049319e5d0bf8", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0x824d0f18927842e53fbe7583d99b1e1a3e87556a", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0xbb98d481badf47c255b1901f709787644e26d0d0", + "n_transfers": 129 + }, + { + "name": "", + "contract_address": "0x499659f8c52116e5662def16df7fe34c608d4584", + "n_transfers": 128 + }, + { + "name": "", + "contract_address": "0xc606a4bec95638088496e28f647825c9db145fc4", + "n_transfers": 128 + }, + { + "name": "", + "contract_address": "0xd5cf4c300ec75c4f43f5f7bb6a7c035789755ebd", + "n_transfers": 128 + }, + { + "name": "", + "contract_address": "0xcd893f20df17f88f9474795cb9c48d15ee754680", + "n_transfers": 127 + }, + { + "name": "", + "contract_address": "0xed678608de045609da5a7a459c5416fe25bc5532", + "n_transfers": 127 + }, + { + "name": "", + "contract_address": "0xfb6cb142cd4c97a84485e230bb6505ec1dd61d22", + "n_transfers": 127 + }, + { + "name": "", + "contract_address": "0x707112dc2220917d2bf91d294931c6c267f28f82", + "n_transfers": 126 + }, + { + "name": "", + "contract_address": "0x8af47056903e5ff85dcf5e024427c3e4a3e5e69e", + "n_transfers": 125 + }, + { + "name": "", + "contract_address": "0xf8e94e7d4f2e2cc9a07512ae9813841a0000cb4e", + "n_transfers": 125 + }, + { + "name": "", + "contract_address": "0xf8384521301b02a280984d4c623cd37a5a1ffc4b", + "n_transfers": 125 + }, + { + "name": "", + "contract_address": "0x1cf2ac72ec659be504cb316d4f4587aaf9bfc3c0", + "n_transfers": 125 + }, + { + "name": "", + "contract_address": "0x735fe667993c9e83e15f8045f4fbf4618d2d1b3a", + "n_transfers": 125 + }, + { + "name": "", + "contract_address": "0xd350257ce6e48d1da21f9d4224bce2350b976ba1", + "n_transfers": 124 + }, + { + "name": "", + "contract_address": "0x81881082589d5048b487d55e5cf10f5dfbb63c08", + "n_transfers": 124 + }, + { + "name": "rarible_v1", + "contract_address": "0x20172dab13e0cf9465382b32fe46cd51247cad71", + "n_transfers": 123 + }, + { + "name": "", + "contract_address": "0x4ac3d17fd6c2db18ec619fe2d68d2c22b18378ff", + "n_transfers": 123 + }, + { + "name": "", + "contract_address": "0x8077dc3c272d624a8b356f9fbfdc8649fe830123", + "n_transfers": 123 + }, + { + "name": "", + "contract_address": "0x4c82b42afd72c8505df2e3703f05f2df926ed8ba", + "n_transfers": 123 + }, + { + "name": "", + "contract_address": "0x71ebc46411ebca43a52e68f6e10292a38279d3bf", + "n_transfers": 122 + }, + { + "name": "rarible", + "contract_address": "0xb574528bab3c61c13c2c180bf45f0ec59cdb8eab", + "n_transfers": 122 + }, + { + "name": "", + "contract_address": "0x185f74df3e8c5f2a9fb7b3ec5e90494b91b6ca4e", + "n_transfers": 121 + }, + { + "name": "", + "contract_address": "0xf207a433721722e1d30cb6b7b8e8490b1fdb82d8", + "n_transfers": 120 + }, + { + "name": "", + "contract_address": "0x9d54d4eb630f18724f72910b7f347760241449c6", + "n_transfers": 120 + }, + { + "name": "", + "contract_address": "0x534c33fd0e7a6845c2be8af7b0179cefce8cbed1", + "n_transfers": 120 + }, + { + "name": "", + "contract_address": "0x4871869fbb6afc361b090e1b56e0a20bec8d2d6e", + "n_transfers": 119 + }, + { + "name": "", + "contract_address": "0xae6e071de3b277952b56cb7fc1b5c7cb02d5b4a9", + "n_transfers": 119 + }, + { + "name": "", + "contract_address": "0x3068b3313281f63536042d24562896d080844c95", + "n_transfers": 119 + }, + { + "name": "", + "contract_address": "0x5788fd56b93adc3401b03b64c2021b49f721d744", + "n_transfers": 119 + }, + { + "name": "", + "contract_address": "0x5b133e0fd79ace5449bf925a2521b3c100133527", + "n_transfers": 119 + }, + { + "name": "", + "contract_address": "0x85705c152b90a636ffa84b00736c2d27f982fdb9", + "n_transfers": 119 + }, + { + "name": "", + "contract_address": "0x985fb4b13011f17422f07cc9e8e6ada6e824fae7", + "n_transfers": 119 + }, + { + "name": "rarible", + "contract_address": "0x453de6bb174148de579acf3c0ace98fc0671bccc", + "n_transfers": 118 + }, + { + "name": "", + "contract_address": "0x6c2a20b920a943237688dd6651200cab253f5565", + "n_transfers": 118 + }, + { + "name": "", + "contract_address": "0x4e5377b725fbb319c1e0ccd06b382772839ababa", + "n_transfers": 117 + }, + { + "name": "", + "contract_address": "0xf3367e7d203fa6569f6c95dd71f3da7884465054", + "n_transfers": 117 + }, + { + "name": "", + "contract_address": "0xdf89df85be28e8ee5970f7e8767f5191eedde883", + "n_transfers": 116 + }, + { + "name": "", + "contract_address": "0xa3010f8f26608dcbbd16ec07fc3a32a06e17a729", + "n_transfers": 116 + }, + { + "name": "", + "contract_address": "0x7a4a99ce1ab48fa9d99cbc0e105be36d4af9983d", + "n_transfers": 116 + }, + { + "name": "rarible", + "contract_address": "0xf79ab01289f85b970bf33f0543e41409ed2e1c1f", + "n_transfers": 116 + }, + { + "name": "rarible", + "contract_address": "0x3216502ccf3cbe147ed3d75d44e9adf6e8054806", + "n_transfers": 115 + }, + { + "name": "", + "contract_address": "0x99c38274e0dad0b86ccf333c85cc57e1df8c391c", + "n_transfers": 115 + }, + { + "name": "", + "contract_address": "0xa3868833a1bad10f1158b237a6a90144afd71a32", + "n_transfers": 115 + }, + { + "name": "", + "contract_address": "0x0f130a170127aa4e5776ab05305ff614ff352253", + "n_transfers": 115 + }, + { + "name": "", + "contract_address": "0xaeee5103b4b4be04ddd35a3c7ba54a8cb984f196", + "n_transfers": 115 + }, + { + "name": "rarible", + "contract_address": "0x22a40a30b5e581f5bdc6afea7afedb3fa735d9d9", + "n_transfers": 115 + }, + { + "name": "", + "contract_address": "0x5f859ba9a441fb7d3a68f9f3968ee2ba7562c069", + "n_transfers": 114 + }, + { + "name": "", + "contract_address": "0x58c22ca208e2066fa55fbe79b6b9a55db0a4fe85", + "n_transfers": 114 + }, + { + "name": "rarible_v1", + "contract_address": "0x0eefb8cf8128019b1609fbab1b5a5afb757863f6", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0xb80776700778e7415da08ef65fa389f75737fb95", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0x4e43f591224dcaa560c56344830f2b412e6196cc", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0xc3724ecc219cfcbb29b6418ea8ec1dc91559ac12", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0x1d40a5145b5eb1cd0d0b20de5c8fb13e40585d01", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0xffdf17652cca46eb98a214cb3e413c8661241e49", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0xc2610cfa7e117390fe0daec4096f0e8af000db5c", + "n_transfers": 113 + }, + { + "name": "", + "contract_address": "0xa9815861607e36d301d14bf67c648dd170e355ae", + "n_transfers": 112 + }, + { + "name": "", + "contract_address": "0x0e9cfe1a731149696e727f55a1e7da60db426396", + "n_transfers": 112 + }, + { + "name": "", + "contract_address": "0x1fc4336d4b3aa163ca855d45555207fddb70f719", + "n_transfers": 112 + }, + { + "name": "", + "contract_address": "0x2d18f481270c39f0f5eb1c5f56f25d7d4825f7c1", + "n_transfers": 112 + }, + { + "name": "", + "contract_address": "0x3537fe1a01f684fb0b78d41f8945f01105180307", + "n_transfers": 112 + }, + { + "name": "", + "contract_address": "0x5536b6aadd29eaf0db112bb28046a5fad3761bd4", + "n_transfers": 110 + }, + { + "name": "", + "contract_address": "0x166c740d4f42dafa1037b12ad4378a20f246006c", + "n_transfers": 110 + }, + { + "name": "", + "contract_address": "0x27bab5db0f14590feaed4bf00798dadab90f2fcd", + "n_transfers": 110 + }, + { + "name": "", + "contract_address": "0xbf75124def5d00e3165a5fc710df9fbcf3a7ebb9", + "n_transfers": 110 + }, + { + "name": "", + "contract_address": "0xf7562ec5a310c82c79d2c6b898788a9814f6eba5", + "n_transfers": 110 + }, + { + "name": "rarible_v1", + "contract_address": "0xf170b6b64c4c7d813c88e551aec3037a40e756c6", + "n_transfers": 109 + }, + { + "name": "", + "contract_address": "0xf6dff5192b71fc273759cdef6c3765273e235291", + "n_transfers": 109 + }, + { + "name": "", + "contract_address": "0x59516426a8bb328d2f546b05421cbc047042e38f", + "n_transfers": 109 + }, + { + "name": "rarible", + "contract_address": "0xe245da25d6d60d8dfda021966dc9df422fbf44e3", + "n_transfers": 109 + }, + { + "name": "", + "contract_address": "0xaca1abb1d1f996189c8e2d5de4b6261c3e50bd67", + "n_transfers": 109 + }, + { + "name": "", + "contract_address": "0xbeab1b990726a363e89299f73e98dd2013892436", + "n_transfers": 108 + }, + { + "name": "rarible", + "contract_address": "0xa2b35bbaa4a3050aad0cb205365ec2d8a24ccc1c", + "n_transfers": 108 + }, + { + "name": "rarible", + "contract_address": "0x448577972f709c1751da5bfef4c9486671baec4c", + "n_transfers": 108 + }, + { + "name": "", + "contract_address": "0x1ced6f767092c099fc1cae22a2629772b0ba936a", + "n_transfers": 108 + }, + { + "name": "", + "contract_address": "0x7ce0ba97ed5967082b512d047b837a9229ecdb4b", + "n_transfers": 108 + }, + { + "name": "", + "contract_address": "0xfc364253c4485b5f5cb57e3b10cb051d5d37540b", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0x73d203f6138030f17706a99d760e05d01cab83e8", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0xe7f8c066ea90be005032262fa13b9c6aa5182bce", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0x18decfa8e493ef11c42484470fadc7340abdd9d5", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0x376c4c43e092bd48a9cdc8259dec833bbd6d6860", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0x5ef6032189bbf1c12503c32a91bf68d62d2e34ad", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0x65841bc71dae7ee1577f136aa85b4aab1dd99525", + "n_transfers": 107 + }, + { + "name": "", + "contract_address": "0x3d0c4e9bde15f2681902f9f291b3c905b7ea46f9", + "n_transfers": 106 + }, + { + "name": "", + "contract_address": "0x1181a0f309fedfc00fb3f5d8fe610b5a16026244", + "n_transfers": 106 + }, + { + "name": "", + "contract_address": "0xb5079593acc530e09d552acb2ce4a67194f428f4", + "n_transfers": 106 + }, + { + "name": "", + "contract_address": "0xb104963fb51b32818059ee6a2cbc9ac66b56117c", + "n_transfers": 106 + }, + { + "name": "", + "contract_address": "0x76ebcbe814a70a6df2c59f86f84293208e5eb943", + "n_transfers": 106 + }, + { + "name": "", + "contract_address": "0x2511a5ed6dc83ca4b1221738172de37f28d0e77d", + "n_transfers": 105 + }, + { + "name": "", + "contract_address": "0x74162f5491efa02ee6673d6add8dc79222062169", + "n_transfers": 105 + }, + { + "name": "", + "contract_address": "0xa1a290216cf2cab4cf3bf8cefa57662c3ee554f7", + "n_transfers": 105 + }, + { + "name": "", + "contract_address": "0x48832491784ce7f2316a0b4dfeeac4c701a10b2f", + "n_transfers": 105 + }, + { + "name": "", + "contract_address": "0xfef5bdaf153e3b59165974d382cdf70f9883edec", + "n_transfers": 104 + }, + { + "name": "", + "contract_address": "0xa2f48155742730dd1f6c8b434b2ce44fef170820", + "n_transfers": 104 + }, + { + "name": "", + "contract_address": "0x656f6ff3d6f0652494aa0ce4b07d14c0a44e2702", + "n_transfers": 104 + }, + { + "name": "", + "contract_address": "0x99a845b952375f0df89ff50fee87620c05b13093", + "n_transfers": 104 + }, + { + "name": "", + "contract_address": "0x4d27c5de66dbc7acacc4c65426b331879cc40b8c", + "n_transfers": 104 + }, + { + "name": "rarible", + "contract_address": "0xae28f53deb0d0dbb224bedfe3b70f1095781befb", + "n_transfers": 104 + }, + { + "name": "", + "contract_address": "0xfb4b8e1cd883aed8222e89c0b6cee37ea232461e", + "n_transfers": 104 + }, + { + "name": "rarible_v1", + "contract_address": "0xddcb20b812aae3674098109efa59cec53560240c", + "n_transfers": 104 + }, + { + "name": "", + "contract_address": "0x8db20e908afef5695baa63ef076189a9b37051cc", + "n_transfers": 103 + }, + { + "name": "", + "contract_address": "0x59be722aba100b488300cd65e4278be2fc783617", + "n_transfers": 103 + }, + { + "name": "", + "contract_address": "0x77f81a6a07c22040d9b8e24dcf24d3a201682bb4", + "n_transfers": 103 + }, + { + "name": "", + "contract_address": "0x5b63477f3238c1432e77d2e3ae53db9233f570ff", + "n_transfers": 102 + }, + { + "name": "", + "contract_address": "0x9aa004f140b8358b8593f9379cd323d1043b97e5", + "n_transfers": 102 + }, + { + "name": "", + "contract_address": "0x81dea2142bd84f221f357c07491948a1295d75b9", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xf7ef563c05f9db4f6451f4087dbd2ab161c97fcc", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xa890d0d0b94269f3065d1e70f0b80cf7028c4ebc", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0x8224ccce8a2833df69b7ecb897a3f5e1dfc4ad9f", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xba7f452035e90ce71a8b42de71f38c9863f1d0da", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xb32601bbc5136842b716a815d6cafe9a490f604d", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xb8119f5bb2f1c006a7c7ee01c3d8d4082b725ebe", + "n_transfers": 101 + }, + { + "name": "rarible", + "contract_address": "0x882ecef51418d6bcf6ff9c3c9991b09ae8d1d6af", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xe971a9516576bba9ebcffea7e755e846106f7f95", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0x8463f2b4e76bc7dc9a2c11eeaa3c6d9b27b0de9b", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0x27dcc4dcdc1785e4238369726c9ccb14ec3936b2", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xbb23dfb032477e251b260d19aec4c3641693c688", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xa3f0100e53cfffc34822c8b82ffde1e91c429472", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0x57400f99054262036753bab44418d49351f7661d", + "n_transfers": 101 + }, + { + "name": "", + "contract_address": "0xeefc7d9cf84f55961f375a5d68c7a6ab6efaabb7", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x9099d3b2b0ce7e2db0729f338d237c2489df5850", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x3a1957a0b9755d78c77e301410b254b6147a400c", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xc34bf59caf10df69af433cc4b49e956b4d9c31d2", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xda3cede5aabb281d4181a486e4e167bf22a10e7b", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xfa7001a0310b5e69b7b95b72aebaa66c72e084bf", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x7743452fcdaeba368765cc74dcf56f513f36d3d7", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xf6ff2c2fbd3ad41ed020307b7eea44f65a95c6c6", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xc3f5985e036e4a9dfdb0a7c47557fcf767c275a3", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x1452a116e3defcb2caa669e9ae6e5d293a5034b6", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xa3c195b5924f0e05528d27bc55d1f158b4c17d06", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x2a378c8d96e7d994fb9bec6adb7c6af2fe772c3b", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0xa23c7ab878dd220d08e2d3a48f089b433a3b8b46", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x45db199d0d54dcda7795ec4d45d8554a01c355b8", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x7abe4b30a1f61c02e43b17515b266736dd938dd7", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x6e5322ee2ae9ac0f90e979b8aced243a2ea8722d", + "n_transfers": 100 + }, + { + "name": "", + "contract_address": "0x22d31a97da148476aa2b76d63ef2f20b53f7ab4e", + "n_transfers": 99 + }, + { + "name": "", + "contract_address": "0x22eadb3b97d110647cb6ad5d6d4af1ae8b57669b", + "n_transfers": 99 + }, + { + "name": "", + "contract_address": "0x05dbbe4baed86d9b1da83e67dea6326e2617dad2", + "n_transfers": 99 + }, + { + "name": "", + "contract_address": "0x7da4d3ce457ee7d3c9872716ef52f691cbffe866", + "n_transfers": 99 + }, + { + "name": "", + "contract_address": "0x0d1e686af0e86bebce1f2fa428cd33b699319b73", + "n_transfers": 98 + }, + { + "name": "", + "contract_address": "0xd2bae9a30a40376d25353773010ffe52dba0d688", + "n_transfers": 98 + }, + { + "name": "", + "contract_address": "0x956bf33cde2292487f70d2980bac0adebba04e52", + "n_transfers": 98 + }, + { + "name": "", + "contract_address": "0xb2566e79f72ce620ede1fae1dab3b34fb502a319", + "n_transfers": 98 + }, + { + "name": "fortube", + "contract_address": "0xbb4e7b7996e0d2f4d2fbe61406ee3b2a42cd7418", + "n_transfers": 98 + }, + { + "name": "", + "contract_address": "0xe20af22a530bf225d239e1cc22e65eebb3798b1e", + "n_transfers": 97 + }, + { + "name": "", + "contract_address": "0x22cc8b3666e926bcbf58cb726143b2b044c80a0c", + "n_transfers": 97 + }, + { + "name": "", + "contract_address": "0xd75c0967a159611dd317b72df68f8edf291905de", + "n_transfers": 97 + }, + { + "name": "", + "contract_address": "0x998ea5b5461499be35c0fa57ace1ead8058b024f", + "n_transfers": 97 + }, + { + "name": "rarible", + "contract_address": "0x5ab35e002164f38a50be42bdd6d0af76340bd305", + "n_transfers": 96 + }, + { + "name": "", + "contract_address": "0xdc32ff5aada11b5ce3caf2d00459cfda05293f96", + "n_transfers": 96 + }, + { + "name": "", + "contract_address": "0x86c8732e9fca604d7aa676f80030ebdf6b32ff3b", + "n_transfers": 96 + }, + { + "name": "", + "contract_address": "0x8235e1f5893fe89ec6f7e6dcd989abf6028dbcdf", + "n_transfers": 96 + }, + { + "name": "", + "contract_address": "0xa1d983fa416258854d9ec66252fa3e2822cd35c1", + "n_transfers": 96 + }, + { + "name": "", + "contract_address": "0x8ae8d2ae74a96595bcdab803b563f594009e3db2", + "n_transfers": 95 + }, + { + "name": "", + "contract_address": "0x26b649afed9d33a6209959921555d3a475192405", + "n_transfers": 95 + }, + { + "name": "", + "contract_address": "0x43ccd9ea8f64b8918267f7ee4a071d3e9168f9cd", + "n_transfers": 95 + }, + { + "name": "", + "contract_address": "0x9eca42cc4df4fb49693ba14fc98a5caa7168a05b", + "n_transfers": 95 + }, + { + "name": "", + "contract_address": "0x4c21ecd823e0c0d8eda69fd15f3b1c8d7ffe125a", + "n_transfers": 95 + }, + { + "name": "", + "contract_address": "0x8cc6736215a153a7685fe116d61c1143d1f56f66", + "n_transfers": 95 + }, + { + "name": "rarible", + "contract_address": "0x9126b817ccca682beaa9f4eae734948ee1166af1", + "n_transfers": 94 + }, + { + "name": "unlock", + "contract_address": "0x6ca105d2af7095b1bceeb6a2113d168dddcd57cf", + "n_transfers": 94 + }, + { + "name": "", + "contract_address": "0xc75e88ec39e4be9a3e735d52259cf0cd71061d22", + "n_transfers": 94 + }, + { + "name": "", + "contract_address": "0xdc0bb69a6cf11c9869f771b7466b92cbfabc7c44", + "n_transfers": 94 + }, + { + "name": "", + "contract_address": "0x5617e343222ad476402317081c1bfe09f24ee777", + "n_transfers": 94 + }, + { + "name": "", + "contract_address": "0xb52c98c13be439d667f723c825fb41e0dc47aaba", + "n_transfers": 94 + }, + { + "name": "", + "contract_address": "0x12eee96a954d790d50a0c08a3900da5e3131cb13", + "n_transfers": 94 + }, + { + "name": "", + "contract_address": "0x82a4981c51d0e0a81c7e818722ed8bcdfa01f469", + "n_transfers": 93 + }, + { + "name": "", + "contract_address": "0x97b9f21b41041e344f5bd71e3e86b69e79dcc0a6", + "n_transfers": 93 + }, + { + "name": "", + "contract_address": "0x48acc9ccee8b3581325fdf5171a997b02e95f781", + "n_transfers": 93 + }, + { + "name": "", + "contract_address": "0x47cbe25bbdb40a774cc37e1da92d10c2c7ec897f", + "n_transfers": 92 + }, + { + "name": "", + "contract_address": "0x73cc407fbae89d69f20cf15d51aa98171dc5703c", + "n_transfers": 92 + }, + { + "name": "", + "contract_address": "0xe0d6dd8ebacd5baf9b26ce769f8ec7103380897b", + "n_transfers": 92 + }, + { + "name": "", + "contract_address": "0x74cab08cdebf88d400f3c3b46c0bcaa7b2e8ca27", + "n_transfers": 92 + }, + { + "name": "", + "contract_address": "0x0b585b2c3a3ef7cf72b17a21592ee72073e39af8", + "n_transfers": 92 + }, + { + "name": "", + "contract_address": "0xa197d1829bfca8bfad6e6d2a6f7580e6b91196e7", + "n_transfers": 92 + }, + { + "name": "rarible_v1", + "contract_address": "0xbe05d95647ac4b51bca501b7e97d81d5ba470cce", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0x495bea09be965ccdbf3f0456babc15bf98dbaafa", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0x5dd6f8069744c5df5622267a795fb0d0be041ac8", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0xce5b3f7487181d3f915234b2f0953cebeea5f9e0", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0x08d9c8d473cbcea92780780bc09c86e1afd82d68", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0x3dbfe3eeb9a4f5f540a4690ec1c538179f49397f", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0x3bae371d4ae6e47b169ca23e980d3d6509b19473", + "n_transfers": 91 + }, + { + "name": "", + "contract_address": "0x456ea87617b1028868b8961dfd10b36056ca28a6", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0x1438539735b204bde1cbb45da5495272afd29dd7", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0x778cc248cdddfd926bfba49850098eac16b0d12a", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0xbca7eeed1fadd22ad8e1eb4fccf8c221922af875", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0xf6ece4711f447ca4e8b4dfbc23c192a5832569f9", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0x851ed6ff75ad265721334664c5d909c4ad1b3866", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0xc5bca3b74f5ab61c2c8b4e47e1fef188bb4a3dca", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0x8b63c8a2d68defdaadd8094240b2dc6e564eb946", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0x152242cd9dba772c4e541b51c556772caf47e985", + "n_transfers": 90 + }, + { + "name": "", + "contract_address": "0xd652d2633cdbfd5f27f50cddb098e708fa8433f3", + "n_transfers": 89 + }, + { + "name": "", + "contract_address": "0x6b1a68af1cbeca7d4abf27f1c606459548ae239f", + "n_transfers": 89 + }, + { + "name": "", + "contract_address": "0x3dd00340632e65b08ad962388c0bb76c8f3edd05", + "n_transfers": 89 + }, + { + "name": "", + "contract_address": "0x61f863eb520ea2130d6903de7a5c5fff799d1251", + "n_transfers": 89 + }, + { + "name": "", + "contract_address": "0x85836de375fd2d5dbf3a0175a2dfc7f53c54259a", + "n_transfers": 89 + }, + { + "name": "", + "contract_address": "0xb882a8fd03be2b001843ad831bd9b451cd30fbec", + "n_transfers": 89 + }, + { + "name": "rarible_v1", + "contract_address": "0xefdb2becf9c12952b73e9f3e3ebc5c37dec6df79", + "n_transfers": 88 + }, + { + "name": "", + "contract_address": "0x14b76477739b4eeeab7af197f638d882373b8329", + "n_transfers": 88 + }, + { + "name": "", + "contract_address": "0xbcc1cea95a1cc7f79404664bef9a9671bdc12174", + "n_transfers": 88 + }, + { + "name": "rarible", + "contract_address": "0xe42e8ea1041fb408a760c260c619c9f2c6688b60", + "n_transfers": 88 + }, + { + "name": "", + "contract_address": "0xcaafe532e5f9fefd95b956d4e9f4327c60a17b1d", + "n_transfers": 88 + }, + { + "name": "", + "contract_address": "0x5865ff2cbd045ef1cfe19739df19e83b32b783b4", + "n_transfers": 88 + }, + { + "name": "rarible", + "contract_address": "0xa915455f225fc13f32b0a6934b4e2d7467bd9e66", + "n_transfers": 87 + }, + { + "name": "", + "contract_address": "0x39a54d3484ecfe677640a99b803a01b23385a801", + "n_transfers": 87 + }, + { + "name": "", + "contract_address": "0xfc046c71db6266f9f17b31a74e5efd5ecf906e0b", + "n_transfers": 87 + }, + { + "name": "", + "contract_address": "0xc5535fb98315edd20f6ad1f8c9d0303d0b96f869", + "n_transfers": 87 + }, + { + "name": "", + "contract_address": "0x5716f2b2d8c1fea81ce899b4e9937549df612ce7", + "n_transfers": 87 + }, + { + "name": "", + "contract_address": "0x47344543c4c8887ce86f6c4ad8c253457b1b9697", + "n_transfers": 87 + }, + { + "name": "", + "contract_address": "0x728d21f7373ee21268f793dcc6f65cd993b49da2", + "n_transfers": 86 + }, + { + "name": "", + "contract_address": "0x3f4ea904e3ace63289e46e4dfa0b08aca4530e68", + "n_transfers": 86 + }, + { + "name": "", + "contract_address": "0xa8546f10bce684e11294d3706253e30f060f3771", + "n_transfers": 86 + }, + { + "name": "", + "contract_address": "0xf91901f1742564158ad40e6394dd3859a0299291", + "n_transfers": 86 + }, + { + "name": "", + "contract_address": "0xad8edf39ff1bfcc25477e37eb4465b4a9a2aae01", + "n_transfers": 86 + }, + { + "name": "", + "contract_address": "0x4a421dcb413337c0ff86e1fa3d35904c71005998", + "n_transfers": 85 + }, + { + "name": "", + "contract_address": "0x89d142bef8605646881c68dcd48cdaf17fe597dc", + "n_transfers": 85 + }, + { + "name": "", + "contract_address": "0xf3eab3317039ba73dfacd779f58d14b2de052a73", + "n_transfers": 85 + }, + { + "name": "", + "contract_address": "0x19519caa3f0c1d5dae3bc92e37a7945f9e947ccf", + "n_transfers": 84 + }, + { + "name": "", + "contract_address": "0x3d9b128ce781a4a9c1057f785d97131a6357ca38", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0x7145d129706c19942c75f620a266e41ba86fe0ff", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0x0f959b35c936c643bb5aaab9db0e4dc7c2eee784", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0x6f4cb0ed977d6dce6cc25dcd5f18229561f5136f", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0x9e9ebb87e51a29b0fd21ad0ac971199f4d1335a7", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0xbfa615e6ddc5bf9fd14deea85a753553b2baba9b", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0x667dc893ee7214aed4065bb6aff8234d771ed2e3", + "n_transfers": 83 + }, + { + "name": "", + "contract_address": "0xef547d017f64863a1a741864d900956081744238", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0x2e06808df81e860325c899ff492edbd909231355", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0x99b546a19cc1ec8ec9a6ce781a237ddb642dda77", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0xd29c2975fa2769bee254fa6497a97cc39a3b85e8", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0xf9acfb7a7b83344c636e3f3099ef11767b4488fd", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0xece50e2d27ee3decd5bd0063573c65c8e38beb9b", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0x991180b1d68addcb74861d5382c55e5280f0d05a", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0x586fd5386f96b45b0092077a37f9b541ce881927", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0x9caeba1049f2f7f56ec561186b3ca6009e4b7b86", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0x09c09baa9502a7b0c74c24e7ff72fd25c864c266", + "n_transfers": 82 + }, + { + "name": "", + "contract_address": "0xb372a7084bd77bc31cf72de28d1b08c69a0c0528", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0x78c54a7523e7bdd63819a8affba7e8702cd48376", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0xe6dc6f2577bc0cb55c0dca518bd8121b206d557d", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0xb98b83027d16f1da8ab54564be4b6a713401cd53", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0xb1fea2dc4e907a9e12b84d68ac94ab4ecadb4aca", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0xac4dd40f008dae795d897f0c676bfbf08dff6b38", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0xf97c23351df358a25cbd89981d4e78e6ed985289", + "n_transfers": 81 + }, + { + "name": "", + "contract_address": "0xc5b463f2c5abfa13afbd5965920db48c3701444e", + "n_transfers": 80 + }, + { + "name": "", + "contract_address": "0x4161f8c5f7948c4a4531b947231fc8e2696b7135", + "n_transfers": 80 + }, + { + "name": "", + "contract_address": "0xb56fe48aef062785b4a7eae2cffaa9572d539df0", + "n_transfers": 80 + }, + { + "name": "", + "contract_address": "0x995f28884fb527c93cd2529f6f8e3f9ac5991b00", + "n_transfers": 80 + }, + { + "name": "rarible", + "contract_address": "0xd50a41aaa4add330fc92959f0dcc9ec61e2bfb43", + "n_transfers": 80 + }, + { + "name": "", + "contract_address": "0x4f4d9978f0c4488e037ed72cfda93eec0f7d281e", + "n_transfers": 80 + }, + { + "name": "", + "contract_address": "0xafc11ea0d645db4b0f5081429eca8d5a89a96b93", + "n_transfers": 80 + }, + { + "name": "", + "contract_address": "0xa6f3a0d10c49c8dd1e44d4a6d1a8efa27baa6e60", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0x282be8639d004c6c48480269cd37e9e6274eab42", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0xd04a6ab288ae42ae603d21e554a51a76faa553ac", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0x055d9683acf78f097249de7321be9a58c29800ca", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0xa6133ae4d8679f9f3d9212d3b4ad1d248607f5e8", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0x0843a4c4f1ad0b929a07a99c4ce8fbf3dd9d6eed", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0x51d041a67d3dc1de9921cef0bac5f5237c92d819", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0xe558788785e8c49a8589e87fb77b18f1130d919e", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0x0fd4c917eeca6fa2dc2cc9010da28900d98c77de", + "n_transfers": 79 + }, + { + "name": "", + "contract_address": "0xab7fcc33e99cc21701459fb5c200ee2602eab0ba", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x8600a64efb5db656a3c6580d6969735cac8e4237", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0xf8a1d47abd279c0da54a0225a7d52467cd479c1a", + "n_transfers": 78 + }, + { + "name": "rarible_v1", + "contract_address": "0x455f9e7020a0b1fe5cbdebb11d5e3ec2c585fe36", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x60e31a1a38213ec3ba1c7345ea49c8b57f7ba4d7", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x86b1c0617611cbfacbabb800a68833c79b3fd189", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x828d4d788d82f7fbe3aa71e808ba5ead92fc854f", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x21e6348da1793ce4700180ba56c627cea756f5c9", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0xfe54f2007b07af0ebb8bf1eb3b3ef2cef0db094f", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x667b7a99d6912ec21c242f4410d86626c8b9416d", + "n_transfers": 78 + }, + { + "name": "", + "contract_address": "0x3eb63d51264ce35b7e3320ae2e70813e264c610e", + "n_transfers": 77 + }, + { + "name": "rarible_v1", + "contract_address": "0xee5d869ace05628442463041424e4fc176117255", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0x838fd8b91f56fd89401edf414cbf6fa6b830ec36", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0x765433c059efee858239a820fe58c44973e7283d", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0x071712a6711266bcccfba1664cbf15f4f446e62b", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0x25710b50e1db29d38e2e25e39eb4d7e6e22e81a1", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0xb8b5fa9ccddeb5e71acb6864819a143a96e620a4", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0xd9627ccdf17b09bc723dea7a8d2884f4a6a0c838", + "n_transfers": 77 + }, + { + "name": "", + "contract_address": "0xfd6e99f2d5d092a95f6483b243203bee2dc0c265", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0xcd38e77582b656eacd9b442095a28e232891583a", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0xb14420e754f27fe1722f575f49017da44e4b86f3", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0x8d6e0cfbdce3de21cd8b5bfc685981475738b198", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0xe477e967ac450ac6448424c637f3536c1d618135", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0x199a6b43c14193344542ec431b7cbd7a89a6f9de", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0x2cb77ce67d441e564ff6a50785d905fb8d58dfef", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0xeb2f799068e4bfa6f43a785da5379929c8d0db3c", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0x811a804323d2f592d9736b70199a94b9e97c53a8", + "n_transfers": 76 + }, + { + "name": "", + "contract_address": "0x236b55f1a685c035c34c38f3657dc1cebaaeda53", + "n_transfers": 76 + }, + { + "name": "rarible", + "contract_address": "0xedbca34b7b113fd3694a2450b5787771add5a7d4", + "n_transfers": 75 + }, + { + "name": "", + "contract_address": "0xbd9cb248c4db0d98f6e37f83fc0d68febdf3d478", + "n_transfers": 75 + }, + { + "name": "", + "contract_address": "0xdf0eab397e42424c914aae524049d18852af530e", + "n_transfers": 75 + }, + { + "name": "rarible", + "contract_address": "0xab3ab963741b6c21cd86dc4ffdb5147eab45547f", + "n_transfers": 75 + }, + { + "name": "", + "contract_address": "0x8aa1b6d4005b69a7c41ab1ab3b6d86d9a3bd093a", + "n_transfers": 75 + }, + { + "name": "", + "contract_address": "0x6abfaa53427aa0bb4ddd4a529e77d1cd50edea52", + "n_transfers": 75 + }, + { + "name": "", + "contract_address": "0x63d835a51c68b37ebc8b4ea5856b5e07a977abfa", + "n_transfers": 75 + }, + { + "name": "", + "contract_address": "0xef5c169598827e8eb31eef695cdcdb34e3a8e0d3", + "n_transfers": 74 + }, + { + "name": "", + "contract_address": "0x65b9344d3d81f2c00da30e303f8ec40110857495", + "n_transfers": 74 + }, + { + "name": "", + "contract_address": "0xf38b184c9da4a9f710350a557f1b09b489896ca0", + "n_transfers": 74 + }, + { + "name": "", + "contract_address": "0x3be82b371c4b5755914830619e40a78442bed634", + "n_transfers": 74 + }, + { + "name": "", + "contract_address": "0xd6d53e83c8e165e9134f8b5c1f6cad59caa364f8", + "n_transfers": 74 + }, + { + "name": "", + "contract_address": "0x5df4602e7f38a91ea7724fc167f0c67f61604b1e", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0x8be308b0a4cb6753783e078cf12e4a236c11a85a", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0x48d97463a455c39d8149fdd73ac5b7fc8a5ec3b1", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0x7b10e11e71c433ed1a99690a8f662ebbaf5497e0", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0x021530dac7ae7af3a9748b63b09e1134fc479a81", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0xe8aa46d8d5565cb7f2f3d9686b0c77f3a6813504", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0xae564767d77d825d645148858fccaacab4032f2a", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0xefb21d94bbd3271601c64aa7829ffc69788bdc98", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0xe1fc74a4f7a303b6a7d16c73171734d11a271c1d", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0x9443c1baadf34abd84b8509ee1f4104dc1e5d2ae", + "n_transfers": 73 + }, + { + "name": "", + "contract_address": "0xaf7d37efb8fe7198ed55cb5254ef0b357db6049f", + "n_transfers": 72 + }, + { + "name": "", + "contract_address": "0x2c115fd47e9aa566176586a07847ccf2de678e28", + "n_transfers": 72 + }, + { + "name": "", + "contract_address": "0xdd9c7bc159dacb19c9f6b9d7e23948c87aa2397f", + "n_transfers": 72 + }, + { + "name": "", + "contract_address": "0xc9b66d28e107c4bdc2e70bc30edef014127aae80", + "n_transfers": 72 + }, + { + "name": "", + "contract_address": "0x2af271bf526d1638d215d94c8e0da227cf548f18", + "n_transfers": 72 + }, + { + "name": "", + "contract_address": "0x91d41ac0c345e121a1c3ed147134b3c0692978d1", + "n_transfers": 71 + }, + { + "name": "rarible", + "contract_address": "0x2ddb047b67080f28db82fe4be5d1dba14b446bf8", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0xffe714740ee83c20590855125b06eb4667f03de2", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0x64d08c556a6b582a41e3e355fccb936cef024bc0", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0x15a7bd71f48f38bc8e203962d64461035716b8d1", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0x344a6a1a1d7066bf068efec73d724d06089c2063", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0xb339c6361ecdfe9dcf6a27a348d0ea2182bffeb3", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0xf2a22a760026b1978118d7e256b4420cc531e87b", + "n_transfers": 71 + }, + { + "name": "", + "contract_address": "0xab173f5dff2966d83289f047cf4840e15f9d8992", + "n_transfers": 71 + }, + { + "name": "rarible_v1", + "contract_address": "0xae03fae2a53b5ab3797faf3e8d6af8cde4594e2a", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0x34a4a5631a263823025e55a5c6ad068732e07a37", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0xa236b93a2e6cb8d46d4c2d9f7b6ce5dde850bcb3", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0xbb03f7691ec57172ee6d2e1302f7dd30e25b33ef", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0x7d26991455a9eaf93ac21d214aa70aca01a3b12d", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0x37fcb86ae6c26e58afc522245533694fefe18476", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0x0e49144b8b8d228eb7d266f15b2e140fea72a54e", + "n_transfers": 70 + }, + { + "name": "rarible", + "contract_address": "0xb50235cd3161f9237facef4e96e9926e813fdcd5", + "n_transfers": 70 + }, + { + "name": "rarible", + "contract_address": "0x362b0e8036c9eed868efae1f9e5c5eb16a1bd4b1", + "n_transfers": 70 + }, + { + "name": "centrifuge", + "contract_address": "0x9ab3ada106afdfae83f13428e40da70b3a22c50c", + "n_transfers": 70 + }, + { + "name": "", + "contract_address": "0x752aa32a2cc49aed842874326379ea1f95b1cbe6", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0x657ee6e97dbc404d22dad686a1ea5006151981db", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0xf1ae2f6991b7255d3b5266e6c56333858b3ebdd6", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0xf45952c9b501ccac5bbe9016ea4a23c3fdf9eb16", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0x380aceb3b976d7e724ed3ccf05309a30b99d48ab", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0x5ba91749961e7776ccf7652eb28dd18252bf443c", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0xc5719917b5dc935cdfc26fec8f3a64b01f6dc220", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0x61c52517a1801bc1cfd393f75809f1e28c7e1cea", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0xcdd58c87e0e21e28ee78902b02fff533bc3c7738", + "n_transfers": 69 + }, + { + "name": "", + "contract_address": "0xc8f6f80b2e18ab1f928c84fb4e144abea51c7367", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x64cbc6b5b5f1f10a213faee828a5f43dc385ad59", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x4f9f4ef3d4bde69e6dbb332f4779b612adb63d21", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0xa0278b6132b7ff63391f0f9360862a383431643f", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x057656a0dfd218227a3a5edb5898b565aa4f915e", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x69ae84b7e80d72d8f6241dd72ae0c331738f334a", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x35f7319878556806e9f5b66f9d3b4506c16d3bbb", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x5eea8902ba05a5ed0ea7e36c7bbf2201a82107e2", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0xbd94f6c90c667dfd46f85ddb4de41fd0bfe4e8d8", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0x760dd1cbe97227326f626836427c26c3db33f172", + "n_transfers": 68 + }, + { + "name": "", + "contract_address": "0xa83af7309373b925908b21d742f0795558922cdc", + "n_transfers": 67 + }, + { + "name": "rarible_v1", + "contract_address": "0x5a9a2674bbcf3f4d55f3ab46fd2d104e47467e53", + "n_transfers": 67 + }, + { + "name": "", + "contract_address": "0x6529efcd919ebd7e08859946ce36b26802df65ec", + "n_transfers": 67 + }, + { + "name": "", + "contract_address": "0x20f82d89e6dd70d0d5cfb4b5f429fa41ab3e2b58", + "n_transfers": 67 + }, + { + "name": "", + "contract_address": "0x7c523c42ad255e5b270b12fee2ecc1103e88a9dc", + "n_transfers": 67 + }, + { + "name": "rarible_v1", + "contract_address": "0x9b9637ebaa40f13553b250d6c0b2c0a21023e2f5", + "n_transfers": 66 + }, + { + "name": "", + "contract_address": "0x8e81712892d9268050a33350cf81f604f026d18d", + "n_transfers": 66 + }, + { + "name": "", + "contract_address": "0x45103fd6a2d9b8b19504eda7dfee0eba27a49aff", + "n_transfers": 66 + }, + { + "name": "", + "contract_address": "0x28ac93a1274e11b00829e3f9c391336d4dc5adc8", + "n_transfers": 66 + }, + { + "name": "", + "contract_address": "0x74c15877d8a4d4e193719e4c36f0076b9d0ce4b5", + "n_transfers": 66 + }, + { + "name": "", + "contract_address": "0x91d12acb6d2548f7a87874b400dfa8739f31226d", + "n_transfers": 66 + }, + { + "name": "", + "contract_address": "0x7038e9d2c6f5f84469a84cf9bc5f4909bb6ac5e0", + "n_transfers": 65 + }, + { + "name": "rarible_v1", + "contract_address": "0x7e61ef40aa09f6fa557519bc93ecddefcd61c753", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x4cad8bee69b5c7780227da7cfb2969198df2208b", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x118ac664ae5595562e2405b1788267c87f52c549", + "n_transfers": 65 + }, + { + "name": "rarible", + "contract_address": "0x29822eb67f98d99d5e3250bd4ae5c9574df6f61a", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x5eef0e02b6f84f5b13543ed41df975b751b33182", + "n_transfers": 65 + }, + { + "name": "rarible", + "contract_address": "0x5f4becdcfcbeaf8274b6905b101aaf44ac10012c", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x641dd4a952e0f7a4957fa8c9614eacf8fe550d25", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x3ffb992e0346278519164c04d401ae0321f83731", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x7487099fe0d35aaf022316003452821656b5ba39", + "n_transfers": 65 + }, + { + "name": "fortube", + "contract_address": "0xc2d809ecbad42b13d7d431adbf2abd7039cf5977", + "n_transfers": 65 + }, + { + "name": "", + "contract_address": "0x7a31ded4d9dd85cf61636c89f8a2f55db6264730", + "n_transfers": 64 + }, + { + "name": "", + "contract_address": "0xe2b339c3283b706c6a6001b4565f0ffb872fb45e", + "n_transfers": 64 + }, + { + "name": "", + "contract_address": "0x4a449450a33ebf70ff84e931c37b9c72711a77ea", + "n_transfers": 64 + }, + { + "name": "", + "contract_address": "0x3c8ea66ca4ef569d9fd350041828940f681eb6e1", + "n_transfers": 64 + }, + { + "name": "", + "contract_address": "0x3e4c19ea950f054618dc658e374a694a10548d11", + "n_transfers": 64 + }, + { + "name": "", + "contract_address": "0xb1c80170544c9005666b9663b44b670db0e23e43", + "n_transfers": 64 + }, + { + "name": "", + "contract_address": "0x45d53985ec681fe869ea0193c4103dc5f995b336", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0x8b7a1505d3f7dff5dcf9d2524155372626f19150", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0xb40539cd3e7bf07eabef8ba0dba182b376fce1b4", + "n_transfers": 63 + }, + { + "name": "rarible", + "contract_address": "0x0fa37010be40e93e0484b673bff2714f2c3f3fd7", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0xc61ba76c37dd5a1b9a076f8ed909f12155739dec", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0x579374384a2a0411bac9c13bbe0ccdfde3002018", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0xa81e0193f30bbd6e83366a88b4570e8766ca2131", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0x1af8551b88601cc879e505b4f7655fe855a3b680", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0xfb1a2bc6bb04232d9df21e298e1a83cb09047bac", + "n_transfers": 63 + }, + { + "name": "rarible_v1", + "contract_address": "0x2a127fef63d448a2e51e7a7b8298e9d89547c1f6", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0x9542b96b48cfc37564b92a705193b9c6db641ad1", + "n_transfers": 63 + }, + { + "name": "", + "contract_address": "0x87ea935aebe4b27f34db79dbd184b7619a8e9c5f", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xd4cc46b27eed4eddbad2da3671bb52506414707b", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xd23e658c14327b45c9be4340d5882acfde8cc22c", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xb33d6c9487d7445b1996be15d67883d16fbdce07", + "n_transfers": 62 + }, + { + "name": "fortube", + "contract_address": "0x900e5d5204d0f88bf56fdc0e7ca4dbdf790af5ef", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xcefbc6085117f3b19c8dd6ce0005040375ce2fef", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0x1659b56ee1218bdfbae8cee69fd496341f172506", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0x91742019b67d57fffa2584131c90e8d14eb6f931", + "n_transfers": 62 + }, + { + "name": "rarible", + "contract_address": "0xa0adc6840bb8f325a5d26bd884c8fae567522efa", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0x600c3f4c4f3c07d2e0a682440940281a93e2de5a", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xdf82cb8316e9e35706677736a948c61dcd022e49", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0x6acba30eeb1532f01e98ce94f87cf9ff4713e206", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xc33f17fab3162224dfe3646f35a74a2b8a460b2e", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0x707ac7bf50539a7b3c2adbb6f53f4763a3f7b617", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xaaeb68c706d25ea0b2ae1b68ff90f3d731a4f229", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xa5cdb0dd266b783566ece5cbd92d2cc9a11ccf23", + "n_transfers": 62 + }, + { + "name": "", + "contract_address": "0xf0ad62463f026669f0e8ce2101e3289cfd40983c", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x2374425c7e7ddf1d46f771f068d205aed551faf8", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x281749748053c0eca9e000582cf77cd77e571fc6", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x61f0d87977eda8059026f9a70126f78bff8cb53a", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0xb791e3190b6b0476fce119762b87fe2a2ca36f93", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x4780b255bf380c4581b428768448345fe8db9be1", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x9cc9ea7139fe6d92d604fc73b87a5c287d2757a0", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x0e10eec148db706321eb8a4705b4937844b0ec57", + "n_transfers": 61 + }, + { + "name": "", + "contract_address": "0x7e16e15db65ff73a8b2dc8922a2ec0cb1d08299a", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x936d7a18806c78b4d1761827fac1de06a79fb48b", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x50cc538f5de3b406d33dab779127e2b61afc2745", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x8c844d1d0b8aef5a883aae0e3fd8310de42908c4", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x99a86b41272afb8b599bddcbda01ed6135620385", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x395ff141a9eee66e5a2bc4ff39248ffa23edd4b9", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0xb9bbff3d72d4bf3c32cafe469b9806fe5158f22a", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x235be84db0af8ddedb759ad48663623a71575022", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x4a54665e95ab7bd4d71b3a91ae44703c4ad26b6f", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0xbca6a5b87baf836acbf2c2f408a7a5967338e341", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0xf5947d121ef24930303b3ceaee1c0ee10e2ac094", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x1638288906926a75657eea5a9ffb6d7b3ae4ba20", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0xb78b023753fd5a4f589a4a6ee2bfd32e58f0c944", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0x77e32ea78bb5d2f1bb9e52e8111b3e5c973a88c6", + "n_transfers": 60 + }, + { + "name": "", + "contract_address": "0xc2769705c80a744d484e7977728f66b318a68575", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x20051ec5c65e5211a6b9bccb316616e6b254fb94", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x78cbb32ec3c51278f5e2cfb1b0afff492e940317", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x74bdcbbef4173f181565be99ec227ee44e529dda", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0xc94edae65cd0e07c17e7e1b6afb46589297313ae", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x7fefc0559b7aa8eeaea9f6c7f1c2926e9a9fe997", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0xa050a8e2efd7fb9106515f8f014fdee2c42fe707", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x72b4d10e40418a658684f34a58a983becb2e4a30", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x795aa49ccd05a5c29502eb8fc4954b841864f071", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x81524275ec5c8a5d4b101f4e339b9a28a0e2e477", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0xfb11b8641bc4539b16cab5c07a47977bcf86fd5b", + "n_transfers": 59 + }, + { + "name": "", + "contract_address": "0x102d6bdc36f5406f7417e5ef00e445c4cd72553a", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0x15820072729d045ec5232ba3bd060ec5df38e09a", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0xb4ef476397a544db0261be5814c07f7eb2de09b5", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0x9cca9628febcd0e076525602a3847d736f5b5953", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0x530d6839b0d138126da1e0d8a6038cd08f338d15", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0xf4618abb5e8031454238696a0f013dcd1476dc33", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0xe3f392eda0294e55078428674f8f90b680dd9c5a", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0x515370a7aeb834866333c56d81045c7bd70fcd8c", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0xf429bb8044bf4b21c65e3ec459eb3010197c6f82", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0xd7498ace198c7ca766ab96e623e6e0987d747c92", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0xdfd8b22551c23209a290ca3d1d48d4376c568107", + "n_transfers": 58 + }, + { + "name": "", + "contract_address": "0x098c0ed2ef647dcfbb58b7efd44a1f01b93da59e", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x0a3e99cf6a1ff8bebbca072cd5f203bcc25f5da6", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x3b12bfab35d55f0266af8c58e65cb17bc6703621", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x8499fdb1886c2ab338d828b2388ad93626867d8f", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x21e0afc109a49e26f23acf23fb402babdf4a862c", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x9e59397f7d7b01823fe9f827becce4bede61e584", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x838a1de3942962ee098919b03c1b10aa9cd6e6b7", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x5ce1972f9357e172097937773821c826f7c1876a", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0xfd13cb7d8287eb7c09b04759231f8454b3fd81d6", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x4679b43e6ebcb2e7fca0f4e943e6231b87cf29f7", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x3fa2bc8c8aa9e2706c3b5c17359a104aa412e3cc", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x2d28a396b03990e0e1c321582cff4fb99f3d6a44", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x5969a1a38674cbb2036097852ef16e5e94b8fa65", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0x1b1ec521dfe6f6a45485086df4f20c1287ce80fa", + "n_transfers": 57 + }, + { + "name": "", + "contract_address": "0xa3bcf0e6aed1851a8612f34f90947c2a0eeef28d", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0xeba27a2cfd9295557bd6c48714252bc46e4dd736", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0xfd385556ebf6b183380afcd61efd8194d0d46520", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0xe0cfdccc6cd391dc8de1f7a2b2b5424131a87382", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0x804efc52bfa9b85a86219c191d51147566f3b327", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0xfea5b4cbe821ebffad4d68ef04bbb1963a1fc48d", + "n_transfers": 56 + }, + { + "name": "rarible", + "contract_address": "0x2b47b8345b04d85633142c67447383b9e9d7228a", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0x2a741a11233706ee57b25e39d3ad328a6aaf5741", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0xbb156997cbda440059044ad3155bc0c1618c4a22", + "n_transfers": 56 + }, + { + "name": "", + "contract_address": "0x17548353887262c3a00b9876486f3d08980fa7f7", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0xf068408d745c4e6c6463618bcfe0e4365ae613e6", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x08982cacf14157183055f1d6a51b8bb34bb0cba8", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0xef60d1a85b9c23aba2e79079f500561b440c97cf", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x75371c4eb2df4e30847cd87c88beffac80072d02", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x9b87d15470e3be38aa536212c52132e3c67cc2c8", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x644c10cc2b33e201a714a6b69bff1d59d34442f3", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0xddde49de791f02e63c3c63ddbae518fd3bf9d1a2", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0xae0ae23001efd096f472e267c787125c5ba5c64b", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x4a688cf33e5adfacd50f00a8162ba85d26afabc3", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x15f977385ebbe9267e62202409f5f876f097d414", + "n_transfers": 55 + }, + { + "name": "rarible", + "contract_address": "0xd3c6b3b0f0db3890e4ce4d2a3f97cf3bf0642c92", + "n_transfers": 55 + }, + { + "name": "", + "contract_address": "0x427c11e9de48bfad84903ec3b652d4a1ce3c71a8", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0xcbd3289d1b9364fd50f3b4fef4c06fdd82807e9b", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x21bdefb9b43b2e0ba739e76b6d8c9be0476e0509", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x03ea2e423458c6958d97c3ae9a4eaf63160eda61", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x7b735daabe9b33ac40a02eca522975095ac5732c", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x51ce2eb67ffecdf0714ec4d9475d9b3d16334f4f", + "n_transfers": 54 + }, + { + "name": "rarible_v1", + "contract_address": "0x4bd94438fc6f6fe0a70ebe66976efd5cd9348e42", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x16607bf0984ed446980122c93ca4c203082b56fa", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0xa17da9b6ce8f4e1bc8e26eb7d87976bedbc0c939", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0xc6309e8b5737362560538c98ebe73c81c91d56d1", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x80baa18d25303c60d92b04af296b47bb28191da0", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x96e666c387b1d25b490a33cdb5a32b8a1f91d3b6", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x374717b2f1c8b83d40a13a71823d995b23948d6d", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x9c9892a3f6e45b32e82520e8374806aa603dfd8e", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0xed08eeb90a76083587f6d8668f6d15ce50207ef6", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0x9d481e42d9a2b52397262cdbe76abf3ca7b52203", + "n_transfers": 54 + }, + { + "name": "", + "contract_address": "0xc00e5d86130fff23fdcf60c9c90c326faf19406c", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0xe9e1204758f181c00a15b3971973f5b20ba950aa", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x4140783cc1ba30653a0777126b122931e233ba14", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0xceef273647169aa6ee1ab578f540c98709066d6b", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x3ee93c76aebd833e27ebe2b3147899c0834bc863", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x20e3004376d48db604974c42f30297a896c01551", + "n_transfers": 53 + }, + { + "name": "rarible", + "contract_address": "0x3f1565853c4bcc074a4947903e83a0245b8fa0c9", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x0581ffc5f20c2e9cd09977a81b180ca1d0618fb4", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0xf6080ccb06b46da9e09949ed88525ee20271845c", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x3ff1fb7eee1ee9b11e08473c1a59994f6f9a2d39", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x523ce9a28d6b6ee3128528eff3ac6ec074da03a6", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0xc1b2664fe329fbccef21e72e4e6ac5de4b074f85", + "n_transfers": 53 + }, + { + "name": "unlock", + "contract_address": "0x1abcd0a592e6a389d30a075222b61ce62d3d704c", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x79d84761cb7fc58789b835757e4d92a1945c1548", + "n_transfers": 53 + }, + { + "name": "rarible_v1", + "contract_address": "0x670feaced45b8cbf24fa3a91d8bdeecfe8fb2f72", + "n_transfers": 53 + }, + { + "name": "", + "contract_address": "0x7621a21dfb7c5d0515da73a46665b3deaca43550", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xe4218895e979ca7db2624b74604509fdd60c8d75", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x2560051a0c630df9e9f0b85f0a18010a727cba2d", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x63658cc84a5b2b969b8df9bea129a1c933e1439f", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x929c2e4f3b944305c96a86cd805f7f0a90df8e9d", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x2222f64ad4b3c89d6447985b55b69600de2c6564", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xf3cffce371310e62206301668aee8a82c2e6f77f", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xe9582998a8683074c483828ee30aa01701da12d6", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x979bc5ecc41b701efabd550b98cedbc137cbb0af", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x60593b3060743493438da4a267613ac06bc0365b", + "n_transfers": 52 + }, + { + "name": "rarible", + "contract_address": "0x9400768044151adb66e2a52f2e9f338fcabdf953", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x0d4e46d72e7a366c1226252210c8bef9539a4004", + "n_transfers": 52 + }, + { + "name": "rarible_v1", + "contract_address": "0xfcf6033ad5cd537095da91d57d4ce0634307d7f0", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xb8c38ae1cf126afb7383aca98a03d7ba1acd5f49", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x80f82055b8f5f110971aeba336a2dfd6c4fb6a93", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x7089e08794521000d526e8805449a3a6d86a960f", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x7f737b66921d18b008dc9c3a9b933a3bf559f1bc", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xd265ac44dd8d8b1f2b892af8ba7e550291d8b0bb", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xc52c92aecf12511d4387da95c2ad252ceb358b8a", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x1cdf04fc3cbdac5781f0c7edeeb97ec72d413663", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0xee49ececa7853104a2ac68faff8568598f8af226", + "n_transfers": 52 + }, + { + "name": "", + "contract_address": "0x937cbf3eb78cf29f35dfb119efc2796226268e0b", + "n_transfers": 52 + }, + { + "name": "rarible", + "contract_address": "0xcc586618e43dfaaaa07cfebb3288ad43dfbecd26", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x1dc5bbbf3bbc97476fc91e653ed32034f3f88c29", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x8fda6eb21f7d18ee8c32b3e23f0e20407e09e920", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x10319d7994f211297de6ae555013a3eec23b9511", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0xa4819664913de13c9b332759488034e35463b186", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x1a55378fc44cf67cb698969582f8c54aa65be41e", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x1a58890c4cb82111d2063e8e4510ef9bb2a406cf", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x948f48e660bb9a8508084d4d416f1ff4e0071f1b", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x6c97a19d7262cf7263a126ddde4a6a0c09428587", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x28e2d5d0f53072eecd56e0f2c574ab30338664fb", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x4008de4e758bf2d066640ff8c469365782816af8", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0xa3d79e3faf383d0feaca8c2485dc54d9c609a4b7", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x965c51e9368cff73f6b374debadce4162f73e99c", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0xcd5dc43a6bb4120d51947a1a26c141b727ba2833", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x7016efda273b6b8adc0abe0f4ec89abd18d867a5", + "n_transfers": 51 + }, + { + "name": "", + "contract_address": "0x094ce3098677d4056248f6e8cb02f0b1adf02d7d", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x3e74715c451889c0620f80e82707df0f19852c82", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0xe5056e519bda000b19fb0711c3d87677dda9640d", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0xff4635874e544f25c79ac416c695153f1835c732", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x4396159bf566a7cb6595660163082e17847979ec", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x05c046bdada9bd1298ded61c993ff7ace79ae971", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x176c2bcbf2c25e520d46f8af6ee862fad14d6edb", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x4343f77b888848ab69c6bcb2e41fa41e557900f2", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0xfbc677bc0b8f3367f3f6721ac3db310c176f9b23", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0xc5c3523a3158de4cd172ca7c06c3518314eae21d", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x19ae9cd72a97d911220e8f479544899fe24e8e5f", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x58b1a76e640c39903df914f28ba03e35831d7986", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0xc0cc366a05d24fc63c1147c009f827e94fb4878d", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x8f7d10c6bb1fc6a050b65a031f8a4e524575ec07", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x65d8a34a3fa1e5942da24190018f658db1b05492", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x51479ee76070348cef54aa703bf38bc9dc151f7e", + "n_transfers": 50 + }, + { + "name": "rarible", + "contract_address": "0x8aff6a8320ba596c59df10a56b2420229294366e", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x69dfb33d54620379c289adfbce7c1ad9bb890b76", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x8421bd1cd679955b5f75290ecc55bf2d7f1680b9", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x9c952a8897ee0a919c071bf8da3c149278997538", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0xa8a0211b7d6f24dd050de890dfc3855519e09ed9", + "n_transfers": 50 + }, + { + "name": "", + "contract_address": "0x60c103bd9aadb6a8bbb3c5f672aaeddbb9165195", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0xfc82b45321d9fb9f9bcdf4ae2fbacaaca552777d", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0xae41739e5acbf93a9d6fed28356c3be1b0b8fc21", + "n_transfers": 49 + }, + { + "name": "unlock", + "contract_address": "0xcef3433e4f71124133ee4f08a317beff79b8555c", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x0f8593498adbb6bbc6d7314e5920e3777a753f7b", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x68541c91d68c7474193ce8f5a7a1c3ff44b4149a", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x6f8c7c4f7c73a3ebbe2a32b168aab81880e17898", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x3dfc6cebaaf15acc1c7379028afadf5b92976231", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x7ca385e182cc1bda37174a24e11fcaf60c8e9522", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0xe3941447fa8c9a8a0f80726b8908f5b9784a64e2", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x38f096a8753abbf39312cb193d081c13c04c3600", + "n_transfers": 49 + }, + { + "name": "rarible", + "contract_address": "0x49d82a407f6621a69b806a4a74d837fe2a2ec492", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x0989e8882478793ba46bffccb1a5ea7992534bf5", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0x5b7a49854762f22f1501254080f4be6e994404f9", + "n_transfers": 49 + }, + { + "name": "", + "contract_address": "0xa72b006e77379391dc01b9abebe0ad33344bddca", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xa54511c84f353870d06d0e33c0d39cda07ab6c85", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x0733411463d71e33a41c73b63367389b886c1d12", + "n_transfers": 48 + }, + { + "name": "rarible", + "contract_address": "0x0bb953f9d7bad9705fcc7eaa46fd31789edb0158", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x0dd29cb28addefc5f43629d29d9537ec86daabfa", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x196c61a463e82fcea84f38d1aff1bcf1f83214ec", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x1a59fee47f4283bf0ceb0087f1bef39f835a46be", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x26e1311ca72e622eabee7c02f6c48564726eaf0d", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x28bc7871fcb82973a4d97c5eb2d07d8f42f94698", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x2963485694364537338c69a444e90f27b85b9d11", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xe855c24c45fbf47236f1dd389246c38435e6394d", + "n_transfers": 48 + }, + { + "name": "rarible_v1", + "contract_address": "0x41e24c7549d8d4eef26a6cbe88d1775de40197ad", + "n_transfers": 48 + }, + { + "name": "rarible_v1", + "contract_address": "0xdb0b761fe78d807dd641ab795ac42ebd5349de9e", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xd46cd035e8a68743aeb09572dc1446d46db6bcdd", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xd112f302969901fedd28756efe8170b80c746ccc", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x59bf3afd24ae1bcb3be5f7b32d8dcdd78252b62d", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xcf0a564eee76035c3e4625ac75429db51e18d5f2", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x63027ae76c2e5aed34294a5d729a4d45e92113c0", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xc8a98626f4b26282147daeae20a695df1dfd27aa", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0x730e95cc5b4635830f5525b308110b088e34482c", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xb44b7a31a3fdd087347f72823d97f3e2ac0b559c", + "n_transfers": 48 + }, + { + "name": "", + "contract_address": "0xa99cdae5357e2cd1adc864e74129859cd9faf5ca", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x3b7296d63f799c1566b0c09df61cb7fdd6ac95cb", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0xb5e258e298fc76a5d9a92db6a052ef5678fcf12d", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0xd3c22f8020066b46441e957ba18b6c73561d28e3", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x727fce632d8396bbca979063a2c92830ec186a5e", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x01ed068115ba99b94c65c7791d4ac5dee1253835", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x9a3432547d3267896758e6668b3afeae1a86d571", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x9d53045dd70fd31381a4934baf5502a1b50f2d23", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "contract_address": "0x08d5a6a6b01cbcba2b90eb22bac81637020923f0", + "n_transfers": 47 + }, + { + "name": "rarible_v1", + "contract_address": "0x88203cc4ce6f9ee12a7bbfc1c4c7faf0bdc7c984", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x3fb66de680ece53d4bb1a0a54c418b87a079f2e3", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x568f9155eba8c09ff82ace25e2f113e99e023e07", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x6033049f08bcee81f42f563ffd2ad9c0c2424519", + "n_transfers": 47 + }, + { + "name": "", + "contract_address": "0x4d1004c81a18006b567ea8aa2eb7680b3e960781", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0x3f3f0b899f474b04d471253163ee93e7cab2d964", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0x6f6948a1780e7bd99a6fd1542c66013bec9c611c", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0xe3672ac911fe27a649328b12095335c3bf58a727", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0xc63b052f6c7675fa987fe71cca11e94aa67b2c8d", + "n_transfers": 46 + }, + { + "name": "rarible", + "contract_address": "0xb8e4a7c80444a484fa3cfaaf3f540c5366834b4a", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0x5e98f414c00b72f377e8db9b9b40413c00ba61ac", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0xd33cec84af0e354019dab48a170d9bfa9633c2c2", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0xc92e685f6451fbb2c75df4dc116d27280ff55e73", + "n_transfers": 46 + }, + { + "name": "rarible", + "contract_address": "0xe271415e289411c0564247357cb79fb97f7a59cc", + "n_transfers": 46 + }, + { + "name": "rarible", + "contract_address": "0xae6069e7ab832fd28f7b5fab9bc1178dd16816b0", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0x686514f27217d82df6c9790eca44ad566ba739ac", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0xc20be63e1fcc71d0e7b24e95b42ccec3f7da06d5", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0x051bdc2ddaf5cb2f9e7de2751ce7f212239cba45", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0x903d8c84e2cfb00aac6093fd4f1ee2eeb06d2e69", + "n_transfers": 46 + }, + { + "name": "", + "contract_address": "0xe512cd0db34e774075bd7e034fb1e3dd96137177", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0xec768d77dd32fe045f3e3e2ad664ef7b80d6f127", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x02915c436c3ef849a9816d6aef64fc0c5ca081dc", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0xd09014d944fc8c6707f1dfeff4938d723debab70", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0xb1de8568bbca2ade02ce0327011c526a192141a9", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0xa884367db8d425904204dc1a9e2cb74c6be1b49e", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x92c98a4e914c89fca3c82b309457bf4d822aab75", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0xb9b25168c28499b248bbbe514e685eca1892547d", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x11afce7edc6d2f2ecf054a53c095e4929ec3455a", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0xcdeb8f3d907345942f8c59091ffec07d6e1fd06d", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x76b0d92e85c18043fa26e8568e9ef44e01083141", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x1723601ca2e0cb0a98337d64d8fda1d656e955cf", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x01471c5ea633e287ecd24de673e9ba0a20eaa6d9", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x1806b3527c18fb532c46405f6f014c1f381b499a", + "n_transfers": 45 + }, + { + "name": "rarible", + "contract_address": "0xb0a857ea0ae0b4cb74ab7d677b780ee57cb17182", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x00a12ebfb8ee975105f2090b8c6905802d75c2e4", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x897755f28fe3872c1c3208a2e2cb44c142713d75", + "n_transfers": 45 + }, + { + "name": "", + "contract_address": "0x21c45d5f0440ef450d595482206a1ffc7aa1d0fc", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x6ac01a0e00c9bed67d54e5b8449599b6c6e226dd", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x93eaa057873ffa2a7494391008f17f456556945d", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x116fac0e751316e5c3726af3457773666434c815", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0xf7dc7912954a568f4ebc575914c413f3b00539ff", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x0f864e29b01a72247b6795cc6054afeb53ef35ef", + "n_transfers": 44 + }, + { + "name": "rarible_v1", + "contract_address": "0xcfd088b839dab8365e8aa195d948a4693948b4ce", + "n_transfers": 44 + }, + { + "name": "rarible_v1", + "contract_address": "0x5b8b553370703d7edc894da4332a41025f3b86f2", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0xa34b27582aab8dd2932aac3aec19b89d3de85533", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x9d27956b06d4b5332067c2d188c8aeb875dcbf4f", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0xc4b0bb428a498d82df5167390ce6c9192bff1780", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x45a21b21c1d28aea5e455154fe626c7dd7ae5bd0", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x7c70c134b2ec8849633aceacd5333bf4e1f63b18", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0xda74cc9b4a12d412d04ccf2c621f1627c5b123ee", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x581df00bceb092482c388ed474152eff0d36bb79", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x026a7d72a448d0e44d441e55f746bf56b843aedb", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0xc5df17e0d110601f15b19f62d460af3e504bd6fc", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0xcaa86d11a065727df110846f696773b840a6e313", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x14495f2c9a4bf145605edf6089d4783a3e51e850", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x2be8b458a472cbc17fd15d37816c052ad67c38f6", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x72dd9ec1326f5359e42f1f8e020bfc3f3de59940", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x0111fb6ed3b1c4cfc403813fa5c1a1b947c76150", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x7481f832ad6c4f5951024e5de7c62310b252b845", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x2a09916bc9e91a7763ed69a743412058cfa95378", + "n_transfers": 44 + }, + { + "name": "", + "contract_address": "0x50634153f5745949c579456445343dbb82c6c032", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0xa8bd2de03228d1bb1686fe813047f2a4c638723c", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0x13362c05d9bfc5a0e9803db1122d4329294e97a9", + "n_transfers": 43 + }, + { + "name": "rarible", + "contract_address": "0x76bd634d66265f4138f46df36efe89c61ce7396a", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0x17ad73c6300233b178c447d95d3b080d6262dabb", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0xf36b576fba1fdc3a54196694fa26df07cee99767", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0xf186807982b56c2463da2a76bd8b1b69b979f9eb", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0x2267d02c2d2da3b90d3dd8a33da8c1e7ab0b9a28", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0xea918168a5302f9a04b70f9bf093253d05dc30f0", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0x5660c807baaa36d8066bed3a4033ec6d00a48769", + "n_transfers": 43 + }, + { + "name": "", + "contract_address": "0x78e911d6369a8f42880a41ae9f1405c914a39b90", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x24449346f2f8d6c874754b73904157dccc5da404", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x0cf934554388062b55a363f2d14983f9ab06d8bf", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x353c6e65cd1d9e05d88755f3c7cbd7f73407803a", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x5a63c24876c73459824080fce0cf38e7bcdb47dd", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0xe7a64f6a239ed7f5bf18caa1ce2920d0c1278129", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x0131c575be43586c5346435273035c8709a3fd34", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x7d5df12ffc153c9020efa92b036d56bb53b8323e", + "n_transfers": 42 + }, + { + "name": "rarible", + "contract_address": "0x7e0748d39553e780257a24f4786c627ad361d003", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x4d81f697379f2e3f1bcc8018821e87312b846988", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0xee403b980f45d70f95273ca77be4a887b7209706", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x3976c1b5bbcfd6c040684f031e569219f524612b", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x8ed0086e9ab7d8dea522e58c03bda45c32c77f66", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x202d2f33449bf46d6d32ae7644ada130876461a4", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0x1820a996cd0cee1d3316d1e0e6ebc7b22796af86", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0xad5bbb92e00a8dce476555fbb7fd54bd287de2b3", + "n_transfers": 42 + }, + { + "name": "", + "contract_address": "0xf8734ccc442c1a0856286b2316f78693e373ea67", + "n_transfers": 41 + }, + { + "name": "rarible_v1", + "contract_address": "0xbd45ce0cd50152c130e6fa09cc8501831916e36b", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x327befece9caa72aee7d563b4bb8d8ef7c34bc63", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x6a62727c5f6b0595bbda22580a09a791ed31b173", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0xc2a7d3b40e26d309328e227e62fd4a43de44091f", + "n_transfers": 41 + }, + { + "name": "unlock", + "contract_address": "0x78e133eb8125b1ecddb4b7a520ba2085a20c1144", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x8746166c2381143d3eea3b5970974c38093e2e2c", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x088ee8c49bf7da8a118cf43a72cf20f58ac2058a", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x076877d10a8f67c5b6f67883dce5f8b0809fa2f3", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x95635de6d6d2fa7215bcdd6751e06e8a042467df", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x29bb011fffe449debf1995e01721b00cebe28f29", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0xeb34c0d43893d72601106abed8bd413fdba6d0ab", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x5958d124580813b714e4a4c6386a6e184f9c295d", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x35db8ee89099ce0f60699672c19023819a744772", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x716eb6ac98251c9aa41c3d8fd12bfd059ecc1a5c", + "n_transfers": 41 + }, + { + "name": "", + "contract_address": "0x67b50a45a9751b215c5cfce281600e01b02d1f57", + "n_transfers": 40 + }, + { + "name": "rarible", + "contract_address": "0xc901341ebe90f6c057dff47be5b9345377bda883", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0xe6e8c1a61dfccde3e6cbec3252abf5a5e0cefd4f", + "n_transfers": 40 + }, + { + "name": "rarible_v1", + "contract_address": "0x6da2ab266063e334e4c3db79b53501d80dc0f7a5", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x3240d8862f9f77635a0be2825432be72bd6538dc", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0xf0e034aaa57ac066e3f1c320e4c0bb4f2107d0c5", + "n_transfers": 40 + }, + { + "name": "rarible", + "contract_address": "0xe570131be8d38f5efe74232a4b2fa5e56a00c16f", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0xc54d12e665d7b94cd944d1958cef923ec3bfc7d7", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x6e5dc5405baefb8c0166bcc78d2692777f2cbffb", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x1ac0dbc28878fb3906eade31234c8eeb1fd593c2", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x94c459826966b706deacc9e72981aefc87966c84", + "n_transfers": 40 + }, + { + "name": "rarible", + "contract_address": "0x3c6f980cff572e6e04cb560cb318c27f5d72d9d4", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x7740dc1c22610c0fb12c60c61b38d15335261356", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x4081045c5100c4502d26fa10856288bf25565e87", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x0d487953e81f4ea83590524a517dd729c23de6a7", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0xdd49f9f9d4d4e3e6ab520e37d3c9a3be879cfa2e", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x8370fde3d2232c5568fe6caa484a1b0a8d884b40", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x06d38f76f9d19edd086dbbbb4d0be56313dd795d", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x7d2661b855a4d2ca8cf1dcd63df8e58192e4ea22", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x7f9b82d5248055323e818a1e4dd53502c2c521ad", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x47a92b2720ee2c64e2da731f568acb07839df967", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0xbbab7770066b2a3ae4862c2892e672e8adaf428e", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x8cdbc929fafbd07a5c5de2de095b7f5d0f391c90", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x54768ed8431f32f2b01532ca375767a7f24dd588", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x50513add4e4042538dae2c0b66ef3967a5acf1e4", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x8ed70b10e67a207f8caa4433b83b962550ba81ee", + "n_transfers": 40 + }, + { + "name": "", + "contract_address": "0x8f49d8f7aeb49102710c652af556cf346e3057a2", + "n_transfers": 40 + }, + { + "name": "rarible_v1", + "contract_address": "0x80884d884da15b63a6622224f5a01bd8f94264bf", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x729cadcb048d96dacf4133d4418e57241da6a37a", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xc7b1f4341074636974f0c2ddd1d1936931fd9831", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x58dde36e9cff9c2787ccc08dd16cf24397892332", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x927e39b2a86f29302004589b36c38210f5278e5c", + "n_transfers": 39 + }, + { + "name": "rarible", + "contract_address": "0xb1a34e32371d0c4c1b08f168c113a844944fcad4", + "n_transfers": 39 + }, + { + "name": "rarible", + "contract_address": "0xb0967ed18987af04938d4cb247eb300b6bfc0a9d", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x95926757179d00f8154b0f7f2db0b7e8b0e7cef0", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x35d2c040cd252a00dc2cdfb9fd3034bd99da2d45", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xe4ba5dcfe6561b74595f13d3907975d956a7317e", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x96a2ecfbf7d4733a48b24f995b1721899daed9a7", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x983ebee001a1f0b98f9a574723fc5413f9e74856", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x26dc256dc5832a7ea16693319b3ffd90d37f286e", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x24d538a6265b006d4b53c45ba91af5ef60dca6cb", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xac0f37b94750e84a40c0e3e97a1714703c3dba0b", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xffcdc10e52ddf131b9196f8247379dd675ea394d", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x15b4843d34ce5eea62b3993a6fb761fd04aa9f45", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xfa71e11c0a8c3c2e894e35b6db73ce2b62e8ebde", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xfcd68b963f2b378aa1a75e24effadc87bf59d228", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x02413c345233f06963cf86c642f5f41f3a189c16", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xfec783e2b297b69118a60267229dde03012162a4", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x017bba5d5d32feb687fdafb9700418d55daad091", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0xa5f4858ada386758e62165037af3fe21655068de", + "n_transfers": 39 + }, + { + "name": "", + "contract_address": "0x1e7cd2825206e9474e8a5cea075b4959bbfa1dbd", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xba7745e17b479a9689caca6c43de58c441aa8b4c", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xfc1f2b7e1f4fcaf1081f3560a8f79087ed3a1ed0", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x524fc472e62e6de9ef24ca6d32a2275478acef76", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xc94d220a80f0706dbb67ef3537e8ca1e07a88ff3", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x05b6ecd7da974a50fa80e5f8157438a0ce6b01e7", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xb20f113637d3616102e7d91e429f1abf4a746afd", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x99960c7d1d97f242e7f5fbc26debfdf3ff89a321", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x6474d2c1816d2f183ac79df91cc4b7f44b716957", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x27c3dd629539f72d58360ffad470ad8fe4b72523", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xec5b08d6113a98edb872fa2d8edfa9f2472b823c", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x99b8846bb7540f377e18994a6c34bd4e0e6d79da", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x013d3968cba2052aa1e63f149aa4cba3ea3d45c3", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x24077bdcea4f64442e1695616eaf5af461b44580", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xe0edeeb50b8b31208c4aa10558d10c34060d5719", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0x8f9043bac98bed14a4ada269d3601fdf4914e97b", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xc769aafb61b27d8f246518801b611f80812a01d4", + "n_transfers": 38 + }, + { + "name": "", + "contract_address": "0xc94a53e070f3680bd83c85b8fbb15ba7fc3592aa", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xe7049a081f67f1ff4bdbdbf4c48c547d24c48f41", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xd32453965c8b4f50aec7047d308e8494acbb1179", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xae42410c62e8254429e0fa06a4f965ee7d123eb5", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xa79f6e0d9e47f279be890caec32fc39ef96c42ca", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x90d37ba08721337b875a3474784f075f7db4fb07", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x02e0c94355562693b3608077732d7437bd7a78ca", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x059c329231db9bbb0db155c1569cefcb125c53fb", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xd10a6b7feebdafb8ca2f1798d5e68053b65c2deb", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x00a0f789512db4da9c5f9e8a7f1958972db0f575", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x083ff667415ed1be3bbdc847c829cbebe38c6140", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xdaa6bd333c83362579d9621954e9451e319d09ea", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x7c11aae1f748619218ecad48f4a7f357d97948e1", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xdb47abd512ee7a3681e186ce037d274a3033941f", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x0c0eb6d8f72208c10996780772e8fef1f9db47b8", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x7b408ad9019c20c5a1222bf7f7e58a6fa00a086a", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x1436d5002748c1a610d760eafff3c3324a897644", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xf6443afda5f035db5cf7f53fb34bec5d917ed3a1", + "n_transfers": 37 + }, + { + "name": "rarible", + "contract_address": "0xdf3eafb7cd32d150ed15a447876b9e1ec9217683", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xdf58594a52f38092001527e59d843e4734384228", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x1ec08b49230434157f95121d5e63b80dcea49273", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x6cba969863d08dfead9d46d99630d096e83cae35", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x204c059aa50002c70aab135929b29ca7f25e5a0d", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x209adb20b0d6115ea69ef34c7afa4ac6216c2be2", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xff448b4d2e09e97a489fcdbc50f9d883d1b08094", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xe14e3e012a2c0e5df2e0e925283f007ee679f15e", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x6c4b3511d46fa72a15401f3488578ce384f9dad6", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x604fbf68abd7cfa2c13bd55df98f82b3148ecb3e", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0xc73cf371ef4f972b747e4c063025fcfb712073b3", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x7f17adbd141667071acd47494bed85ead14ed6a5", + "n_transfers": 37 + }, + { + "name": "", + "contract_address": "0x565fffca446719ee3561366dbe8d1ba9bf1a4e89", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x4f4e3ce1d3741b22ec6b6c95e30a9e6aa2f9a466", + "n_transfers": 36 + }, + { + "name": "rarible_v1", + "contract_address": "0xd99bc798c0d3161c7e2eee3760e8fc14686c9abb", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x4a471c6094716624bff0b13ef3a5f98ebb389151", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x39839fd19f042ad797c965e0414046de6406deeb", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x5f896c654a08323dbe16aded331c461ccaeeb370", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x24e64e727330fdaec9f4e59e77556b2e654a3987", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x481310251fe8ee072d43c7d61c6628e85cbdfd41", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x908ed151e70a5753691a886065d31498f8279137", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0xcc72eaf6e91f8087c643e8044bd3a7b7cca0bfa6", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0xd838724658a64fe63e24f18cce407b7cf308935e", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0xbfb1dfe508f52664401032f7a0667a451c712fe7", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x3c51a69f15e353737e3142cbd8c3d9125e1ed0ac", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x35d8a7355a06e8c55ec0b861ffa11ed73abaa7dd", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x995020804986274763df9deb0296b754f2659ca1", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x930d6c50fc119ce0838084ba255bc8729d4b167a", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0xa57e2e36328c2d1818011de3266aecdc32c149c4", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x52093bcc26025537596688a5dc074e05c3c72a7b", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x03faa4f3c3b0653ce8ce9c16e2a3303478c2b67a", + "n_transfers": 36 + }, + { + "name": "", + "contract_address": "0x40e146a76a9de8a950a91c825e4c0cb058611848", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x7137c6ded150b38c697955bc26ba6e0a76cb7737", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xf5871578c8a08f63f2e00c2929c049e12b3914e5", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xc4e0bf581d0bd8efa48ea2ffa59057f5e2347a8c", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x6de2df57a697cd491a521162560c574ebccf4694", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x4786e414ad4d1c20e8808c970bd0e8619be035c9", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xb4f29fefec98d4d43553b0a74fcb66199b79b03a", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xccc11b96265ea6c3e18400c8be45c7d96c8332c2", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xec09758bd8a9313b58d8759533e2687abe34b6dd", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x5f0cc0971932d5bd2d49a83f702f9b12a33fbc54", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xe63c62f07e7adc4c397fb84d21d5aa6e0e054603", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xedf550b50218d3c87d99b6fd05722c16e65140c7", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xd5f34225d125bbe24eb2f92f5822a1f6c5227329", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x05372831f696825d0d9d733eb7862186d1d9598a", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xaee0e26e5b14bd98ba1fdcf6237f1414dd80cc4b", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x918052e112eea977fd7a8a178cad7200ec1aba7f", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x2d6c9a8bea24a2291fd9a3991e2ca722cb79711a", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x8f293779cc422c17b7095ce1439bfa27458cebec", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xcd2163d82466b4726a3c9b4d476b89977bf4e924", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x8bb076440ad9e348a3df61b58dc1b0fab930756d", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0xb3b4e4129fc09445776d6c1035d601f5f7f53e8a", + "n_transfers": 35 + }, + { + "name": "", + "contract_address": "0x56cb47517bac9f8ae749b528400355423d24f037", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "contract_address": "0xd8cdd738626b4624401e1cbfef63d4ae8beffaab", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "contract_address": "0x905daae63e4949d8f1b1eb370b667e8f1b321143", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "contract_address": "0x466c882425018db508f1ad8a75ee05a3b72fdb0c", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x45d9036500877caf5c777641abdd1a73b51e2a5a", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x425bb113371015392638d9b70c5adc1c48708378", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x5e85003100ceebbfaf27c7e21974b2ac48bf5071", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xe2ef2ca377ec120d14089d77650fb026d68e7302", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x32eb2c81ecf87d988705ae9ea8c96447cb4e1c10", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x6b9f9d8ef588470932b693864a62021cabb65ce9", + "n_transfers": 34 + }, + { + "name": "rarible_v1", + "contract_address": "0x87994665e48265082274fedfc7352eda00c0253c", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x20c2354416757121000496450fb834d88a6af48d", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xa9d0279820fc1d769bfb5d6290893bbf38615184", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xc3a5277bc04f379ae96d35c1367b8d216aa23248", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x9e522091747dede35fb7a4ef4704559535e9aad3", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x7b61162a188a180c99129e0c7a5230be14d91beb", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xa6b6110a896594314ca1de978ee2f2253c84bb93", + "n_transfers": 34 + }, + { + "name": "rarible", + "contract_address": "0xfa98aa4206bc6517f302da60b20e7bcd4c354fd9", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xfb37cffd0cfb8139833800ee5656963658912d5c", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xfb501bf065e6a0d17560e897df1bf6ec1a4b3293", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x06420e776081946dd29e8d7e7e06693e0b2830f8", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xfc3d514ac7ec6371a5c389c5a9d4a69a6736c0ae", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0xa7e7fb2e17868bc4e336dc6834168c31fb59fc67", + "n_transfers": 34 + }, + { + "name": "", + "contract_address": "0x7d7310df60b81728d0eeb55b354195cee6bfb304", + "n_transfers": 33 + }, + { + "name": "rarible", + "contract_address": "0x36f25493d8e694d18aea6d45c7394d741a448979", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x79078dde3b55d2dcad5e5a4aa84f08fb7d25368a", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x9fd5c67862aaae14a4c4a44fd16f9afe507649de", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xda98f59e1edecb2545d7b07b794e704ed6cf1f7a", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x7d0c1d4e8494afb147884fc934044196b9306aa6", + "n_transfers": 33 + }, + { + "name": "rarible", + "contract_address": "0x4c4c1a6fd78479253df7abb7cb439028441c3401", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "contract_address": "0xacd985a63324c6c5517c234e7d5667cd2de2ab48", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xd01d8961f881edaf23936ad809bf4ad65779877b", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xc9c77b0c2ee79cec54b3af7039f8a7bc684e48bd", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x87ded0e6fd7216881fea520dba16ae862abb2f5c", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xad99dbecc8913eb5bc38ed534dbd0deda4a186e3", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x63bb3d759dd203ab3cef41363eef0755bf4867fb", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xd4174697a0e17501e334a901af58492322e78ea0", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x9b5bb91587899d2169d16bf8086b1824b6b1098a", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x9925b7d92dfe10a4dcef2c873a56c7c3c7c8b656", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xff362fca7d583004cea21e539f64c15bba9ece44", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x5f37ef03130f92925ea56579b891261118773aea", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xdfcc6cfc5922f90844f926ddb52baf21fd751f88", + "n_transfers": 33 + }, + { + "name": "centrifuge", + "contract_address": "0x3cb49702e2af3f980dd2eaaae2ff31fee615897a", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x2a7aaf6cd62340908267acb382533467eb13ab52", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xf160a1164be69c6f0578b80706a683fcd19382af", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xa73f400f6a8f1fee275a15f7b763c93fa777bf9e", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xcca90ddc76c9e3db6fd436eca1d425128b9483ab", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x9d722e929d96ffb318577dc37e5cd54b12ef5171", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xba38a0cf1f336bcbb1809adec45179cfae2ebd05", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x1766ed38c58324744ea74c6161b8259e9aa995a9", + "n_transfers": 33 + }, + { + "name": "rarible_v1", + "contract_address": "0x1629cce8dfff953bd78033bccd769531ff35026c", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0xf6872c479ad348e449aa4346e8e0d6c678acc1c7", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x912eecc71be9e8cf43a13176e59b0bd338c223b9", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x6378f9bc2246955a1acd312af3c3c5d09e197363", + "n_transfers": 33 + }, + { + "name": "", + "contract_address": "0x186963cae27017959f012aff82aaaf528c0c5f5a", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0xd982e4f398d77fc6de430be5e1d52946bdc8be14", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0xb0083c29f9aa3a04cd60d61e5ffa1c7297015d31", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0xcf0b5ae898be1118c8a805f4f5ccc4787340c2d7", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x8926fbba1a097995223bfdda312cabf977dd0560", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x85d960d4a22c1da47e9f1272ee02f5d023b562fe", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x1ec25f81451ddec463cad4bb8c73356ecd6c2caf", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x7df443e05096623cc6509d1494fb9db7fbf0a5b3", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x8b91e84491bd2bd4d853e367ea7dfe97b6eebf1b", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x12daceb35009f1f0f22f541b6bf23f76c94108c7", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x98d759d956144625fbd5d9b9d4e0bf858b10dc7e", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x278dc8dc084863b68d15b29ae8a27f7f7416ba8f", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x79d6295fe735bdece68d1bf78ab843bcbbac5f03", + "n_transfers": 32 + }, + { + "name": "rarible", + "contract_address": "0x46e73ceeaa43fb404ad6369f14470462e7504de2", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x9d1dd09b584057edd6717b0896388027dc10a27b", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x019c748131a079b20d99fd8db94d221de88f5855", + "n_transfers": 32 + }, + { + "name": "rarible_v1", + "contract_address": "0x6f1a0684b275e2ce8481a415befdc143cca66c1d", + "n_transfers": 32 + }, + { + "name": "rarible", + "contract_address": "0x9d4d7f03905483f297242b06bf8a758fdc924239", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x419aa1b768d1476305574a3cb61b7acbf6bd4308", + "n_transfers": 32 + }, + { + "name": "rarible", + "contract_address": "0xdb18eacce41db61e7588b408df8cd90896993f3e", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x7c11d4b1fc4ae3bd79157d4d632884bba488751c", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0xf3bcbd23bcb10f12905bb075fcf775dfa04e0bbd", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x24f412072dbb3804b1664a2447901fd27d98f3aa", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x950ccf63742980ba5c07e3fda659c6a9a2b83fba", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x9ec85d88b1f5fa6c9036272a2c65d68f7ebc3c8d", + "n_transfers": 32 + }, + { + "name": "rarible_v1", + "contract_address": "0x8077a5d7e94bc172157604844392b10e8f9618f4", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x98c65b9261896a2460eaad01f7ba01d9275dc4af", + "n_transfers": 32 + }, + { + "name": "rarible", + "contract_address": "0x827356e31bd2504bbc3883147cc99f9269178b71", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x878881134de06c72e5d070439629ff3d744deb55", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x5576e1a81d2497dc01716e909dc2b81de14caf56", + "n_transfers": 32 + }, + { + "name": "", + "contract_address": "0x338649df3e93a9d48dbdee852933167db8bc60ac", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x6881064722232f6dc6927eab944798c5c809dcda", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xe970330ffb57939ea774bff198bff85623751f4d", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xb8e8fd9214ebca845a920c5dff3b790416e35401", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x2642747432ccdc7eb52ae7f7a07fab8311135179", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x10548f7400a0452d5ad816c3a63e198ec1bb0afe", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x47b3ef8194ce0e53cc44bec06f3c0aca60b05675", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xda50fa67d1575581c9cb564ffd39f90d8a10d432", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xeed11b898173b04e05d7679b19fd20ec180ed065", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x4d3f1e20711694c975af89326dee177148f19876", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x85b29520cb786f01af9964d6ed941b3d380f4ce8", + "n_transfers": 31 + }, + { + "name": "rarible_v1", + "contract_address": "0x7cf827c05f8282556b2a78712028840c13aea523", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xb88a331e0866258247bb00ffb0ef683eabb8c62f", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xf03d8f7e1b7960623dfcb5af3b4c605b86dc7d1f", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x0ed252377824f837765606d44e130f7562dc149c", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xeaa1ed9d973a6f31edf4e2fd831a9b8ea6035155", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0xa6f638a1870213f7b2ff32946d75fe82045f0d4c", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x5e56799cd2440ca9659883dfd13fc265997ab082", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x12f49eda69adaba6b857988bb22ca420d991ebb7", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x9912caa4c485121c56fae53c46317a5fc611fd25", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x1c2853a14fc92f7ee9a1d4a61ca893dbdfedc9f2", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x261da2ec51c1e3c52222c61261ee22e5166254de", + "n_transfers": 31 + }, + { + "name": "", + "contract_address": "0x553df24580a4682d23c72c7dbc163d764ae29fa9", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x96bf02e2fb3d8f8ad6f61b3ff3fefe6740f84a9a", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x88ab8a9dac865662f4f470ad90882b37c7aedf34", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x8a76211d94f7c06fab465d691f224234c3597793", + "n_transfers": 30 + }, + { + "name": "rarible_v1", + "contract_address": "0xa399e2bc8337608602cad9724caf4c136b1b68d8", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x38aba3e0b0f76d3f78c200a74a7d5b9dddd50a9a", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xcd485f43a89681df9a1671781985919f1445ed06", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x24e022cdd9897cd46f7c846e717e97cbd36b1b26", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x223ad297e57722cd5cbb0d462e5934e96630afb3", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xd4d5c047b5d6dc34872de10936364ff28a4c5354", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xe0ba1564a889f0d2ba8ef4978027c1b072b56ebb", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xdf6fe68c5092d1113aa0613996f45c53b301dad4", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xdeae356a33bec3cedd6696068abb38846f6e091e", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x1afa08a06e676cb82e2090964ed0af4b0bf62594", + "n_transfers": 30 + }, + { + "name": "rarible", + "contract_address": "0x6f468f9ba8170d0fa4cf83b5d12a8a93cd4f7deb", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x7e4319c940bec39413fa2e82a9db20eff86890d1", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x85851d406df9e3942ab7d8ad051fc9ca3a7856e1", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x9f7a8b6c08d3f318b3670efbc779b5a50e31d08b", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x129d1cb70c1c43396b6b6469485e13a6dbd62316", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x128c4e08334c43f87979da36b8e2722e906f4d27", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xcfa8a1567e9dcae2e2083d1c1adaaa3d24f905b4", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x499a15c8715f5aa66d3feaec72aea485ccc7a66f", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x0a105f5f432eee9177439335fca3e1ffb65de897", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x8c984bb7561696d7939daa3c9aff9f60b4fd3b07", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x7bfe090ee2170fc6a4934b58fcbadf038abf8650", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x4be8621ee79e483260f3fa3f8c24ca8c15e54675", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x067a1eb5e383ed24b66d72aaf80d8d7db3d299a8", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x4c9c971fbefc93e0900988383dc050632deec71e", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x4d695c615a7aacf2d7b9c481b66045bb2457dfde", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x46e99db62d575b3eb2bb539acdbc29ec0a0f7bd2", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x8e49000dff43b131d6f2e0e8cc3d081476f068dc", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xb28eb20f70503f4cf5b826bd22178d376b82b358", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x97f1482116f6459ed7156f1e4fc76b023c9b4bb3", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xcb3b9d1f7dbca2f97f578eb2c26b153a59fbbf9f", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x3316525386fb28cbb9deaa11191104a92c8daff6", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xe7254d189385046fa1a49d993b8a5737d00ab055", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0xae3d268396fc48483edb1e7a25bc95b6790c0320", + "n_transfers": 30 + }, + { + "name": "", + "contract_address": "0x052a98a7b985a497820abb2f45ad0a3754397769", + "n_transfers": 29 + }, + { + "name": "rarible", + "contract_address": "0xc011559b7b1af6994fbced2c5d7809d8031dacad", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xa6c9b95e53ccd0497cd106ae49517a4bd0b39453", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x144b8f23a774e3f019c9610d1aa4d88a77ad39f6", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x40d3570898c3173057aef5a44cea2dfae3496aaf", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xdddf35668ae06cb2a2b28bc77064f229ca4a842b", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x80804eccd64b153572dcd0f6f494253a0d013492", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x9dc309b75cb2f5967fa6aaa3a44e1079506ab475", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xc470c8d45f1f0c2eb41f18b58cb2b2ca84deac27", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "contract_address": "0x0216eef69ce03ac91299eb039449a2bddc6ee8f5", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xa5ab5ca69f6379f5e66859f86d0ceab89e0bfbfd", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x2232dec0362c0990197312ccbf18456096070141", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "contract_address": "0x6073048d0f63d0ee028a40d4c29f34877b75dd3d", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xda2bb83d549a26e4a71c0e621915878ecefb56c9", + "n_transfers": 29 + }, + { + "name": "rarible", + "contract_address": "0x34218bfa6bd2072e144448ff07a8fb0929e09b1e", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xe95452cf73d6023a856e659f2d55323f69d60d1a", + "n_transfers": 29 + }, + { + "name": "rarible_v1", + "contract_address": "0x35dd63e1318a535bbabe60cc13b08c1badd2517e", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xe58af3dcbe423c1e330f9d6e61cd47cb530239ac", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xd8d5b79e81986f7f00b54d9a8a409cc8e54120a8", + "n_transfers": 29 + }, + { + "name": "rarible", + "contract_address": "0xd35d8cd9fe31b6380dcc8f93a34d86a42186a9f9", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x4348903c31effd817b8794a9cc7a517851262c68", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x83a672b0c50405df76e1a25188e77d6efaf456c2", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x7a6e63979d05b22d9da02acc7380f5a92266d953", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xe64e21013311248cd9514e5bd809eac0c1a7950a", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x6a3abb1d426243756f301dd5bea4aa4f3c1ec3af", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x0ee54d5f260eeab1ab8631e65b4626249ba81994", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xd082fb53d43123807a7c901c57aa5cec3a9d3e43", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x844d40d87be6b822f07b891ccde2478868cda22c", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0xe3c15efe29634c4190bf46999ac0e4792b6660f6", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x2d57eb7ae1d49cba13ae4a3dee18fed0c3e8a503", + "n_transfers": 29 + }, + { + "name": "", + "contract_address": "0x835f200a5358cb507b4a9c37f4c5b738039478c4", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x1023ca6e492cf5ca495f89cdbf9ee9a8f8892ef7", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x1092893d736d30cabd5caf3e15e320aa1b046878", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x132b467bfe4ea38a2aa2ef502d547272dd081772", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x16a6f9365fe0d62a014b814deeb414982f346bdf", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "contract_address": "0x19ca4e91b8c66b943ce26f37a7891669e49673dd", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x1e84c27314621b20ef5bd04e9a6c6033be699726", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x56875daf52fdae9c4a1b24676772f5138d975bc2", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x634573a883cdc8fd7791a7fec456bee0d5d87ce5", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x85ed0aa9e6f025401de93078c17dd83f4691e38e", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "contract_address": "0x87c3f00549ba2e2a26c58b9c17dc758d4d369288", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x9b585f6ccc76f2da823b7e692481156e1fd58bb4", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0x9f6309ba7651d1cb47f353fa8f58085a02205ae7", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0xa92e48fb7ffabf2a8bf9f209c02bb326d86a5038", + "n_transfers": 28 + }, + { + "name": "rarible_v1", + "contract_address": "0xcb95db43d44a77e571e187b9d1cf91d99baa7043", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0xd43f974bb7f15442556351e2dd4a2e5d8d7592fb", + "n_transfers": 28 + }, + { + "name": "rarible", + "contract_address": "0xe0450b58eaba0698b0aa6f2784487f78a0565d6a", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0xe7a8dd62f6fff322acc2670fa4ba940a17d9f301", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0xe9ff91e8a659e1dfd07b239d223da44bab399ef6", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0xffe66c629a9cbd365c2d91e2caa6d2890464c559", + "n_transfers": 28 + }, + { + "name": "", + "contract_address": "0xbd60694eb9fc58e626f67884f1a0c80a89b0c994", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x2037112e68dc6051e948b9c20787ee0973923ee4", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xa547a315f10b2ea2636c6068a0cfbe31ab23ec58", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x85e419b74c3d1c72ec05fc09e781dfe8ebb5e72d", + "n_transfers": 27 + }, + { + "name": "rarible", + "contract_address": "0xefc5493c712a2f39375d72c358cc5bbbcb4c3f67", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x285219175e5b64b1a9a3c343938d49eff86bb95d", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xd8c1f923b166b299d32b3adfc0cde32e7a69d396", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xb4d8860ebe85901150995760cff71554356d2dc2", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x320f0005364e755136cb72955fdc842f18e21ae7", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xe4f3c6bc5a60661b0cd1d544cbdf3b0f092de909", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x07866b1148f60c2b1d63b1f99e2e6a07eff99591", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xad1b327f19c9a83b788b6b4ca9fe2c4010ec3806", + "n_transfers": 27 + }, + { + "name": "rarible", + "contract_address": "0x9a88c80aa2f73f4b9687cad5e076a225bc43ecdf", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x7a39cc62642826b0ee8622cdf4586f80c684b5e8", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xac14a51c856152f9bb5fab2e2faceaa5e8d29686", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x9b9e6f26c651a4fcaef269ccab599053cf09593e", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xab2ad01ee36468dc926b5a67b6ad23c7c5d2aa72", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x8f3b73567cb501b38ac1859c9de7c766cafef35a", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x4d38eea6619b4159498b31df9623000f2e6ef25e", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x8f52d7d78fecab66ff71592edcf92ea8e7bf3eea", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xd57d44ef81f6dd8c789cca982b24fa34a5553f5b", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x75fa3aa7e999b9899010c5f05e52cd0543dab465", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x4fb70f2d531c629511b9c59df3dea0c7c8754184", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x8ff4c5609dd5595b37382bae871b35edbc1f0167", + "n_transfers": 27 + }, + { + "name": "rarible_v1", + "contract_address": "0x9176bda685d37d97e4b3a75e44578adc0ae85c3f", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xb61b317d06fee2c142f92c6f8715bf3c3ddd448c", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xefea4280acdfdfc10359f000cd6f5606221aa4e2", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xb1d67255c994ab720be2438f3ffb3ec2a71d5773", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x4b29801075674225f852625e9213dbe0e89ccbe3", + "n_transfers": 27 + }, + { + "name": "rarible", + "contract_address": "0x5dea989fef70b042d47d09ff3138dacc22b2c5fc", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x94841826a98bdb3efdb493250e7882aa9954feed", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x1e09b41d8c8e239453b62529a603b6ebe6c094e4", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xa5425971826f48df6509152cf6ace505776aeb69", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xc5050b102888a585c4ae2605c05c3c2c5942014e", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0x26436a3e6524c6e902ff637214574b9eeea3672e", + "n_transfers": 27 + }, + { + "name": "", + "contract_address": "0xf30a16ddfdfba014789e577bc59c6e2e89cee0f5", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xba2f636336bb22236423b5def4a0476fda8cd204", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xee8e0d3aeeb78ad1a7b3c8285b869443319b5aa9", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x85ccc8be6649c7e5e0cc4d049055fa64c36c0e28", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x20358a11504ad398730d1ea4ab70a1754bee5db5", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xd55cc696eab7f309cfc6bcc9e16cd32f066c64f9", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xdb189af0664e5d4870fb3a4578a6c161d02b2a93", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x5c62883476483a4db5d3bece72e0b0176b3b9533", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xce69bd6de5ad3501bcf70dbe307dba9e0b5bd139", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xff480a7c447468a44f886daae019513386198c1b", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x5e54ce44f26a87b2eb152929555f36e7e24b0b48", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x40bd6c4d83dcf55c4115226a7d55543acb8a73a6", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x9def0f47789725f505c330a83b14643b5e60c95a", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x4b65046c76131dc4b0d9930fa0ab51f7ff50559e", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x60706e1b18c42716a7445408cf6464c672e1b319", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x4bd6a870c71a36d06d03f0b5fb6cac012ca13397", + "n_transfers": 26 + }, + { + "name": "rarible_v1", + "contract_address": "0x3ba053b97f6ae197f61087c7332d157ce7d5c801", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x64a3e701577b16e2ed913951f04bcd8352122551", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x66e35862e882bfc30cde5addcd104191e3b44506", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xe3be322336b19936e934d861094275b24242cd3d", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x4661765f30a7ebf1ab54c7f877e9c9a56409fa21", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xe48513b09b216c1026603716a79b3cbea752d972", + "n_transfers": 26 + }, + { + "name": "rarible", + "contract_address": "0x098bb92c94f3b1e04caa5a5d428e344917253337", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x6bba2223622bfdda3cdc014e69f41584e3d3e96e", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x0b7a2caad47c699eddd2c82fd3f03054724c11da", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x95b5afbe3676c5b6634a517a41ffbaaafead8878", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x6c82df771903ec58a80a87b36f295999af23a6f0", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x94adecd6589da28babdf47436660204ceca16a51", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x2db2234c39db7dbcdc98423a3d884170176eee9b", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x0fb1063a65ef1b9c8881031e3ce50e99121f6280", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xf759542ca6e70fd413234dd9c8e12fdb3878a347", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x1337def1e9c7645352d93baf0b789d04562b4185", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xc1cb9682282afee9d7a8a243b69dfebc7838b4a1", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x299a95b3a65b3db015fd3cbac2d84d7cc72fb63c", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xbe065d51ef9ae7d4550942fe9c4e948606260c6c", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x5991de8536f27b166b4c68e9263457cc28e0e405", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x256328d02aabb581faf93351af837e8fc923fe26", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x7e1a06e30ad5b165d278c0ee12efa02377035f2a", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x23274e9c8ce37f0216901b931c14f24a879708fc", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x7f1b7742c83332f8f0e3b68f2d47fc54a14b8454", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x22da19b404f432d64e280c3c5712e52612b689fd", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0x1e7837052e1d004ee30d6741d3afc6cd9f071fb5", + "n_transfers": 26 + }, + { + "name": "", + "contract_address": "0xd47b6375ea586fdf02a0078ebc8b3cb9bdceab78", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x5c231134cf5978b025a11dcae0edcb4e07af73ed", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x72664e395f57eb5ec7f2c7ed16331ac1e84729d2", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xe8b2cd982a5255b2edd3ef7f53b26baa1e595dc9", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x811669a4087a1b534c13f7521da4abc6004791af", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x90fd1a34498c99f3211f53f9d037ce4d849d3d9b", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x18a9f3e58a64dd9b178051cb131b5ebb96da729a", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x4914068c6de4399df15bff9f680b984b5a4cdda6", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x61897bd3946b54c583eb0d453a33f2f6f59b629c", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x08902e073b5282fc94f6da1d32d5b4888aa26b13", + "n_transfers": 25 + }, + { + "name": "centrifuge", + "contract_address": "0x74beb22647df0fc3e665f5e89d6b90d45c9b73d9", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xc794cdc5b80436aed3e01bf1c3b51318f34a8255", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xda396a2fc5f0e3a87a874757f1317102f49da5b0", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x17dd18ce543450cea3bfc012c31ca6b0f7bdd133", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x7cbc6ad130b56be83350b470ccd9085a87ae1053", + "n_transfers": 25 + }, + { + "name": "rarible", + "contract_address": "0x8360cebebeb72808ff2a6b946e40f4d27d825003", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xdaf7b29fd751cfa1b49abe0c11c639dfb2856ea9", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x33ee42b6025f10a71c883ffb298655fb22c9c825", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x254af2f37e6f6f63339483746b85d232e5296b9f", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x005efb3633638dd0dd336ce671920bccb1ea82bd", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xeb9c60942c1a3946d759f72ac956c81732361da1", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x5ab1096c2636932982cb987cd767489026147a63", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xeb08d6fabbdbfa4633891b28c0ce780ba8c39a65", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x2857e8eca70fce3a48ea55258a35b63a5e06e221", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x15202113d9a131d71da29a0842b76b2eecd787d6", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x98436ef4388ec4e82373d4cf49ca247b99e58713", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xaf753600127df3d06f3252717a1af24c83f60d6f", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x6a5123ed7daa0350a3623a9925bae6eeffded7b4", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xe429ca2243d62d86be5bd269a9f0b5c836e494e8", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "contract_address": "0x9bf3e18ba8104492d3e3c1654daa888aadc7ba45", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x98b8116a69c9db4c94ebbc350f2f20d974a41419", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x018c0c0fde7d79e38d025cee1e78cf52875a449e", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x247cd06b0f06f2c15993c3ab9a2347cebd12434f", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xa27b72b1abace9fbac99aae014379a8e31b97e06", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "contract_address": "0xc63686a17865d4eb022e485014992eb2d8a88b63", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x0dd501b642e4db186d68910e1bc18d5ee6731e0a", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xc47cae91620e472c2b6c5fa4adab7292fbc7a99b", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xfcd4cec9b41a0c01b581e27e75a687210f42d09f", + "n_transfers": 25 + }, + { + "name": "rarible_v1", + "contract_address": "0x46d2f3fbfa5595b953a522f5e3d649610b37797d", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x646e3163c88a3b4c2ebe10986d2873581dac3f0f", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xae79cf9362b289036797828044fa2e541762b394", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xece416bd05a13e1a525599804748f059a66ab266", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x2290cc16d7bc1f54e94d73f0079ec6779e39591a", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0x3a44aad55a70412b189f46852499ace9ec0d6de6", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xf37bf06231f4c787dfe4431138d575435a79efbe", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xbbeeab2e6515a65fa85d7896c92bbdd1fd13966b", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xdea185b66a1223bc5719f4cf7d3a159f957e10bb", + "n_transfers": 25 + }, + { + "name": "", + "contract_address": "0xe2c9ef04009cbb17a0a93b9033a4c1f002b6b485", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xc6a4bd1dd02b84811f100e201af0e4f5bb26def5", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x8769318e4228e484175a5f7b39d291e3179f0d86", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x9891c4b7cfd414922d9b183efd707ade0ae85e47", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x09e7886d2941544bcd887552f57a10425fe91c54", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "contract_address": "0x6b7a2fa07706d5c18f07acb163fb33270b0ca41b", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x0a29428c1a477be37b2fc92a72c4bc7fce3e5db9", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x608624ca9dacbf78b19232e15f67107da0aee715", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "contract_address": "0x455fd9a644794ed80d3ceae967c106440a0a27e6", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x0b722dc0f7a5611ce4bf3cfdeba8d9ff3abd39d5", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x251ea85fd4c41f83273b625d9059e4cc169f9e02", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x5873ffad552cebda71f160f881f533683e909abc", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xe61c22cb28a5eef6594b85445f37e03608db3230", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xa70cfb393ec051584ca6cff64c98253decca553b", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "contract_address": "0xff1beb21c0f0bed7ed9f816493a96ef53f4949de", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x6faf6db74d06d06e3f18c042ce5029c3be4c5d16", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xf80f6b373c45364801455263097810895c54b638", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xf7ab852514a9868cd45f7c41d04ff1f073c97d0b", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x440116abd7338d9ccfdc8b9b034f5d726f615f6d", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x9077baf6a3ff2c65447c87f9fe1f6b5d58428f20", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x90771bc0d1c94d3f6f5caa50e102da1dcd8864d0", + "n_transfers": 24 + }, + { + "name": "rarible_v1", + "contract_address": "0x9016414da6b2d7294269f6602b5d60c5f5889b62", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x14896536904a202629fa125159c2d88703b09b88", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x5b09e99e10e932f3fe9bcd75e36c93f026987d06", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xd7496464c68a9cfb04ce9a9298587c34e8ceed2a", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x8c84eb589a8416c6336f77f3ee20cdb38d01e6df", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x85f6fb2c8eb3d75cd29b8e846bb0c05af37898e9", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x8c3681c825de337810c879c326bdb118b5b5c609", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x7b2a127880b7f977446e483e8fdb768c28c1fa4b", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x85d613deaeb4791182fff0c5395f3366bdfe0ae9", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x62acb9a3ecdc880dc8ab6dfd6cf48ca07ed10de4", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xe302e3083c2a04c90995e823b83b89925e0b8cd9", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0x0685a3a451f21d0d864c60c12efe6d74db552d08", + "n_transfers": 24 + }, + { + "name": "", + "contract_address": "0xed9342fa758e44cf4c96ebec0a45013bfc6c979b", + "n_transfers": 24 + }, + { + "name": "rarible", + "contract_address": "0x6960de09c7d6b1155a0d4482c032c8e3eb8163bc", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xb2146a2c9bc755b21fdd69b95e82dcebd58ecd74", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x347a4c79bc0dcc6077a9d5e7b81fb1da2479f60a", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x707856246a1ce3850c8cf9fa0eaf2d8fa64592e3", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x6c3c5310b0477b4c971f6baf24a0fc83a57b7d10", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x8c1961af0b29b7a93cdc0226c45bdb1262b9e1b7", + "n_transfers": 23 + }, + { + "name": "fortube", + "contract_address": "0x0aba09a87ab6ba2b4e0db3e01a71e7d55c2f6c49", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xef0ff94b152c00ed4620b149ee934f2f4a526387", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xe8916dec282a2a15ba2b80856a44577691b317ae", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xcba2191943f3df891b7aa289565bcbffed29e32e", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xc41764b1f33e186ae5a3bc6a49134b51722531f0", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xa47b27cd872a68b9897a4a9222b25649c6393f5b", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x6f1e642f460447b012fc6bff215a198b3075e91e", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x2fb9cd948006819ffa3b41316608a809043ea84c", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xc51217dcb86e95b6edb1c5b6827e80f533f09234", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xa29939f74c3e527c83011fab972b09ac68e71a47", + "n_transfers": 23 + }, + { + "name": "rarible", + "contract_address": "0x0a47c67b647f3bf003effda6318ce2bc95871f38", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xe19edd187a5842166daa125cfa95aaf2b19f792a", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x60db0bf75490b90565598b1ee61e890f42b2540a", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x9abf7597820100d713221f7e1c425e7bb64ec2ac", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xec62480b06268ef472d54af722ac1565bdf5e1b1", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x262af69384aa3202545568727f2a135b50e2615c", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xb857ebeb72828e15870d18e748c4e0542fafbd97", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xc7b23ab536b4bc86a0cce3273d356fb2b7975510", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x79614d05a0e7884d60d5ce53285a326c42cb37e4", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x791a35b005b07dee8e9ddb9b790a55ea98df1690", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x7713c5bd7ecc7e2621d19bfcd88f9470286db717", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x291196295fcc3e88921336678b738d30b7ba349e", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x23bfcd22c5e9de83044dcc1bd9542b5712fac84e", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xbbcdd3afd096cb315095c85a0db989d9bb6ce6f9", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xe93a67d8d0bc448a8ca7faa1653e509102dda9cd", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x1940af132813fedc63b6c6338814575bca97f71d", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0xbe31b3b34aee6036db503bcc01adb99b3be52918", + "n_transfers": 23 + }, + { + "name": "", + "contract_address": "0x4a28707edea8257d5c42f5b3b230132e73687155", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xd7d2c20a8d49cd2b0a4980070888502a1bcb4f8c", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x4d74c37d9457b24f04e223ddf2f81cb1596fe765", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xd6e4696fca58a805f66a1b2160f54d690db56116", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x4fe5459e90c67cc231f5f6111dc2d51286680234", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x01d0e21198ba6576fe27393a9e57ff1c88df0967", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x033e32f62be8b5b079b35290f7638d6fad8b2f92", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x0420fe5738373cc8b28edaf7d35e8310d9ff30ab", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xfb2cf3301f4aa28087f742dd056495da86e819bc", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x98aefff101e211ba8f8784defeb5299dda50d94f", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xa7828fbf4ad80602f1d3b7a82509d565b66b5de6", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xb0b291c3a5f11745f7b0fa631ec2875d7b5af605", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x1ad366cf8de878e730daef21fd44276d8166a91a", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xa342f5d851e866e18ff98f351f2c6637f4478db5", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xf0a0293d762af2ac36e57613d42ac36773eeaf51", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xa3240ab0b5e1b0f9ba73521062bbca5df87cd6c3", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x2058eac19627d29addf8bfc52144cdc1d9756f03", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xb9dada339a7af8bb66aca33bdc273aa2a8a0390f", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x7cac385c7bdd9071b7ee675bf05ae07d40aad323", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xa7e43a1959e6b05a899dbb2caef34f475de31fa4", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "contract_address": "0x7c5aa98093c9378864005d6d69fce10d708473d0", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x282cdb481413e5357e54be71cab4eb838ebf9f03", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x79f8cd0e10cbc82d663e6d8c306165f6785297f9", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xeaec08c8f4be61d189f4067d8493801c6a783958", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xc25e0a7ed3e8c6228b8d2ea5a4ef065ade25572d", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x71e848d950d70ff60c125e8019a44dabd9a4805e", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x6ec32f7a754caffbca024eca8a5b42c10ae84cd2", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x30043153a38cf068f2478e8fb535def5c9b0add6", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x6c5ceeaffe60dd48f666807e3455a6618a5e8a63", + "n_transfers": 22 + }, + { + "name": "rarible", + "contract_address": "0xff61dfdbfa899bff3de22f8df9602d343bc455e2", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xe3f7dc4939134adad34174266671c7bc5704b0a8", + "n_transfers": 22 + }, + { + "name": "rarible", + "contract_address": "0xc97871bf24d40573c219c8e4269607d632c96b13", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x63e7557c5c216f9ce9ab730bc73c7e908a8ed232", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xe23b9f368d3cfa255f7968dd0491b0d4fea135f5", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xcbe642d1b28caeff5f8377560db29e43ba7ac200", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x3a97a3e13228498522dfb90a4698f7e396a316a2", + "n_transfers": 22 + }, + { + "name": "rarible_v1", + "contract_address": "0xdfbdc87dd3faa149aef0e71f86497c1718450c55", + "n_transfers": 22 + }, + { + "name": "rarible", + "contract_address": "0x400ce193f75a23ac6803aeb379ddc830310d6152", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xdd725a7f64b917be71f0c83aa8a3d84e2bc1d753", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x42df419667f7c2d1a159cd6a182caa9247ba7f6b", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x453c9473def2e6f2f261c025b8a29311d2f1bb5a", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xd0c402bcbcb5e70157635c41b2810b42fe592bb0", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0x57cdee8a9658f364553fe89ba200252b00ad05d9", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xa1a39fb7b42709be5100d4b25cec1c2accf1e9f0", + "n_transfers": 22 + }, + { + "name": "", + "contract_address": "0xe750d24cb2feb19b0cd4af45427e6066a293d836", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xf07a167a3bf195ba4f90451bc085857bceca38ff", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x62d1403bc68eb6806c04c0f109309438a9795910", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x4b4d0d1407765ddc6ddacf309059fcd4ae471a8d", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xaa23e8cebd3817eeec735cd9aaf557ccb8e8407c", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x63d9e6739cc32724eac1efd634b7aa2c3fa689e2", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x7c124a8c7e209bd02654ecdcce865fff5b2a6f30", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x854ccacdd9bb251c500edb3256c8219b0f3dd7bc", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x0e5450e25d9ed5db1655b690588b62d0eeda78b7", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xaa5d3fb8179f170bec853347a6580d884cd9129b", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xa1bb5545f9a9140d5e1c3c9c40e82d4582aa1e05", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xbfef1af5c3a88b6a627be9469d0892c98597a298", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x8606c0fc6fab78949dd6a5526685aade29358898", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xcfc0c8e3c0d0c0e3094b58e112f69973fe660372", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x9cb34a127fddb89249302520b9544b26966e1915", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xe30940fe4ac7d029dea86537e76dcbbf0d0e4b8d", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xc7e87d503b8ce999ac926e8d1f1dc7d2b0054750", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xf0e149113c1efe7e1daf2bf398d00e32c1caa749", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xddc27b2c47ca2bf8ec67a036daa5dc9db6055d79", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x0691b67075754952f39232c5e58a2f0b490f9234", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xad47ff6109d1fc7c5f2667a8ebb535788e23e3ff", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x56d1a9e3808fe334d5cc6b1d1fa8a8ed9aef807a", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xcdf836192b5d00fb4fb8c2bc4fbe1967cff8cd99", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x0427743df720801825a5c82e0582b1e915e0f750", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x685893c0fb19a1396632f137609b6f5760c93f5f", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x9f2611dac4b2668ed3d8cd31c511895d525801ac", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xad9e7e07bef916ceec66cd0408fff006358e1ccd", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xe511f392b0407b589ab4203cdc065001bc110290", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xbdf6cd5635a0bcce5a0445f113135e0fd7c0c5e3", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xddec43f591050a4a9ad4db5e398eea0305a5edeb", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x981b976149602030a35362716b634e1c828e4d92", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x12c15e6ee47b032f69b4edf9b9bb18b4b310f1c8", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x211899f45856e22df75623a2c6abe7997802ebc3", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x97a9f0e13182ee0f32640c581e4202ebca7a1aef", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xef8d58c264eb66e5bdfe2f26593cb96e17dcc7c7", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0xfce1868d47ff7259411a9f0b64ff1041f4a0c938", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x0ba0da84d81283f91c4460cc349189acaa8fd42c", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x39c40e0dd57f745b05d29c2253245c0df8b7bb30", + "n_transfers": 21 + }, + { + "name": "", + "contract_address": "0x6e372189b60ee330704ea12d05bca94dfbf336c9", + "n_transfers": 21 + }, + { + "name": "rarible", + "contract_address": "0xe414a94e31f5f31e640a26d2822e8fef3328b667", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xa7a01f9e7aad2c257afc2cd2347a7d9a511ebf51", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "contract_address": "0x07e3394eecf90b14831feaeea4eb948178397400", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x8f6a88e38b6bb281be548acd5b6ad546c433c3d5", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xafd614849563975b249e65551cd2e8f53b410c80", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x697362e9aac095ee907356c9c0fe634929dddeb9", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xa4546e276421d5ba5e6c67f48793bcbea9339ce8", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x46cf3b615f8f8a5ea96375e0c151f350ccf79d86", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x6e2344674e8f1eeae616538c8b3e547c3c22e30c", + "n_transfers": 20 + }, + { + "name": "rarible", + "contract_address": "0x221572fcd696c8d554a52ec38687cafca03e0b03", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x1fd9100d23a638a1177d4dc32c3c66e72d656a14", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x91731898fa19349dfc0eed08df1bc1314127f760", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xc29491826c757e13bad2d3900c14e750d352a92b", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x720c96e7befeddf89bd897b0a6f0c9d2c801366b", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x5949069da00965f8ea9d660c1c75f7fe8b185046", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x7129904b060e06c4b8732d5bf4e6aaee49cc3545", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x6fa71849f7a21e9b24e7c6c66909c0b002b956f4", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xe893816886813f4ce33b660ec540a893cdc13e18", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x9359702f81af4ce9293520ec409c01693e2baaab", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xb8bda506d800b0573344c0cb7a622a7b9d106dd5", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xd6630e4500d2ba9e28d039edb70a836bd12e731b", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xbbe7aeb729e65e3854a30d583cee6a28434eb841", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xdd580d187acf11da4eb433c337e97577d7c359e4", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x4f0005d92feabbcffd46eb0bccae61ef81f03802", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x479a6d14284ff58d9d2293fa0eddf1788c6922ff", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x00d80df9853d207d300c5a699dabeef834b01b4c", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xefc8fd5fbdc003c9020b878577087b741e8b7550", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x7bb02f81de0fd4f879ef71b50b8d9b295e804ecd", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x87aa8711f828e0fef7f08d8c2cdcbb08f3983ea6", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x60eaea6eb38a1b9b189636e12c250be2f13648e8", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xe0f495173d95460dec3706975fb5b3733694c435", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x8c0ead2011191eda54c57d67a5acfabb3b9148a6", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "contract_address": "0xd2ce2cf808cbc40755519fe05c816d73342a9828", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x8487a965d9a9f65488a5f44c6ba6a56cf19d4d5c", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x8c4317745f185534d645bff2b5e648c1d211edf5", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xb982b4166b905322e9d7040bb2ad3c10d7c06dad", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xf42ed50058b88a063f8bb4060fa6dc269d90b5b9", + "n_transfers": 20 + }, + { + "name": "rarible_v1", + "contract_address": "0x8d41a08d65d90a3af2002b29687bfe0e3df8ccab", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x639e82b5e58fd30e625fb3cfe399797fdf7f814b", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x4719eac1daa6c5ca584f482b88a168ac1d358395", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x78d2b35af227099139367ae407b106913738ccfe", + "n_transfers": 20 + }, + { + "name": "rarible", + "contract_address": "0x0502a81321da8d00b60850f39cb6a4f8a57ae420", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x0577215622f43a39f4bc9640806dfea9b10d2a36", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xe2e3d843989ff0c1cc793207f5154c72ae6376be", + "n_transfers": 20 + }, + { + "name": "rarible", + "contract_address": "0x64db85a851e807f579de0a07a51e4b780b04bec3", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x773da030e06309bd9c0b905dacf7bb9381511334", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x1f0da6e1686d5c16b89f95ca4788431508a926f8", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0xac94226109dad4fe1e14f7f3f3bae283cb39df79", + "n_transfers": 20 + }, + { + "name": "", + "contract_address": "0x98e11a3341ed288e8913a00395d46549e918dc93", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xb76eaa976af6da1d8b46b53350a868462853bbd5", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x1b29e5438de83ed6bf50a0ff0218aa38fc485629", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xbcbb5ff5f7468eae49eb56bce648a503cd00df8f", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xa35e816a402e6ca487cff9f0eb9e8f1c092793a2", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x1a31877839ee5c40109f963876ac1cef8e026f75", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xbdd3f8ea1befa8e5adece114bd7f86614f42d777", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xf3b92198c7c5d0a7f64506e98a70a902c92a253f", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xf607db3187b7656f1dd2eb46c358b53e533db3da", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xa6055e5dafb54297eded8da5b6e38915443ee1fb", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x2ba780d611f90942c6619994b3162de7bc6e316b", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x0ffeb4f2a8f9f651d5c4720d809cd0ad3f5070ba", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xe83db46562c64a8842ca0abba4e65b87401b8480", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x6f464c779c020a8303a805dcd5e278dfa3913de3", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xc4749f416c7dc27e09f67ac02f23a90e0ba6ad21", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x522f8e92d8d3d11e67c3d1dd175ca4656c82a6f6", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x96bfdaace31f87de706a8fa8e8ba6880d8a66621", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x6c1a604346f4b568cd78e09ba6371629be541366", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xaec0b222cb464aca956e80e6ca32e4d872ae7ea5", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x333ba9b0b9ebae483f3c013d6ac6448a3a14b761", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x6910ee0c6efd2f4cb7d06f85fc5782b1a1489725", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xad90a4b2ec84f9ed62a9ea83c8b14ed59ab32571", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x6607de2644d9cbbe2ba1b6eaaddbfd8353f4a918", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xc95e764cf4daeb020e79d4eb31101356db9aaa0c", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xe295dd1d481ef593715236cc62bc8688a2136cbe", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x648e89955fbe0d9e3f46c598458c87a4c355c23c", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x38e5be1ece9407f7619d6147fe64b29f6a732650", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xcb62a94afcd4ff4498be912dfbf60ca1d4b3eddc", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xfcd7dc06312ed4d3142abe4c451fbbcc0912bcc5", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x04c692341a71cbca69113828487f182e4165ec24", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x3b0353347049c87655da5fc642c2dd30f6e83f00", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x3b085d6ca98ac2cdf7e5cadff93c86a665371e11", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0xcc4ca495438cedce3b631520c35a8c20f004462b", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x4a09aa840da58d53aa9b7ae1147d2b0f50220b94", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x413a8d306de2c58626ca1a83bbfa7c08659bb03e", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x424c5f995787d4e6824e1f5c9202aa85be97f14b", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x511e12f6a8b5f6acfceef8d761be67bab9152e0e", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x5656ba568b3c0cb8995c8182266ae2ce515ffce5", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x5b747dd81d88b7b10834de25c119c96f95f2df36", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x87b3f848f9795c4a6accf69ee962a9857634ae22", + "n_transfers": 19 + }, + { + "name": "", + "contract_address": "0x66b25eda64d507fba4ad0eee4c9498552ff698fd", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xc5edf3ae6eadc6957be14af3a274a84959439097", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x3dcf3db05758786fe8efaa055eaa3b53ead974a2", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x2b27fee96b644e051e7b5e2aed0598dcc2386936", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xccd83acaeb9680b9f2577f22eb1b90771f821d45", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xd4e3cc5d3a2a4d46c937f8be3214ddd7c2f1e288", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x8adb942084f4692c278b05a549c2d396700a7de2", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xc9045c815bf123ad12ea75b9a7c579c1e05051f9", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x5182b55bdaa2447d2ee090f1aeebeec0980acab6", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x59e7357095b739beb55c5d0e1719ddf8ff1ed4c3", + "n_transfers": 18 + }, + { + "name": "rarible", + "contract_address": "0xbbf9fa4bdba14b88c2a206e4b35e01824876eb86", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x8f90e06c878ed30f8b8af0fe019d0e23ea855198", + "n_transfers": 18 + }, + { + "name": "rarible", + "contract_address": "0x050b04c21338ca950313ad921bcfb2b1145c9bb9", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xe3c0505a6a226e960c9d52c1e1f1b5172173da11", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "contract_address": "0xab9cd3e1507333e7ce742fbe50710ef717328f4b", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x784b079b480be01cf1cec400baec17bf5a46c731", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "contract_address": "0x4fe047255cd71dde72df665d0b9b7731d26999a8", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xdb2b645ed7b3741d188a8ea63b56f54d07f79663", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x161d56376b4595f05903e8ccad88a415e8fb4f7c", + "n_transfers": 18 + }, + { + "name": "rarible", + "contract_address": "0x5134b15ce08886e0a3be730370bdd8e96680c400", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x1da7877f7c814360167b72a460c0c5de0b99ae36", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xbbaecf72ed5879d83b54027138ddf38b9c0fb052", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xe290a2f83a01bb4228c86b28a4d768f42defe710", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x286a4b47169b27ebcab6cd94d4a4f58a7bbb4474", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xeb30e885ad86882e6d7d357977fd6398526b08f6", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x394d7b8ade4cb74bf23076071389b7378755bc8c", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x62d61b8f91a6d1b7cf6f7b40e095d29b6214dfbc", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x16c125312df46b2500d7c9bac5f6b0e5bfb8f13c", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x09305998a531fade369ebe30adf868c96a34e813", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xe1d1c0c832bae2ac4d80e743584f3d98c46cc780", + "n_transfers": 18 + }, + { + "name": "rarible_v1", + "contract_address": "0xa2b507a8b4a4211194eb706d3ab0536e31db7d74", + "n_transfers": 18 + }, + { + "name": "rarible", + "contract_address": "0xa1638f917d5533c86081b08098abb17a9a39fbd5", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xc22c9a28a93aebbb88047e390a008a59b8b7efd5", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x94dca4be766a9526bb334db7f95e5aa3aa839bd7", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x31611c8c696829d70e20f924c23b72b01cf2a59b", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x7297c93792bac79768736a6746346c5a4c5d1f22", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xbd9872b0d9020350100418fbe4968b8b2a473bb2", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x3724444b2dacff1668647705f297b80e0fb4035d", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0x14a80da6f77892c687349f700288fd0c7ae3413a", + "n_transfers": 18 + }, + { + "name": "", + "contract_address": "0xcf148ba990c47741085adadfd5350d75a492129d", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x21c80a9a30c04c6a5611d1a06d93c64c329a58db", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0xbd8929059d0594f37426dccdf57ee39e45831c81", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x765669a8b721aa9c0446c53511e674a85398e90c", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x98fb982050b0177ce1a062f1c7bdebf068482697", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0xa7332a720abe886754f288ff2ad141a9eb80dc67", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x5bf62176f2cab0d47adb1aef98563507f44dfe2d", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0x2e90ce7898dc43be7837b007d53838c3962d44d5", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "contract_address": "0x536de6625b1ea87c4e2d9c4c51a765be4267e5a9", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0xfba7df3cf0e93ceef8a74bb8ccf01a1f9b04eec7", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0xaaa995adca2bfc50130c211dd26989728d90f258", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x9051c29cf42e9834f7553df17ff37d1a8ce6caf7", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x0d6246654aa49685c2acbaf39404d50e15cc084c", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x66de7bb49e451cc47767bf6efed3abd2aa1238de", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0xc0de0642c325e21f34c6d9a49a7a58ea66ec1743", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x1b199e8505209b538490b499167cf010c4bdba7d", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x736feb1a261c38b2847a05c0f192ae695bd9c2ec", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0x655013fc068775613a156fd949d76094694c2b89", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0xb0f87b75da9cd4ff0c5debdf1a7cdd477cd69d46", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x1b75bc108a0259355475ce45cdfb5599361abcbe", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0x29f51e6bfb34517a42b76e2fedf9bea96030f580", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x5f7333aaa0b50c8eb6f5e7c5ce3514122dbadbb3", + "n_transfers": 17 + }, + { + "name": "rarible_v1", + "contract_address": "0xc12fef4892e49a83a9469c64494e781452b6ba0e", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x5efdb4488fc33d5931a66a1249b52678098a058d", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x28361981411fdfe1710fcc637a36a7ad7d7010c2", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x69e03f251b372416287bea1f4e976379b032f68e", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x895c67e3b9090cee85a1098f69ba2e3d6445b312", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x7ca7a808ae9f8c808ed5c30ea47e99862ac57a16", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x01b88dfd03ae3396197ffc9e392bc78973d76129", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0x0e758eeb09e047cd0eb1650859065e2e07b1ecc4", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x20fe575f8c91eed3aed6b8ddb04416525792785d", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x885e9b81fad615e4d3cae6ff6900e387f1db8024", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x01013d4c0c8c80fc4ea4d50bdbbe5ae1e699de29", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0xf155559e016ce2ece37b22d1bfeb62a24bc7690f", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x0af61aa79af9e5416e0f5076097b1179e65026ca", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x426d18bd13c20a05aa6991746234390d88f9e16a", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0xb7c293dec92033fbbe14adecd56aed867227673a", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x62d795fa1444d0c5b08eb5fd86cf1bb056da3b2c", + "n_transfers": 17 + }, + { + "name": "rarible", + "contract_address": "0x28cda7d862047e8dff335a59679cf29fc8ba2a26", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x7f81ebdc93c7edcf1d0422239960c65e2d409c08", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x5b4e0f9b657a194bb6c092d4951e264237faef97", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x37489d90100f8f097ae4d5a97aca2b4a74a0b853", + "n_transfers": 17 + }, + { + "name": "", + "contract_address": "0x23b0a6881c93219f97861746e122666072ed1824", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x316cc9430d3ddce6880acde7b43db974febf0483", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x6bda95bbcb1100e8d7ea2956183a3cf892165f2a", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x81db79e27128334e5be96dba3ff4b4b9f56fcebd", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x7e346d4b6b3530526bfa868879292a9161567c22", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x55fd00e014dc99bd2e82471ffca0da69afeed472", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x98618fe8112314b6b5cd3ceb41c40ed417d14c19", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x753788324d64aabedeb1521d635e6b22aed47981", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x231c66e7474fc300b000b35e1cf321d2405bb9f0", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x2a5b27ce8142f68901a008eba08bb436251134bc", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0xa2ae36172ed952a7956c014a7de67ef66686fb12", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x348bba4bf1b035f62e565f1fccd3afb9401f2091", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x13ed2a5f21f2af62d3adf931b780e323b4843a4a", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xc0f2c2bc8c066ca7b218f781a6741ba6b50ff5d8", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x57b9522b1723af5050498dce68a61aeb362e22af", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x36d9eaeab734fea56805c56abfb4d5f24500d3c5", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x37494774711103e738c1fcdb665980a23bb65e56", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xc8b9e156df984d3cd6f0dcb7160d0196d39cdaaa", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x7f0ec323c81a0799aac917444c175702369393ad", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xea8dc221e660e062e6303b5f09f567a35d104dc7", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0x658c7df4db0fa54d01ffe584b473958a7e38d7ef", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xfc2af5839039c9a3f4ff289947de3c102459882e", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x77ae6fff10795142ccb9d9845c6030a968fb062d", + "n_transfers": 16 + }, + { + "name": "rarible", + "contract_address": "0xee92a56a5617fa6020aec6ec7f55f4588cd373a1", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xa1a363ecc4000548db7b5abcf790b722caf082ad", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x14dbc7dc14e6246fc884fdb00cbbb5d35f086f1a", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x8702a56dfd256850824691d9c569b1b90ec5a04f", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x9bc04782310b462aed6e8e318a4798acf731c228", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x8327bc17f66a6f37e3aff22e03307a5df5d817e4", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x7a76222a2ff0f9ed9927f0363a93f582f1b79cd8", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0x82ba5f0ecba0f02b588bb4a067389ee5041dd65a", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x8c8fb01a7c39b876fa0e33b257974e3d68927dfc", + "n_transfers": 16 + }, + { + "name": "rarible", + "contract_address": "0x7ad5366ad26b922c20c9e07dd363e7e09dd431f1", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x8809143a5536c569c0ac8c5db2051195239d6f3a", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xba36d019b46de198cc07ba10cb9ff6f4ca85b5e3", + "n_transfers": 16 + }, + { + "name": "unlock", + "contract_address": "0xaad5bff48e1534ef1f2f0a4184f5c2e61ac47ec3", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x82ab5d6d491f6836486bb1d7d43738b4e9f688f0", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x8b959039584829b9817b32f8dcf4e898403d0dde", + "n_transfers": 16 + }, + { + "name": "rarible", + "contract_address": "0x3c57a0eb78ff3ca684bfb6a6403957712feb9c92", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0xd9c186c1a0ae2b63e0652ceb44ecfede3b8d6fba", + "n_transfers": 16 + }, + { + "name": "rarible", + "contract_address": "0x3f9d7b15763f57d7f5015901eaccca27ce996bb2", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x400c970571e9b83111ec915f601e300aed4ac9e0", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x6097fe60da5d9637704aad5c76447b881bfb0767", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x029e9bcd335cfbf5693e3e99c52301e304708f60", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x827ca14d477e5df77544ac0a83f68b9173274dcf", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0xcd950cfe625cf2800dd84501b78e3f4b7d83c8c2", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xd568b3869b23c146e348a984a88812f82e26291d", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xb65ef8dc26ac1c0a36391d7e7bdf21ccefdee3fb", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x218f856f0f726c37db4cec782a7f77d2bd28fc9d", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xfec5d42da1ea4aec02f095ecd0826b1ffad86fd9", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xa0ab85691cb1a3eaa269743f941ad39f58bf480a", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x1d204ab02b8e9d443d8ae7eecf3b69d96a2928fd", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x822cc1fe0d947be93c867d12c4836ac40c9acbc0", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x5d32e097999bd45f86953abe2b3bf11b4b7ef2ee", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x48525bb4bff51a75258ea4319dd76e389913cc35", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x43154efc9cb33c80833c0dec1e15bb9cfc1275e5", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x50c5d9bf2fa9442f43354c4ad30c7a7c9bbbfc71", + "n_transfers": 16 + }, + { + "name": "rarible", + "contract_address": "0xcf402c67c59bbc28b99150e3a9c139fcf6dd748b", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xba5d9fbf01f0deed5bb9a1d35ccbae0323876f91", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xc36da2edf8cff98a40126545af68b14858aa2711", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x7e1241337ad858ff0ae4ceb32f1517439caa03ed", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xa726c908906765cc395d91096978bebd28a3af8a", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0x0f8e9b12b4856396be200b536f27d30012fbb4dc", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x70aadb3d6ab74b9ed47b230bca0bdceb9b5c5a38", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xb89bd7ed0551746a8e49c760f9ba92a052d25e2d", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xc477721d043bef7c8601ed43e2e6bbc2a08f3cf4", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x0e0a6e8fffc38927aef7190903aee44a024a872d", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xcfdf325ec4961b99f55685dc9cc0ffb30bb759fc", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x6eb96ed1cd20f32f353689e1e8fe0a08771fb72b", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x2bbc38712c91f578c4e390b855517f805387eddc", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xc4c68934cf7160bdcd882c1f0c711e20fcbac360", + "n_transfers": 16 + }, + { + "name": "rarible_v1", + "contract_address": "0x0daaa0d0b75e4c0572a57e7f1f7692e20f3ed7c8", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x3083f1d2fc728674d90a355715c6dc0108990009", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0x72e42cbed7b53a79bc528ae4ca37369182b6832b", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xb72e37518e3ecd10ae08a87c2073bb722939ab0f", + "n_transfers": 16 + }, + { + "name": "", + "contract_address": "0xa4daf4712ec7d37b15e2b8ad090710fa4dfb8977", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xa7017579ae122ff327080eda895329a0b9062bb9", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xa72b89a24b98377ba2026bf7fc8cafba10476c1e", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "contract_address": "0xa3cfa99cf90f804ff61629e42c2daf5945d8a4d3", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x9fbe7ace6cb0b05b8cc95686cf7c0bdb0f88e3d6", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x9e1efb279a03d0d4bf9d3a7f2206a41d195a2123", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xaac54bb59196da579de3571316036745be785117", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x9bfbf548a2aa91dc7312859834a20a9c3d4b31a7", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xae611ac177dd1d253482d437e4cbb3ee6010251c", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x9505a05046c828af5b1f7c565c1f87ee30c25d4e", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x94b89d880af92a44b749a0c13979f8b14866fc8e", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x941886df98e208ec7074bfbfc6bcff84924b7d2e", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "contract_address": "0xb3d70c31fd7aa33de2ca4e9d61ca14d3fb38f49c", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x8a7a1aec2a0eef3afd776b84935ea518d1e37b58", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x8971ab330684eddf58cbc41e5c033d4de1c20210", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xb9205d42cda3d83178072a44483a1d0f159ec3d5", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xbc5f5ad2b72ad4b2119a3e1c084eebb49c4136e2", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x7660f37925b89880b6a0a02c7a70567f6353cd00", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x72973a4ed18573ef56004df9210aa9756fa311e5", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x6ba0949c89066b499da72f636097cf6525ba9737", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "contract_address": "0xc6ed99ae56bbcd859a7ecd8a195ea59c00e0b71a", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x648d11941f61afe6cbd504082afb239a7d18794a", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xc9d751a26e591220aaa21b00073cb042dc355acf", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x5fdd02dea5945a646dd831864314f46f87a64cc6", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xce62339a13f25cde0050bbc23f69876bac094e53", + "n_transfers": 15 + }, + { + "name": "rarible", + "contract_address": "0xce69eac10d152166c3f496aeb3f9e47a82e17c20", + "n_transfers": 15 + }, + { + "name": "kyber user", + "contract_address": "0xd314e5a98e5e223566f5b21ba237e1080322cab8", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xd3fcd4c1fa2952cf3b1a3f531c95b4b89f0974e6", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x523f38571f463c86acda20f6e73794844e8ec00c", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x51f071cea3e714d531d7d957c13326cdb236cf0d", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "contract_address": "0x4f65e5e94dd48c483fe6ef588b432344b584849e", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x4da54e1fa95b7f28fb9ff1df06c89070c1ab0b03", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x4168c7f6d4d25d9d675346273e707203b5c06564", + "n_transfers": 15 + }, + { + "name": "rarible", + "contract_address": "0x41493b47310d44449a220f358bde2d259f8af1db", + "n_transfers": 15 + }, + { + "name": "rarible_v1", + "contract_address": "0xdde0bae4eecc03214e0df390bb4f32b54de50131", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x3f72fef29e308b7a44d72e2dcf428d04c70099f8", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xdf2f6ef713a46ea63f77b9511cc71569d4d63201", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x382ea4f87eb2bdc4c63e7cd8fd371fec3f3489a3", + "n_transfers": 15 + }, + { + "name": "rarible", + "contract_address": "0x36d7e05149f1368acfcbf29fad616c8a39e4bf0b", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xe4cccb651d5e568a6c4f40b1b799fbe0a8580d83", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x2fdf003289019eebba3fa2f753cb8f9dbf73312f", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x2c900d14f295733542d5b07f8d15c0bc94144cd6", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x2ab0d73084f869ac5d7d9fb87eb52f162a04ecc9", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x28892d2e2b83e3331ad1425551f14b47d6831579", + "n_transfers": 15 + }, + { + "name": "rarible", + "contract_address": "0x27943f4191dd6d7f33eb16e20c71fa2d74d06d2b", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x23f1263ff87ebc3c6a230494840b65a4a3495934", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x2200006e5d7706a922ba523a8fccc93f36ba50ba", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x2143e75be418ccfea73fb65439cc16c25ad3acd3", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xeec09be7280e7af8b2e35e7466afc30a9b5dc744", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x1d8ee091c257ea1b186019f9b1f3caa217f1758f", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xf6c3aa70f29b64ba74dd6abe6728cf8e190011b5", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0x12d46d45a7762df53e8c92e43b48ae40e1541f68", + "n_transfers": 15 + }, + { + "name": "rarible", + "contract_address": "0x09fc48b6fe70ca7e49366c7333c045eb89b4b09b", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xfd71af001353c5d1c24e46e611340e71dfe2a099", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xfe142a48f9b0c1d3ec7591a6ea1c667cd99cbe07", + "n_transfers": 15 + }, + { + "name": "", + "contract_address": "0xf3a4f6be4f6959a081eae1fcca4df9fee495fc8c", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x36e25fc7ce47366160e9a71e18fac8ecb54f24e7", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xc7886c91ff20de17c9161666202b8d8953d03bbd", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xba2e37f18b647f19aa2e48581729fc4d0131b270", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x227c19ba406dd2cf1e2f095c81d60d8ebb031ad5", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xbb90d5ca3088e43e542cccf89001c899edc76127", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x2847d3fffc5008646f07c88f876ef0f613cdb074", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x2873554ce6395fb8e514277cc5a371549409aa3f", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x43cae02414cbce84f3ce3e24376a3f43c635bac7", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0xd90d9a12d1434efdcb2fc7d4e08ef59c879c2bc6", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xc141140e34ebf78921fe4f721fb89a1f360df83c", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x99b8fd034d6e7ad8ebcde369931c8aef0b7116a7", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xae056092fa7068dfcd60bb9016d0e2d2448a635e", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xc6b688831c870c85cb3db74f29dafcdcd60ebc16", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x2be5748e1c9d182d8fe62d70b3c8151b3401483d", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x2e625e82c0508dda7f1a2634a871ff93f2755b5d", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x329bf976b813f87d6053811ae16d361143c5a560", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0x6e433266465be3f495d02f61d0d78a422e7ea3a1", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x01666a05ab9bcc6b4d2b3a3a4257808d2149249e", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x6e0957afc65fded823a917f15a15ad986b5f4f03", + "n_transfers": 14 + }, + { + "name": "rarible", + "contract_address": "0xaea81ee023df032139188f3d15be281037e5b377", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x51efe9abd39bc59017c1756bd2b1b97d80d45073", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xfa0a699828f689fd5eed9df5d0d9bddb832941ee", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x57318daf32e1f208fb84af5413c4185b8f66104d", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x414ca6359a5b79f0901506465a2cab91fbf06295", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xce322a6795e1685f8381e3a3f7b299507647bc84", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x552286371aeecc04f67fec4b7ffd65720f022029", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xce08bd0a2e5fea624dd6584b5b16e00d0163a16a", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x0f659e587b9ab1a54e9613fd2a5b55ed4f7e9073", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0xde2377d0a480b17266ce083a1f1824325c8dba6d", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x109e8e842ccb8491f70a9674c13ee4c97e09a1a4", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0xde87e78c1a12868747a54e0917ac3427d79027c5", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x13255ea342677b43a331a23900636a63c99a8b16", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x9f641775a859054c842ea284f2645ab3a5ef9bab", + "n_transfers": 14 + }, + { + "name": "rarible", + "contract_address": "0x0407812ebb0de83c20553aa1491fd159ee000c8c", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x3cffee3853ea80cc69329500c84231d58f72d7c2", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x3cec6941e866da90cc1fa299c9d7ed85d9e00274", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x3cd7b4c22c565a2069a27d0e6965b3deec85179b", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x3cbc4df87d22d3ae40657973041f0551eca176ee", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x1344ae94912516d642f61f90e2c987b61f7db8d2", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0x13dd4a08ef2f8a7d599282d1fc2e486c686f8867", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xdab9a85aa41f521a5f93e36aea8ac09a86fedc25", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xb3f82fdd1cedf46244172550c19e4b5dda281e3c", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x8e00439b5ebb030d4300ac3e35b0846acc9df578", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x5a9ff56416b64b73c1bbb6faa96ca4a7ae6b667a", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xfd680cbb249e1022eb80e820cf8c3d9424c001b8", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x173d43e00340aef6c22d0a83c89f53d4ce8e9ce6", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xb4b12e72da47bed1b3236b472683d962abd55208", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x4a81c38618913b2299c3c1019afac6ce398c5a10", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x8ce9c232441775308717bf9873621a27819389d4", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x61fa9a1eb4b0b53a9de4220629ade4c7c9a43272", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x83a79124ab71433f71133161acbc95c85e928a0e", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x628731359d154d8bf9632823d29dc5f2b725c07a", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xcbf12112d5defdccc5dfd7bccdff1167a5114e18", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x9b7d7fca8fde7631202028017f66eff1a21ae452", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0x1d86a4cabb748dd16a436a3c9ac600eb89803e5f", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x4b9c8e141545d6067e687aeef734cf307fd22c99", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x880aa8d355b8009d8dab11ce66d54e719d347a86", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xefe49dd1d252af04e6358df2241803418634066f", + "n_transfers": 14 + }, + { + "name": "rarible", + "contract_address": "0xac80e8740a5eb2453d145d2e093b7f2e3a01e085", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0xe2d6eead865ca45f4ec016a2bfdf79ecbe30991b", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x866e5396a10f51b82c96fd77a0c11c506db13b8e", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x83c5eb22bce5c6f4d4a0fbbfbdaceaedeccc2c7e", + "n_transfers": 14 + }, + { + "name": "", + "contract_address": "0x06200b19f57b0da041e251066d1cbeb2c23ee702", + "n_transfers": 14 + }, + { + "name": "rarible_v1", + "contract_address": "0x21183518d1ec4498b8ccb9c0389487f6c20ec5ee", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xa5eb8d529a70bdedc070512e2905627348bb1ce5", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x5c3d2055c44c840b9b433f1b5d117fa90cdfce30", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xc77aba1d4c8ec4bd797e3f42355d36dc2d1efb3e", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xda44b0dfb1352afd59cd1f027c2617fea5a32090", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x8049065d334c4e3af43371c1693a9153d3aa9c7b", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x4707ef4a68a54f266e268d43e160592d8b924ee7", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x7fd2a7ecefb5fdafcca091b0675960d9cc3aedab", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xac645ea91f6c6a9cf91903123aba17bda7b1afd2", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xfe1b5634d7cc609ed9cd1378a00afa44f2cea2bf", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xbea8da472d39a49644e34821b52b5c57e52483f5", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xbf4c281240ad853be8a95f6b5f9330381f0c7dbe", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xb7d81f3e75ace51b72e6846da0b13eebd8ffdd4f", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xb7d839b45f9591bd3be4debf3e717d2ff595d5d9", + "n_transfers": 13 + }, + { + "name": "rarible", + "contract_address": "0x28a2afe6b351fc500f42eb3d7f4ce27b98d9dc4e", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x351e74b1aeaaa727d36d254237f1cd61239620fa", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xfdd633b978f181d5a78ab10bc8e03466bcdf264a", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x60fa799bb3c11a0e84f16ccf6965f013724466a3", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x9cb034035cb35699633ca162f0ef859ec29d830e", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xc6ff88aedbebd082505c37e78d07967be30ff8a5", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x7564a7d83b91d5910e6c561fdca10f4e035f70fe", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x195be8e3aad8fc8780abcd0a85bc7fe248659004", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xf2f616eef2e8581a14bf31047cd98f559e44ad9d", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x743ffcacde37d181d27358795c24c09269ec25c4", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x4390282c7d623edee9aacb971303077aba2d5e14", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xc26bd7284fe8871e6a116c5d6a4d30d83554f793", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xc64146c638c237433c2506efcb7b618354288a8f", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xe87c54e08e348f105c49331bce57e7784a8237ba", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x37a4de24afcdbdf1f1fcd547fe184d2080c4e04e", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xf11f4e85a37db2571003b5dcfc80552f6b30d1ce", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x048d478196c086337d6baccf9bb4c1292f6174a6", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "contract_address": "0xe32094f07d8a621ecdf2046c12dac21c24da1d4b", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x2f95688f0c23c28ae509be7e887773f465e368c4", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xc4fbbd1bd5ed928451ffd4a51b8f30b6d58a6874", + "n_transfers": 13 + }, + { + "name": "rarible", + "contract_address": "0x317c77419d1dd8d54e08bc24e44dca3175f00b88", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x14b7b5f344d50f6b8bc4654953df69f2701d2333", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x981b2818a46e41efdd76b65d2fb84cd50336828f", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x14e81196e60b128527db03d40bdba00710777805", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xd41999ac61a0c535778b85ac746ac9a20fca54b1", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "contract_address": "0x86fb43c4f0af4828e6032ecb7ff9be890c2841f9", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xd993ae4750b6b352399978ea5eaff78632dccdb6", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "contract_address": "0xa6279fff2ab762d639c203b8c842d7678bcf5bb1", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xdc95ed11e88d44f4e6ece3c959034646e7917b15", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "contract_address": "0xb70fb6eaa63c9a82a7d361c2c87ee4862e93ee56", + "n_transfers": 13 + }, + { + "name": "fortube", + "contract_address": "0x4fffc1da03d97de5d8890c2f87a3e3644858892c", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xdd09892c637090db399595aa35b86258db4ee183", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x475067c43a5b4c132bf5d4d47e465091bbeedb23", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xf8ee8d90acf81474613e6083178ce928fe77f868", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "contract_address": "0x42149fbcf7b225f0eda5a051a8b7e2ccacc9be88", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x5ee85bb074290b9aabfa7cb7a18f46ada3b3e392", + "n_transfers": 13 + }, + { + "name": "rarible", + "contract_address": "0x9cef9d4f8f95956d301b9805988be9a25a0dc741", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x885920af0d2252b623f51dc666c5ab227e7bbe56", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x64ed3ff75d196459ede4e362e227c36d8416fb93", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x64bdf684345e05c11d1e1cccfd1663232041c07a", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x455f108a053562b75f7346dd26d5e6235d9488fa", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x631bd503f8bc56082ec17a5aa5a86d316187d554", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x947ae87c81aa201925de59a0d6fcff719ce589c2", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x193f0b73f01b2f347b0128bcfc0366ca9c87de9e", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x92808971b98d08c5bd9e35ad7f8e859dc098ebee", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x1012c998f969a145df6387f2b4b0dd91227a8b72", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x4024f3e26584ebd0896ae9b841662d3af86e5b26", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0xe082605a7c6813a4ab584d83c0e0bf7e50270752", + "n_transfers": 13 + }, + { + "name": "rarible_v1", + "contract_address": "0xcaf85f3c2f9f9b3f9862a9f4c1dd14dcca438afd", + "n_transfers": 13 + }, + { + "name": "", + "contract_address": "0x06d0c38101563c17cabeab96e24d72b27e5cf617", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x48dfbf4ca5e564a066fd9c67c34f31850792cef6", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x56b376ad4444b546974a5f3a761bcd2f2f0998dc", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x56ca46f028f8c3058b28dcfa2f013eb3bbce18de", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x5745ae608c6711f17583762897392d83af0eb0d4", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x5be2437d52013275aa44f325da1315fd7614e5e0", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xdb281b2d66c3a01a44ea8b5e8d4ebfd6df9a21ca", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xdc54b327c9bcd2c962e3031c38c2084813431de6", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xceef34aa024f024a872b4ba7216e9741ac011efe", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x42c98216fad22c2fa620bc03ede2ca1b03fcb957", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xced2a816a4acba1fb639b0c6d30685e507efb484", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x5d7ab4d3618d7b3cb9accc0f5f56b8ebc47cf2a7", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x42050cbab7485be9f29615fc8daf2ce9e4c86388", + "n_transfers": 12 + }, + { + "name": "fortube", + "contract_address": "0x9d93ea7c4a72ab519e238faf8b4c27865152720f", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x9dd32de96be6994b567052178d89fd815ea8310f", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xcd0e33fd0d9a5a0fe4a37f8bf741d30cda4d3f3d", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xdea4c925fc8677329f1cd2ac621c96c66e171c3f", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xded33ad088ed9f4a86f7a156c99c423f5e6a0d08", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x3f38e8e4f5eeed41798e0b7b74459bb8decfb680", + "n_transfers": 12 + }, + { + "name": "unlock", + "contract_address": "0x9f9551ef5ce8db4c53adebd32cd9b24373e67c74", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x3d89d3fb23c6dc832669e6199d284fb74824031d", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x618f734511c5f85e4eaac674f35756d8cfdd3a2b", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xe027736872a29e89cb6aa79798abe1cb7e07b6d3", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x61a67353d2882d75b4e3e005598fef07bc7d5029", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x3c0d974d25399fb6d0af974b9384beb1860a116c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x3b94eb47e44e397124c5e87103839c8eac0c1f5b", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xe164722694afa2491b411e7f22216fb13d773560", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xe18c2f51b9cdc631c6f06bcf01673672aee4269b", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x39c8788b19b0e3cefb3d2f38c9063b03eb1e2a5a", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x39396eed30eb062093885b6e6be9190a25e58010", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x6345948eee870411b39874e3b9ee8147ae32ed5b", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x0187e9dcb0416a5324e401d8435f61fe6cdb2b89", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x6696a64f696301c7d15f289997f29ffc43e44992", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x3521afeee677ceb4f893182d82537fc849d1aa23", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x34d565bddcff2dd74bc98e056ebd32dd5f5e1d34", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x34c829f18862b9267987ede26be840ead7344f46", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0x68e22a3c863956d13bb7bfde1ebb0441c047d23e", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xe52b744298ddcc80dac33aace00fa460c5f397a2", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x6ce49bbce7ebc20c6df0d830b6a2b58114b99a0d", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x6e278ab30b8c00c1121a92ae23337c1dd71d1f5e", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x2fa61655c4b2b0077575a4e3669091ff36756acc", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x2eca465ea71a431e40c76dd4fdad0115ddd58fde", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x2e2eab1dc0a40e31a89c22e6c354209fa3b32ce5", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x01144cad63687f9d06c46854c810366b28a84d73", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x7017644d0520e5340d64d9d3ef40c8765ddcf75c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xe88bc46eb91ad76f519fe84d97592e79868247f6", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x73c8460f8043a4521c889a3cc23d1c81214a1d25", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x75e2ada00724e30bf9a19f2565abf40608b12697", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x0038b9c31d6bc25d79cf2c24ecba3828b3bb3bb6", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xa1d993d1a11f49b34a7eb8d18111fa861fdb8a43", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0xeabca4890cc5836b1a760d155481415b762fa838", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xbfe0dfa80f5dd2fc43bdf79f3be6b095fe3537d8", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xeb84b171b046627f8bf864a321fd0c5a9118c72f", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xa2616f6452dbb4a2c3782178549a787fecd781fa", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xbd1f7aeaee5228abadc14b8414f782449e9cfd7c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x7c69c48f54670d4e37f0f5479a8f2799a558ac47", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xbc56929699445f826ec61aad4f37270912788b13", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x7c93f0e4096dceec5dca5c21124c1dff5d0c2be5", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x2396183979aeecd287b02007caa8d0c542a63993", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xbb6c03b455c0690b10c64297115aa81378f34e8c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x7e96645abd31ecb1ddff3daeca83015e52c59a3b", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x821f0c09b92c57346372117dfeb47b51d1138a3e", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xee9de81dee22b4a90197b672369ab550a8636d05", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xef44c505d810bbca51ba7c73376feb9438f239bf", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x1effd41a757827dc2a81eca388e9e12f0678c1f3", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x1e44f6313e831d5ac08e45fa1fdb5edc894b73c8", + "n_transfers": 12 + }, + { + "name": "rarible", + "contract_address": "0xf0874d638a9c7720cc103a2173f1cac202215458", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x1d76551ba2c7746323ba915b27b0a20f9c8d12a3", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xb6c13dbf444fb390f01fbdc0fe3a3c7639dbb18e", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x1d1fd8456485701bcfa5a9a7f8c36f8666694f5c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xb65cdc676dcf4ff914cec3cfb2722be7cdc6e325", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x1b1d9c26792aa6f8539281ac763291a589fdb1ec", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x89be28ea3b9a24885e343674f25cd8444fd692e5", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0x89d81ac376eaec2bf6dfa1f63dcc00764524abae", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xf29e0d9f58eed1512d29acc2f0464338ea620c06", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x19ffc74e8b66a89614283e0d6e4431a44d5a1c65", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xf339c020e76dd1dcbf8ec4edea050962c4b60bdf", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x19f36aef020d46e7bbd5203851f6ad9bcc65c2de", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xb55a1cce89b6dafb0615c99b2354fe5210f95987", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xf3b5e384b7ff4a90bc4bb9e166642270174c8b8b", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x8d3079c5e5f4dd211685c5cc785d9c47ec6fdb7c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x8da919ad9651cdd226f7c4639a40e96777357ab1", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xa62c7c9fcdbac9053b3ac6460aa3fb2b1ea1a75e", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x11f25df3fc13ea5daf5ed3610a94fb99dfb6a517", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x915e0ccdf9301fbce77cf1b364779a58e23a00fc", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x0fd42901e5d7b0b14574940e2f68a9d94afe5d7c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x9409333c0076687a1fdb40a917e9e5ad69b7ba53", + "n_transfers": 12 + }, + { + "name": "rarible", + "contract_address": "0x94b3eba5c7367520287ed5f8ac98baaa95d8bfd0", + "n_transfers": 12 + }, + { + "name": "rarible", + "contract_address": "0x0b66015100c7ebc10cd3d9496e81e9bdfdccce32", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xf9e38ff84dd89d9f448ed875a2f0b5ba9de13053", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x0a02b4fc38f4c834ac73ff0c654c035944c4d3f0", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xa5b8bbdae8739c0efa98ca2d46b93d8c7c1408da", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0xae29c4a370c20587cac93856caa1831abeb7fa53", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x99171c2f40527221005954cd970003b8e2977916", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x998866a8d37635f291a8c23b3cd1f163eed059af", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xab96b9c1737488af6cc16cfaffc07cfdbe686c1a", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xab590b4cefae97abda4a8844fe6934e6590edb5c", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xab4a7f33b471aec753a2c4eb17dfa1365f0d9458", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0x9c171a593a5e18197e62b15056f42338b3110624", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0x9ca14fa3b6e64b596a469cb9438717b0984edcee", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xfe1d6c88e18bd94e56325bba80f2546dbf583fa6", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x5062bded8cf48843fcd5be0686955a170471b089", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x5074070c5ee8d1bc738ea44fcac0841cae6174f9", + "n_transfers": 12 + }, + { + "name": "rarible_v1", + "contract_address": "0xd6029e4601799edcc484326f527b02cd60a5bdcb", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x51518f8546edad26169eb8137e6d2488977fcf25", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x515e9c9ccbcf12dd11500a7463599a2c323e5f64", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xd768cee0c91717affbced258d43c3c816f04f0dc", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xd49ad3c22b391daf6b8723918f23ec24d57f6191", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xd8a4c7d2553c150a02ecfe29ba0e422dbde619e7", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x52ed952a7f6cc369e7b63a8cdb2e442d51ffbae1", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0x54f7291d9b87c6bc0782a199a4dc94b98c9e4634", + "n_transfers": 12 + }, + { + "name": "", + "contract_address": "0xbc92abee522870e255b5c3d77709a64b55604072", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xeccbefc7d873af8116d1927d88796e830cfddc74", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x5cb32080ea8cb2638e97494bdc685125cf3a140f", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xed4dfcd9b0584a20b857cfc7ec537b33d75a5247", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xbaf1604c4469943dbc9cd3dd98f2d6f298b3a258", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x7f6c4283e7ac7dc8aba0bf9b5200f821448e70e1", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x2263a0e583eefc68aaee3a677abbd28d0a752798", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xa2b48a0420df2ccbfc9be29551b2fe829eb2476e", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xb932f8ab034e2fc6d019e041039aee41a02343f6", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x1fd1a91db219aee5e483093165a46afa04e1bc29", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xc9aef2b4f0ca7cbb9a8beb1b7618ed33978060b0", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x87a5f05ce4e0762047adee8be418e8582526dcec", + "n_transfers": 11 + }, + { + "name": "fortube", + "contract_address": "0x051cf701dee594237fb088a64517f68693c7f712", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xe2a3ec2aad99208048c392e63ceec746df210504", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xeff958982caf80db4f7d096bd44ee8e184336dfa", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xffbefa27bab6559283a77d00c8c1e50932882988", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x1de72298b5e7785818be926a03a284831cb696a7", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x88ffb4a7da87a8661cd1b1dadc70187643f2bc72", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xd787db908102208d94eaebb63e9032d8fdf3d200", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x1a3d0f000e4f0383dcb985d13c5f25459beb5c15", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x8b617adab4c4343e2e2fcedebb1f93d808c45a65", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xf3942cc79272acedd6497c2955f28b88c3c5f09d", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xcc132611673ada7dac13dff5246d3b7ab1cf125f", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xa9ffdf75d7cc8fb6de9a774eaab6a04b62e9278d", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x8c7e6302983a14668005d5bba196be6debd7aa27", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x3b73c96f3881f840157696ba3434ffa44fbbdea9", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xd21dada5f6e95887a51a0b215486b59b5a8115f2", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xf3ed3554e75dcc31fb4399ef6be66afa8f0e72ab", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "contract_address": "0x3bbcd14b317f9da77ae4b4c1f982b691c01e98ec", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x3c2ccf3824bf6440651bcca5c4668cac71c33ac8", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x5857725b6d6deda938cabf944f0a5b922b8b2ba5", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x613460027a0aa5a2a745d35fd415a2327ba4eece", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xdf9916db7f99cc1cd8f26e05b4333a45bf4a453f", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xb3a268ad0517018902915496c62394356652018a", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xb39267c731fb84fd33d743698c2a3191d6d96415", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x3c715b5e4ecf83c38294c5c354b7c70ca2a96baf", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xccc19ec1f295a0f97ae8b4ab81122396f610d0ac", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x90b385447e4110d63e7aeb04feb50cf0e5bbd294", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x90efcbafc7d2d7f8d716a7b710e7d5e4bd3daf64", + "n_transfers": 11 + }, + { + "name": "makerdao user", + "contract_address": "0x5fe8f8e8d8317ea26ccf08bb5fd2fe72fc29c4dd", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x930171e3479fd8870089dbc1fee3f19b6099995b", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x5f17452c0b9c42ea2481ac6614f7e34cf44dcfe0", + "n_transfers": 11 + }, + { + "name": "rarible", + "contract_address": "0xb0807153c1d43ed8948a481cc804283e819504e0", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xf8b0ed71530ed8e3c39a77b171ce02fa75374e3d", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xf8db809dc84f54a8b77049eef872b5dbf7086dd5", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "contract_address": "0x56cea45c1c2830cce09ef41a39e5fc8aff4170e2", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x5e09c1e1244efaf3c8aa53a4a6c09cbd5417adc3", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xf8f1f524c827e66a30871ed55beab0d89b1376df", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x95a63f1c630db1ebfc87d1eda81b37685197ae87", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x96012ae7f61744a2dc441ec8e0c809a3de1ec906", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x4c2b0c0db66f8be000cd24f4fe57d11b401f22e4", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x42c5504170838190ea282ee4f5d5dcdf8df16283", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x6d0bdc929cda5d38d017b71f255c48e5c5ef3c54", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xae97ecfe82932521ab7d8c8d9abb8e7143eb3d4c", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xe66954c8030d3aa65aa034d9fa907e9caf76e986", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xe6afef13efe96a719111ceeb49684ce8d52decab", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xe6cf3b85868c27fa0492d2fe0e5b8db658fdc971", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x47f35e35f6323101dfd3ba906492b42ce97d6409", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x31c94f504ada158e4f1779623bc74f3d0c931470", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xd5bcd95f75ce7e1c567dea3b4bc45fa519713024", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x33016ff8b34c31a13ee2d97b3900a32ee5145e29", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x2c41ae220819fdf0495480c1e09570b7a9ea6e75", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x2be6dae126185abfcd0c3fce25d971f84bb33f7b", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x09d2a34aa67b407a925b1b67536bfad80b375306", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x334d25b6ded137ba1b7d3299b028cd29701cb6c9", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xc326e240663cfca8d795d8c45f2f14813da0b1de", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x2a89c31a951bdea95dabb71db8a4b47ce1ee8173", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x687a977fc2c11ee38cbcb879c4aa63a1e0860020", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xadbe1ec921299af0324d8390332e969cda73363b", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xa10a6e324ed76db3d375a0c7d85a162246ac30d1", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x28f524c349649b2d42729c135f96bd6ea515b9dd", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x765826d05d94b3e5d04c6c2287102d01645bfd82", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x682f1b40af7f2838545b952bf3fd17de90011608", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "contract_address": "0xd5897aff61829ef2acfcf377542fe2e64e387b9c", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x28802e8bbef429b85bba22f286ef5bb8e83f6d59", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "contract_address": "0x35b68fa4351c32613f45f1129af8fb3628a2e704", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xeacac1546f5ac86badde025b59731ff92aafd440", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x77c8379aa889890f2524c375f822e331e5820fec", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x06eee83179d45f4b3781fff3f7406d0129df4986", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x7a281040722baa95fc693c6c880630b068d89356", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x67c97a87ae85402130d73fd6a2e7c265f4701b52", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x06ec650d01c668d2e1ddb4c10e51211753096c0b", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x36572ea876116755bbb182f80933dcd3f8a0c657", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xc74bb9e36f9adf930a2a53dd76df84f5936dff0e", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x28253762e7d417071c307feded38642ba251a2f3", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x43933d42126b0cac3c7660bf2d05762202ac9b82", + "n_transfers": 11 + }, + { + "name": "rarible", + "contract_address": "0x278e91f559304b33689867d545f96bc5bba9032b", + "n_transfers": 11 + }, + { + "name": "rarible_v1", + "contract_address": "0x267129c5dfddbbc3fa2da7f69e69e6f81736a21a", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x7bc880a16bd1cecf44326e44295fafaadbc695ca", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xbcd5af129a14120ce86a1265bb573731b71bc4d6", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0x24857d9b4fbce0e78ab6a271f64aa336ca87a8ba", + "n_transfers": 11 + }, + { + "name": "", + "contract_address": "0xacb702766f812a37b8da5aff309d3826290e2de0", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x8d3898fecdd23e73c5af04915d906db89b505bfd", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x17acfd9e0e639c2185729a6948a310e803ea7bfc", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x2f83fc012a3cb31462104603b0a122c0d718982c", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x171fef047ca885dc2b70626644ee7c2160152971", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x8d604ec183903dcd52a3af17dcc52bdf1cd5bc24", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x164db649fef1ddbe46632709685a214c0b4231af", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x764b393fb80a87c005c93d9f73b273df2a40f06b", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xe004deb08d8db7529b69227c6ed4484d06d46e0e", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x3c4125aadf5815905e9511ca767204f0ef06a3e8", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x6bac2f46d6ba6474014890154ded2018ce8161c0", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x8eee2f59e98375eda08a00148ad4a852f26003d6", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x7a8f67d646f791563ce3f7334cc41db7d1cbd87a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xb3e2197abce57b3c2f38ddaea95a941854201756", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x432354065061940ca85b1640708a35d73443b133", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xa4b75ffef98d50cd22f24b90e9ba7190e7b71960", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x6e8370e2cf7ebed101894e3fc703bb43baaa4761", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0xe76701b0c3454514493a314ed82e0c5203aa6a3a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x134c93f35d96e67f35b638e5ab9011db8dcd2e77", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x3cb151f5ff77cdce228796fed768d9109f7e504f", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x8fba299f2db7a9738de4a7588b3de0642e809e80", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x6fec66c61bf7ade5a97d43adf0ef52bea46169f1", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xcd18dd1b838a8f2b899dac1d0e80acf813aaa140", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x2cbd3dc2fc9314d52538301d917706a34b2358ae", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x004e7ecadafb26d8b394b92e8e71664d16f1f3cf", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x57888ef52b9529201c29620b66978cdde58d66a2", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x09e2cc8938e5a3cfe339198d44272500d10779ad", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xcd8bf9dd771e93b17e2164698dcb30cb87d51057", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xd7c62dd57bfe870bd8cfd964cbd8127112b44f16", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x008a7d72fdd891eccea1c2f742c4a1a061a4357c", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x474eefa1213730875094b2dae28c4cc16239d349", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x7c24401a3a51c4b828dd92ee6a99cb59484e800d", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x93387edd457c3b02015e6a92707f3bdb631f0fe1", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x40b897e287e633da94a74e2adabdcbdacffd0eba", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x55565f83028eccc8615ebed64abcd258b907b3aa", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xb0e9dcc6524b32e5752bac524a32649da0c1095a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x944727a9fefb70e66eb4a1c06b6f56ba85ee4029", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xb0ad37c4277b137a150d7af0ee83d314fbe0eb0c", + "n_transfers": 10 + }, + { + "name": "rarible", + "contract_address": "0xf85caeb59c7b47d1d3e3d72978220e3891a11695", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x7ac0b23e7683b52cad499d33cf16323d710c6e82", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x7b5c98ea9c7dc1c47fa5760e54c0e7f06956f053", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x0d981ad3ae8c1f7a492d8926a72ca7bb1634c403", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x0d9652febb89bc775c5e0386c75376974a7c35d6", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xc6375e04fd31c2a5b28295b4518768ea0161cacb", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x9a09750a74403348ca32de810a0ed41de8243fcc", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x02a0bd956dca5a6ae1aac549d9892650d83e588f", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xff5625114f1cc77a572974602b8db93f6078bf4c", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xbbcaa8e40dfa57d1af6da0c21ae8b1112780fd55", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x67a7ee3c4015c5573343c11740d8032a184fdb19", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x0610546972e3993efb116062a0762ec746018ed2", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x05faaff77128867636fd9521bd9f0b9bf41cddbc", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x05e916131d6cd1773dacc30598f9e2393d42f86b", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x02b0f9c8386c628e8b8774ac198d2e19f7c29d96", + "n_transfers": 10 + }, + { + "name": "rarible", + "contract_address": "0x704f837d1ecde34c5fdcdadd61a7b85ecb243fb3", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x7054c76244b1a996c27b1334e07bda5d1103de7b", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x36865d6641a371eb0c38526ff9381b1b54aaf488", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x36b60b8f9995f7b1478ed6ad2d270d886325da78", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x0cd5aa928c09fcdc30e7f6bd3d16898a13dbaf55", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xff08f93508338ef2a592891bf7306cf294cf84bb", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x0bf570d3da894c12c9a457143c6060f90b2d161c", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xdb3bd30a61143413ff6797a381df44f9a1e6413f", + "n_transfers": 10 + }, + { + "name": "unlock", + "contract_address": "0xee2b7864d8bc731389562f820148e372f57571d8", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xba52e1530a6dfcbfe15a04c638071ddf29fb9b74", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x00a5eea73161875c65f90f57b6333aee661543dc", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x66f6f9cb5c079d084993f4762afc0ed6e1c3cb8c", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xc7cc8ebbea6ff16239cb177cb94959b912421554", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xc7f8dead033c8782c7a6c107fabe7930ccfac457", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x65a64cbc51c2a3e37518baee1164993e2c54261f", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x05d398039e57ef9682ab452246668ec86156e325", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x84f5ae7f646d1d044c86a5b5b751b1a3544065ca", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xa2bb55f694e87e55a5701e62fbdd3d97a5929d97", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x77268b2747f3845ec277f6905ea3c0d071495d2c", + "n_transfers": 10 + }, + { + "name": "rarible", + "contract_address": "0x204ecf00b8f626ef40b470d915d1d944b61ef5c9", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x85d56d0f39b1250de7642f1e63d25a7b62dbbfe8", + "n_transfers": 10 + }, + { + "name": "rarible", + "contract_address": "0xb907671c61a037a67c08c88f3582348493762040", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x442db1ecdb2a0b6028aa30e710df7728df5cfa55", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x8641263fa4772b5124169d3ef1f2fa2773be0350", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x37736bdb7bba8ce79471addb1d445fbf9bc2efe6", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x95c77f3ffc2a01baf1aee5342f80a5ce98c9f9e4", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x86ddca39f3483be35f2a0821feb0020663e3bb83", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x1f9695c836ec9d12391ed46cf4fc50da664f5dc2", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x34683028110c6336073e13d7d25b5e076d1c63a4", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xb8490ad69af948a343a5bc2553b333facb394d16", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x733756cc51467532641c85c7cc4e4aca30ef1d12", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x0b0b70905137786cf705102c194a1b4916d8c4d0", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x96e918c4f78b78e297b82ae6f91efd16e64b59dd", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xc9b59d99bc30b840c9f743f9233d45040342b5d0", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x970e90db5bfd3e4dea453fb061e1146ee3e23df8", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x1ea9862c2676086a25826161bbb8b67d24b65e9c", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x63d7dbd41c99d23f56dee186fe14439c788e8bbd", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x452fd9e6229d995850975951bd2294f72ee081d7", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x007b25f3b062db4eb58db158b86c17f1bf878ce7", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x050342c02a8ecf30e74f37636185e6c6524691d3", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x8817c523201c1689a87b46963505ad3103128d3a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x62c3865cb318b47d253aab1e8011f3839a0ec05a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xf9e51dfe10a165781838c7dc9b08020433252543", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x62b072b06b3e541c2ed780d80c91f06d3dac4f6a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xdbd539766266077705fdd922729c4d9d280d6afa", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0xe1b915fed466d480678b8641dfbebbd3528a1ae8", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xcbdd70ee804e98de2179b0a5f0eff81044fd1d58", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x3a490a9ed6584472123644ad28a6c2a85df7021a", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xb6d662a49c3aaa3b624b4429923415f0c67504cb", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xfcd32ca7384af408e817de131b8bd6f8cc1d1d82", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x5328bafb9137a3bbc85ef623a8a370207b9222fc", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x51b7216e4d1181366ab1db054b058ba25d63f3b8", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x1d136924a33ff8a62f7e3910a50173f338131aa4", + "n_transfers": 10 + }, + { + "name": "rarible", + "contract_address": "0x47734fb50ecb0410353cf6c0ab102c5b04f67860", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xf1f8959e9eaf7a02d3a246aff17f2555fd45096e", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x89b54c9eb5613c299e5781cd06e99917f0d68dfb", + "n_transfers": 10 + }, + { + "name": "rarible", + "contract_address": "0x564da259c5d1759d37a82fb6dc430b1cc7ad55e2", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x04ff6e6eb2fdbaf02ac79d2deb22ebab686a2209", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x5cc405c0c6b9381b4fb9fb30e7699dd1ae55ab37", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xf270e101a0d5f959fbfa69cafae0aefd56271749", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xcf2269cecf6b53c95d17a3520e22b6255ea05736", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xa8a997efd738d2d1e5b70ada828e0f7d2c0198b3", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x3aaddfd44edab93d467116c65e5a1c349f68ae52", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x8afa4feff8b5676bcd76341ad1ba3038245f2596", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xe51a7572323040792ba69b2dc4096e8e6b22fdd4", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x5b1b24fa281701e9e2e0562afd39844b64b41523", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x19fd551ae0426d576698d399e104313ef8d6a553", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x043b5e15260991200e55b219ab487e8c266f56bf", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xa41040b4cb440acb37e997521f60b53cf5c7b673", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x4580a6f8fcead131405eac9e80601c71ec01d2d5", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xe1152ec25b3d7f31a7053836a9e37ba55791c6fd", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x7a2e4b5627a07120770b1d64a9ea021e801165c3", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x6bf9352bc46c4e9bd3ec009f1bc0ecdea6a0f54b", + "n_transfers": 10 + }, + { + "name": "rarible_v1", + "contract_address": "0x2a5bde767909d4f2b51fb59fed044d5cab89c882", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x99cb8405ead90e77c96bfddfdea616ff97e74f32", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xe6cf43f6b6363b8b0fbc8f223f1b9b943db355af", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0xcc48a3b8aa06ab9815dcc126a5d758c9c6312b75", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x190c82bc27b75e43d65cf2f4e2791cc21f68aa71", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x319c3ce387455a805fcbb28fafef600fac6434b0", + "n_transfers": 10 + }, + { + "name": "", + "contract_address": "0x4391e3387176ea51488cd9a7e9ddf8ea42cc343b", + "n_transfers": 10 + } +] \ No newline at end of file diff --git a/api/src/registry/mainnet/erc1155.json b/api/src/registry/mainnet/erc1155.json new file mode 100644 index 0000000..95b0ffd --- /dev/null +++ b/api/src/registry/mainnet/erc1155.json @@ -0,0 +1,9 @@ +{ + "name": "Ethereum Mainnet ERC1155", + "logoURI": "", + "keywords": [], + "timestamp": "1970-01-01T00:00:00.000Z", + "tokens": [ + ], + "version": { "major": 1, "minor": 0, "patch": 0 } +} diff --git a/api/src/registry/mainnet/erc20.json b/api/src/registry/mainnet/erc20.json new file mode 100644 index 0000000..d9ef01f --- /dev/null +++ b/api/src/registry/mainnet/erc20.json @@ -0,0 +1,9 @@ +{ + "name": "Ethereum Mainnet ERC-20", + "logoURI": "", + "keywords": [], + "timestamp": "1970-01-01T00:00:00.000Z", + "tokens": [ + ], + "version": { "major": 1, "minor": 0, "patch": 0 } +} diff --git a/api/src/registry/mainnet/erc721.json b/api/src/registry/mainnet/erc721.json new file mode 100644 index 0000000..b92b183 --- /dev/null +++ b/api/src/registry/mainnet/erc721.json @@ -0,0 +1,9 @@ +{ + "name": "Ethereum Mainnet ERC721", + "logoURI": "", + "keywords": [], + "timestamp": "1970-01-01T00:00:00.000Z", + "tokens": [ + ], + "version": { "major": 1, "minor": 0, "patch": 0 } +} diff --git a/api/src/utils.ts b/api/src/utils.ts new file mode 100644 index 0000000..ef514c0 --- /dev/null +++ b/api/src/utils.ts @@ -0,0 +1,13 @@ +import * as dotenv from 'dotenv' +import * as path from 'path' + +export const getEnvConfig = () => { + const envFile = path.resolve(__dirname, '../config/creds.env') + const envLoad = dotenv.config({ path: envFile }) + + if (envLoad.error) { + throw new Error(envLoad.error.message) + } + + return envLoad.parsed || {} +} \ No newline at end of file diff --git a/api/tsconfig.json b/api/tsconfig.json new file mode 100644 index 0000000..1535d56 --- /dev/null +++ b/api/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "CommonJS", + "strict": true, + "esModuleInterop": false, + "declaration": true, + "lib": ["es2017", "DOM"], + "resolveJsonModule": true, + "downlevelIteration": true + } +} diff --git a/package.json b/package.json index ee17bf6..05e154e 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,13 @@ "description": "Yearn Finance tokenlist with schema validation", "license": "Apache-2.0", "main": "index.mjs", - "dependencies": {}, "devDependencies": { - "@uniswap/token-lists": "1.0.0-beta.19", - "ajv": "6.12.6", - "semantic-release": "17.4.1" + "@ethersproject/address": "^5.0.11", + "@uniswap/token-lists": "^1.0.0-beta.16", + "ajv": "^6.12.4", + "chai": "^4.3.4", + "mocha": "^8.3.2", + "semantic-release": "^17.3.1" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", diff --git a/src/schema.json b/src/schema.json new file mode 100644 index 0000000..e655d1a --- /dev/null +++ b/src/schema.json @@ -0,0 +1,89 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "info": { + "type": "object", + "properties": { + "currency": { + "type": "string" + } + }, + "required": [ + "currency" + ] + }, + "tokens": { + "type": "array", + "items": [ + { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "buyable": { + "type": "boolean" + }, + "symbol": { + "type": "string" + }, + "decimals": { + "type": "integer" + }, + "sendable": { + "type": "boolean" + }, + "dailyLimit": { + "type": "boolean" + }, + "category": { + "type": "string" + }, + "refundable": { + "type": "boolean" + }, + "spotPrice": { + "type": "object", + "properties": { + "date": { + "type": "integer" + } + }, + "required": [ + "date" + ] + }, + "tokenlist": { + "type": "boolean" + } + }, + "required": [ + "id", + "address", + "name", + "buyable", + "symbol", + "decimals", + "sendable", + "dailyLimit", + "category", + "refundable", + "spotPrice", + "tokenlist" + ] + } + ] + } + }, + "required": [ + "info", + "tokens" + ] +} \ No newline at end of file diff --git a/src/yearn.ecosystem.json b/src/yearn.ecosystem.json new file mode 100644 index 0000000..dc480bb --- /dev/null +++ b/src/yearn.ecosystem.json @@ -0,0 +1,56730 @@ +{ + "info": { + "currency": "USD" + }, + "tokens": [{ + "id": 1740, + "address": "0x8b59be2fc6fccc2256cc4841843a13ce29da16bd", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2974, + "address": "0x7ca4408137eb639570f8e647d9bd7b7e8717514a", + "name": "AlpaToken", + "buyable": false, + "symbol": "ALPA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004582, + "ccyValue": 0.06091, + "ethDayChange": -0.145308711061369148, + "ccyDayChange": -0.116158 + }, + "tokenlist": false + }, { + "id": 2265, + "address": "0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5", + "name": "Aave Interest bearing Aave Token", + "buyable": false, + "symbol": "aAAVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.2204, + "ccyValue": 293.74, + "ethDayChange": -0.034180543382997371, + "ccyDayChange": 0.001056 + }, + "tokenlist": false + }, { + "id": 401, + "address": "0x85b058b2608c5460e291c88a384c0d4be3377250", + "name": "The longest /*--.? ever is thi!s", + "buyable": false, + "symbol": "NTFY", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1760, + "address": "0xd905e2eaebe188fc92179b6350807d8bd91db0d8", + "name": "Curve.fi DAI/USDC/USDT/PAX", + "buyable": false, + "symbol": "ypaxCrv", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00076847, + "ccyValue": 1.03, + "ethDayChange": -0.040408076620506225, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 849, + "address": "0xdbf5c7d8ac5007667617a15db2c1b1d616c9d302", + "name": "FlexETH/BTC Set", + "buyable": false, + "symbol": "FLEXETHBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-39", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.519514248, + "ccyValue": 692.730961, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 693, + "address": "0x8542325b72c6d9fc0ad2ca965a78435413a915a0", + "name": "Oyster Shell", + "buyable": false, + "symbol": "SHL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000235, + "ccyValue": 0.000344, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2554, + "address": "0xb46ab66c039ca553bc25ea74b92dfea91a080f07", + "name": "Adept Coin Governance", + "buyable": false, + "symbol": "AC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3160, + "address": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "name": "Frax Share", + "buyable": false, + "symbol": "FXS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.003425734469158485, + "ccyValue": 4.565818, + "ethDayChange": 0.382976203652952662, + "ccyDayChange": 0.437405 + }, + "tokenlist": false + }, { + "id": 3137, + "address": "0xa68b7779504b0ae372ddcc109f8786db9b91e93e", + "name": "RealToken S 4338-4340 East 71 Cleveland OH", + "buyable": false, + "symbol": "4338-40 East", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2247, + "address": "0x2a9bdcff37ab68b95a53435adfd8892e86084f93", + "name": "Alpha Quark Token", + "buyable": false, + "symbol": "AQT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001379654240454827, + "ccyValue": 1.838803, + "ethDayChange": -0.014150866055400571, + "ccyDayChange": 0.024648 + }, + "tokenlist": false + }, { + "id": 1305, + "address": "0x3c6ff50c9ec362efa359317009428d52115fe643", + "name": "PeerEx Network", + "buyable": false, + "symbol": "PERX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000146, + "ccyValue": 0.001854, + "ethDayChange": 0.040125153764246047, + "ccyDayChange": 0.030573 + }, + "tokenlist": false + }, { + "id": 557, + "address": "0x89c0b027bd7cc2d17854b06f8322e29451192ce3", + "name": "Intelligent ETH Set", + "buyable": false, + "symbol": "INTETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-30", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.118774712390939108, + "ccyValue": 158.304559, + "ethDayChange": -0.045009667094197749, + "ccyDayChange": -0.003384 + }, + "tokenlist": false + }, { + "id": 882, + "address": "0x340ef83ec8560892168d4062720f030460468656", + "name": "Ethereum Meta", + "buyable": false, + "symbol": "ETHM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 2.0004319571E-8, + "ccyValue": 0.000027, + "ethDayChange": 1.000431956699913609, + "ccyDayChange": 1.076923 + }, + "tokenlist": false + }, { + "id": 3193, + "address": "0x892a6f9df0147e5f079b0993f486f9aca3c87881", + "name": "unification.com/xfund", + "buyable": false, + "symbol": "xFUND", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.717552858077754187, + "ccyValue": 957.57744, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2631, + "address": "0x0e3c91ed7d966ff1f7b58ab739a55e3c4473cd27", + "name": "Piranhas", + "buyable": false, + "symbol": "$PIR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002099758702348993, + "ccyValue": 2.797954, + "ethDayChange": 0.680457060373985493, + "ccyDayChange": 0.746217 + }, + "tokenlist": false + }, { + "id": 2316, + "address": "0x7eb4db4dddb16a329c5ade17a8a0178331267e28", + "name": "Tsunami", + "buyable": false, + "symbol": "NAMI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.28790000000000004, + "ccyValue": 383.630194, + "ethDayChange": 3.82E-16, + "ccyDayChange": 0.039131 + }, + "tokenlist": false + }, { + "id": 3164, + "address": "0x27a94869341838d5783368a8503fda5fbcd7987c", + "name": "WePiggy ETH", + "buyable": false, + "symbol": "pETH", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 310, + "address": "0x370ca03717c72e5eee6f8be267995a91cf5c0904", + "name": "HODLcoin", + "buyable": false, + "symbol": "HODL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 734, + "address": "0xc50948bac01116f246259070ea6084c04649efdf", + "name": "Pindex", + "buyable": false, + "symbol": "PDI", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000024, + "ccyValue": 0.002988, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2680, + "address": "0x31be30217989766215672e88ed449913e05bf0f5", + "name": "Groovy.finance", + "buyable": false, + "symbol": "Gvy", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00184267, + "ccyValue": 2.47, + "ethDayChange": -0.01113543913878782, + "ccyDayChange": 0.055556 + }, + "tokenlist": false + }, { + "id": 1412, + "address": "0x19532d38e1608c22c1510522b1c835284ae04da5", + "name": "BULL RUN JESUS", + "buyable": false, + "symbol": "BRJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2277, + "address": "0x22abaf95ce900c3e93def4a154eaaa9cf62fd6da", + "name": "perp.fi", + "buyable": false, + "symbol": "PERP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 239, + "address": "0x515669d308f887fd83a471c7764f5d084886d34d", + "name": "MUXE Token", + "buyable": false, + "symbol": "MUXE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 3E-10, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1524, + "address": "0x1b7d2e0cd59205e24e275f905583762612aa0bfd", + "name": "The 888 Coin", + "buyable": false, + "symbol": "888", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2452, + "address": "0xf0358e8c3cd5fa238a29301d0bea3d63a17bedbe", + "name": "FARM_USDC", + "buyable": false, + "symbol": "fUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2901, + "address": "0x7d25d9f10cd224ecce0bc824a2ec800db81c01d7", + "name": "ethopt.io", + "buyable": false, + "symbol": "OPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001502, + "ccyValue": 0.019658, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3024, + "address": "0x3155ba85d5f96b2d030a4966af206230e46849cb", + "name": "THORChain ETH.RUNE", + "buyable": false, + "symbol": "RUNE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.002416048819137425, + "ccyValue": 3.224228, + "ethDayChange": 0.335131495342849628, + "ccyDayChange": 0.390377 + }, + "tokenlist": false + }, { + "id": 2905, + "address": "0x812b40c2ca7fabbac756475593fc8b1c313434fa", + "name": "1inch Liquidity Pool (ETH-1INCH)", + "buyable": false, + "symbol": "1LP-ETH-1INC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3201, + "address": "0x66666d237398f04554b7ea8192076c02a3a66666", + "name": "TW33T Token", + "buyable": false, + "symbol": "TW33T", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000584689850031014, + "ccyValue": 0.780271, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 795, + "address": "0x0b583d00b146be768a979efc633c3cefbf02d371", + "name": "DDOS", + "buyable": false, + "symbol": "DDOS", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2628, + "address": "0x9be89d2a4cd102d8fecc6bf9da793be995c22541", + "name": "Binance Wrapped BTC", + "buyable": false, + "symbol": "BBTC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 24.336945774686775002, + "ccyValue": 32477.761014, + "ethDayChange": -0.010785049295867436, + "ccyDayChange": 0.030147 + }, + "tokenlist": false + }, { + "id": 799, + "address": "0x9c4fe5ffd9a9fc5678cfbd93aa2d4fd684b67c4c", + "name": "PAXG-ETH Uniswap pool token", + "buyable": false, + "symbol": "PAXG-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 197, + "address": "0x87f56ee356b434187105b40f96b230f5283c0ab4", + "name": "Pitch", + "buyable": false, + "symbol": "PITCH", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pitch.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0000E7", + "description": "The PITCH token is used on Pitch Investors Live (like a web-based Shark Tank-type show) to purchase various services via the app. We are implementing a tipping system and simple atomic swaps on the app as well so that users of he app can support projects they see pitching live.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 5.816E-7, + "ccyValue": 0.000773, + "ethDayChange": -0.147713950762016413, + "ccyDayChange": -0.084123 + }, + "tokenlist": false + }, { + "id": 1445, + "address": "0x23bf1593f7a3ba13cb0be31556122fbec82e7dd2", + "name": "DxSale.Network", + "buyable": false, + "symbol": "SALE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1786, + "address": "0xe6410569602124506658ff992f258616ea2d4a3d", + "name": "KatanaToken", + "buyable": false, + "symbol": "KATANA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.367E-7, + "ccyValue": 0.000311, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1508, + "address": "0x6f022e991ea21d26f85f6716c088e2864101dfec", + "name": "Hands Of Steel", + "buyable": false, + "symbol": "STEEL", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000307, + "ccyValue": 0.002291, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 607, + "address": "0x23348160d7f5aca21195df2b70f28fce2b0be9fc", + "name": "Synth sFTSE", + "buyable": false, + "symbol": "sFTSE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1895, + "address": "0x23687d9d40f9ecc86e7666dddb820e700f954526", + "name": "ETH USD Yield Farm", + "buyable": false, + "symbol": "USDAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2280, + "address": "0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835", + "name": "COR Token", + "buyable": false, + "symbol": "COR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 6.519E-7, + "ccyValue": 0.000871, + "ethDayChange": 0.002460402890973397, + "ccyDayChange": 0.046875 + }, + "tokenlist": false + }, { + "id": 2972, + "address": "0xd662908ada2ea1916b3318327a97eb18ad588b5d", + "name": "Curve.fi a3CRV Gauge Deposit", + "buyable": false, + "symbol": "a3CRV-gauge", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1592, + "address": "0x19810559df63f19cfe88923313250550edadb743", + "name": "Toast.finance", + "buyable": false, + "symbol": "HOUSE", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001393884898588783, + "ccyValue": 1.857769, + "ethDayChange": 0.4789229693249687, + "ccyDayChange": 0.396819 + }, + "tokenlist": false + }, { + "id": 856, + "address": "0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f", + "name": "Bitpanda Ecosystem Token", + "buyable": false, + "symbol": "BEST", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000291064926036706, + "ccyValue": 0.387931, + "ethDayChange": -0.090432222536537349, + "ccyDayChange": -0.054636 + }, + "tokenlist": false + }, { + "id": 202, + "address": "0x4575f41308ec1483f3d399aa9a2826d74da13deb", + "name": "Orchid", + "buyable": false, + "symbol": "OXT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/oxt.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#5F45BA", + "description": "The Crypto Powered VPN", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00021274863889093, + "ccyValue": 0.283551, + "ethDayChange": -0.003742305512255336, + "ccyDayChange": 0.033481 + }, + "tokenlist": false + }, { + "id": 1882, + "address": "0xe40aa27e7212319e7b14327c14b739fa658b91ba", + "name": "YF Beam", + "buyable": false, + "symbol": "YFBM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.001708961569263219, + "ccyValue": 2.280617, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2946, + "address": "0x87de305311d5788e8da38d19bb427645b09cb4e5", + "name": "Verox", + "buyable": false, + "symbol": "VRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.07723805983992741, + "ccyValue": 103.07453, + "ethDayChange": 0.057972776604114277, + "ccyDayChange": 0.101338 + }, + "tokenlist": false + }, { + "id": 1475, + "address": "0x81fbef4704776cc5bba0a5df3a90056d2c6900b3", + "name": "ETH-renBTC Uniswap pool token", + "buyable": false, + "symbol": "ETH-renBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 222, + "address": "0x039b5649a59967e3e936d7471f9c3700100ee1ab", + "name": "Kucoin Shares", + "buyable": false, + "symbol": "KCS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0008798, + "ccyValue": 1.172, + "ethDayChange": -0.003529053515413081, + "ccyDayChange": 0.03516 + }, + "tokenlist": false + }, { + "id": 2526, + "address": "0x08e411220e47e3fc43bfb832186aba95108f2861", + "name": "Eclipseum", + "buyable": false, + "symbol": "ECL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001429, + "ccyValue": 0.019126, + "ethDayChange": -0.002094972067039106, + "ccyDayChange": 0.080138 + }, + "tokenlist": false + }, { + "id": 3172, + "address": "0x5a007da6f25b6991f15ac0372821ae3521133943", + "name": "Ethereum Bull", + "buyable": false, + "symbol": "EBULL", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 847, + "address": "0x67f2014293d641468161bbb0e6bd088fc0b8c381", + "name": "OLD RealToken 15048 Freeland Street Detroit MI", + "buyable": false, + "symbol": "15048 Freela", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1366, + "address": "0x2c7a51a357d5739c5c74bf3c96816849d2c9f726", + "name": "YAM-yDAI+yUSDC+yUSDT+yTUSD Uniswap pool token", + "buyable": false, + "symbol": "YAM-yDAI etc", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1455, + "address": "0x273a160eb5df613c8c99869f5ae4941f65bf94cb", + "name": "OLD RealToken S 9169 Boleyn Street Detroit MI", + "buyable": false, + "symbol": "9169 Boleyn", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 800, + "address": "0xc5807256e2e2fe85ca94c3617c4bc5ff2bd9cfb6", + "name": "DragonSeriesToken", + "buyable": false, + "symbol": "DST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2973, + "address": "0x718141de19e51ca6e704c4b9346608236c00b781", + "name": "Sushiforth", + "buyable": false, + "symbol": "SUSF", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000037706425640997, + "ccyValue": 0.050319, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3175, + "address": "0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9", + "name": "Wrapped LUNA Token", + "buyable": false, + "symbol": "LUNA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.001136118377070967, + "ccyValue": 1.516155, + "ethDayChange": 0.253573467432245812, + "ccyDayChange": 0.305443 + }, + "tokenlist": false + }, { + "id": 790, + "address": "0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487", + "name": "SPRING Token", + "buyable": false, + "symbol": "SPRING", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 5E-10, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 688, + "address": "0xc6f348dd3b91a56d117ec0071c1e9b83c0996de4", + "name": "ETH-ZRX Uniswap pool token", + "buyable": false, + "symbol": "ETH-ZRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1647, + "address": "0x90d702f071d2af33032943137ad0ab4280705817", + "name": "yffs.finance", + "buyable": false, + "symbol": "YFFS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001290070802442341, + "ccyValue": 1.719035, + "ethDayChange": 0.046854984007807162, + "ccyDayChange": 0.094927 + }, + "tokenlist": false + }, { + "id": 639, + "address": "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8", + "name": "Aave Interest bearing Binance USD V1", + "buyable": false, + "symbol": "aBUSD V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/abusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-7", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00074876, + "ccyValue": 0.99532, + "ethDayChange": -0.037785580967115521, + "ccyDayChange": -0.004438 + }, + "tokenlist": false + }, { + "id": 2810, + "address": "0x827f6010e5511723d168c93cd4db9f2e3bf540a9", + "name": "DIFFRACT.Finance", + "buyable": false, + "symbol": "DFR", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 174, + "address": "0xbc46d9961a3932f7d6b64abfdec80c1816c4b835", + "name": "LiteXToken", + "buyable": false, + "symbol": "LXT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 8.63798019556E-7, + "ccyValue": 0.001151, + "ethDayChange": -0.025498624147111913, + "ccyDayChange": 0.010536 + }, + "tokenlist": false + }, { + "id": 1521, + "address": "0xd379700999f4805ce80aa32db46a94df64561108", + "name": "Dextrust", + "buyable": false, + "symbol": "DETS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000027037847845615, + "ccyValue": 0.036036, + "ethDayChange": -0.002412222660863797, + "ccyDayChange": 0.036858 + }, + "tokenlist": false + }, { + "id": 12, + "address": "0x22b3faaa8df978f6bafe18aade18dc2e3dfa0e0c", + "name": "Bamboo", + "buyable": false, + "symbol": "BAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2543, + "address": "0xe61fdaf474fac07063f2234fb9e60c1163cfa850", + "name": "Coin Utility Token", + "buyable": false, + "symbol": "COIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000215704821570077, + "ccyValue": 0.287429, + "ethDayChange": 0.018471538002466603, + "ccyDayChange": 0.058323 + }, + "tokenlist": false + }, { + "id": 993, + "address": "0x48f4a6c65abb4b209823771b0d2c0f156ee6268b", + "name": "CAMO-ETH Uniswap pool token", + "buyable": false, + "symbol": "CAMO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1275, + "address": "0x348f9b40df1d4ec2082371bacb136fc727ccdd8c", + "name": "asuka.finance", + "buyable": false, + "symbol": "ASUKA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3074, + "address": "0x64cac8fa24f437ceca90e20a7a24a609f162b0d1", + "name": "PRQ-ETH Uniswap pool token", + "buyable": false, + "symbol": "PRQ-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1315, + "address": "0xf5ef67632cd2256d939702a126fe2c047d0a07bf", + "name": "HOT-ETH Uniswap pool token", + "buyable": false, + "symbol": "HOT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1488, + "address": "0x1c09ef4493465569f6d704a5cc4f9864bcd2e56a", + "name": "ORIGINATE Coin", + "buyable": false, + "symbol": "ORC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.50093923958E-7, + "ccyValue": 0.0002, + "ethDayChange": 0.001982067042951688, + "ccyDayChange": 0.041667 + }, + "tokenlist": false + }, { + "id": 3009, + "address": "0x4dab1ba9609c1546a0a69a76f00ed935b0b9c45e", + "name": "Farming: 1inch Liquidity Pool (ETH-DAI)", + "buyable": false, + "symbol": "farm-1LP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1802, + "address": "0xfef3bef71a5eb97e097039038776fd967ae5b106", + "name": "YFMoonshot", + "buyable": false, + "symbol": "YFMS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0042403, + "ccyValue": 5.99, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2160, + "address": "0xbaa70614c7aafb568a93e62a98d55696bcc85dfe", + "name": "UniCap.finance", + "buyable": false, + "symbol": "UCAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000925730605038399, + "ccyValue": 1.233814, + "ethDayChange": -0.040375456069993158, + "ccyDayChange": 0.003101 + }, + "tokenlist": false + }, { + "id": 1167, + "address": "0x23e534dc64664b236b5ef6ed909b44dbf9e1ee16", + "name": "Jordis token", + "buyable": false, + "symbol": "JORDITK", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1169, + "address": "0x5e64cd6f84d0ee2ad2a84cadc464184e36274e0c", + "name": "ETH-UNC Uniswap pool token", + "buyable": false, + "symbol": "ETH-UNC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 716, + "address": "0x22cabb38295eaeccfede4e99af508052e3b74ca0", + "name": "OLD RealToken 18900 Mansfield Street Detroit MI", + "buyable": false, + "symbol": "18900 Mansfi", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 933, + "address": "0x59a19d8c652fa0284f44113d0ff9aba70bd46fb4", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-1", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.486112421342995939, + "ccyValue": 647.607255, + "ethDayChange": 0.087437771348105457, + "ccyDayChange": 0.129263 + }, + "tokenlist": false + }, { + "id": 1824, + "address": "0x7ec400acb0565600915d34d50449ec6f2b592a5a", + "name": "Universe Finance", + "buyable": false, + "symbol": "UNFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2735, + "address": "0xe0c6a2cd058ef091c7a5ef5e29a74ffdd9bd566c", + "name": "RFIDMT", + "buyable": false, + "symbol": "RFIDMT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1918, + "address": "0x2306934ca884caa042dc595371003093092b2bbf", + "name": "tomatos.finance", + "buyable": false, + "symbol": "TOMATOS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00019165762055202, + "ccyValue": 0.255386, + "ethDayChange": -0.037657849761651351, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1203, + "address": "0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85", + "name": "DMScript", + "buyable": false, + "symbol": "DMST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00002435020093932, + "ccyValue": 0.032454, + "ethDayChange": 0.031590171009676488, + "ccyDayChange": 0.072186 + }, + "tokenlist": false + }, { + "id": 2345, + "address": "0x5197fbe1a86679ff1360e27862bf88b0c5119bd8", + "name": "BITPIF", + "buyable": false, + "symbol": "BPF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 844, + "address": "0x18a4979bbb4c88275d4575d66b9c9cd6bea0cd5e", + "name": "IdexTools", + "buyable": false, + "symbol": "IDXT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2542, + "address": "0xce947a309764d2e3fe93d79a0e8e6b2cf3994a2e", + "name": "GAMEX", + "buyable": false, + "symbol": "GMX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2854, + "address": "0x87b46664fec8d72bd651468b96f72c51405eceb7", + "name": "Smarts Finance", + "buyable": false, + "symbol": "SMAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2482, + "address": "0x3dd49f67e9d5bc4c5e6634b3f70bfd9dc1b6bd74", + "name": "SAND-ETH Uniswap pool token", + "buyable": false, + "symbol": "SAND-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 504, + "address": "0x4a16baf414b8e637ed12019fad5dd705735db2e0", + "name": "QCAD", + "buyable": false, + "symbol": "QCAD", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/qcad.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#191919", + "description": "QCAD is the first Canadian dollar stablecoin designed for the mass market. It is built on the Ethereum blockchain by utilizing the ERC-20 standard and enjoys the full benefits of enabling seamless settlement and full traceability. QCAD launched in February 2020 with the supported of 10 major ecosystem partners, including exchanges, custodians, OTC desks and payment processors.", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00058457, + "ccyValue": 0.77834, + "ethDayChange": -0.040335555044817283, + "ccyDayChange": 0.000234 + }, + "tokenlist": false + }, { + "id": 1845, + "address": "0x3b78dc5736a49bd297dd2e4d62daa83d35a22749", + "name": "Finswap", + "buyable": false, + "symbol": "FNSP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000035218333348025, + "ccyValue": 0.046929, + "ethDayChange": 0.069166161142228294, + "ccyDayChange": 0.115684 + }, + "tokenlist": false + }, { + "id": 1733, + "address": "0x9ef7e917fb41cc02f78a5c99b42f497ed8979350", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2135, + "address": "0xfb83d5faa4031dc52df88b2ba47cfbcffcc6be4d", + "name": "Yield Farming Fund", + "buyable": false, + "symbol": "YFF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1132, + "address": "0xd90a1ba0cbaaaabfdc6c814cdf1611306a26e1f8", + "name": "ETH-SWAP Uniswap pool token", + "buyable": false, + "symbol": "ETH-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-23", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.058891387003687503, + "ccyValue": 78.50854, + "ethDayChange": 0.01047453145003078, + "ccyDayChange": 0.051417 + }, + "tokenlist": false + }, { + "id": 1216, + "address": "0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb", + "name": "Trendering", + "buyable": false, + "symbol": "TRND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.003567413210163525, + "ccyValue": 4.754647, + "ethDayChange": 0.132099092069213988, + "ccyDayChange": 0.176654 + }, + "tokenlist": false + }, { + "id": 2927, + "address": "0x6def55d2e18486b9ddfaa075bc4e4ee0b28c1545", + "name": "Badger Sett Curve.fi renBTC/wBTC", + "buyable": false, + "symbol": "bcrvRenWBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2068, + "address": "0x6b87e032fb6de10ccdeb2dd4479d96653e2d1a14", + "name": "SakeSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 241, + "address": "0xadebeafcdcf5de0a5a7f7dfdd467b0e9fb205be9", + "name": "OCP", + "buyable": false, + "symbol": "OCP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 269, + "address": "0x1f69824fe3723aae8d4d03f4ff4081187b58bf90", + "name": "Cremanon", + "buyable": false, + "symbol": "CRC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1009, + "address": "0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13", + "name": "Eristica TOKEN", + "buyable": false, + "symbol": "ERT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001030114214556, + "ccyValue": 0.001373, + "ethDayChange": 2.784401963835415136, + "ccyDayChange": 3.06213 + }, + "tokenlist": false + }, { + "id": 206, + "address": "0x8d75959f1e61ec2571aa72798237101f084de63a", + "name": "Substratum", + "buyable": false, + "symbol": "SUB", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sub.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00000116161288467, + "ccyValue": 0.001548, + "ethDayChange": -0.022569633861311308, + "ccyDayChange": 0.015748 + }, + "tokenlist": false + }, { + "id": 1440, + "address": "0xcf1b218e01e0b14659a93adfb344a3e32d8de489", + "name": "Macro", + "buyable": false, + "symbol": "DCM1", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-56", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.074910017142442488, + "ccyValue": 99.947325, + "ethDayChange": -0.038953740003691652, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 1052, + "address": "0x73f8406eaace2ce69ba49a67551464fda1d11f14", + "name": "MoonCoin", + "buyable": false, + "symbol": "MOON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1419, + "address": "0xce4f282bcda329fd8fc55b5b44f10c3b7304bd59", + "name": "DeFi Of Thrones", + "buyable": false, + "symbol": "DOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2144, + "address": "0x0a51ecf7362ce03f75a20cad7671741953d2d7c8", + "name": "Phoenix Fund", + "buyable": false, + "symbol": "PHX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 971, + "address": "0xed3d99d838ab16e8a0543bb91f254139a0fcb8dd", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2382, + "address": "0x837010619aeb2ae24141605afc8f66577f6fb2e7", + "name": "zHEGIC", + "buyable": false, + "symbol": "zHEGIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00026553, + "ccyValue": 0.352941, + "ethDayChange": 0.09274641496625741, + "ccyDayChange": 0.133434 + }, + "tokenlist": false + }, { + "id": 2078, + "address": "0x4fd2ec9bdd398f8e522d76ea3704f8dbdc1f23f4", + "name": "Wojak.farm", + "buyable": false, + "symbol": "WOJAK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 416, + "address": "0x9669890e48f330acd88b78d63e1a6b3482652cd9", + "name": "Bincentive Token", + "buyable": false, + "symbol": "BCNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000006035633887099, + "ccyValue": 0.008044, + "ethDayChange": -0.038911801417356688, + "ccyDayChange": 0.001369 + }, + "tokenlist": false + }, { + "id": 1667, + "address": "0x33ea42ecab4681b4a983b9d39c4a7e16dc107df8", + "name": "AXIA TOKEN (axiaprotocol.io)", + "buyable": false, + "symbol": "AXIA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1027, + "address": "0x940f20d20ddff42d59a75cb29c446ada7c3c3b79", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2351, + "address": "0x81a38936125f60ece0b6178583caf103ebf60d80", + "name": "MelonBit Market Index Erc223Token", + "buyable": false, + "symbol": "MMX", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3150, + "address": "0x755be920943ea95e39ee2dc437b268917b580d6e", + "name": "VersoView", + "buyable": false, + "symbol": "VVT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002611, + "ccyValue": 0.035008, + "ethDayChange": -0.184826724945363722, + "ccyDayChange": -0.152472 + }, + "tokenlist": false + }, { + "id": 1924, + "address": "0xc0a6bb3d31bb63033176edba7c48542d6b4e406d", + "name": "Uniswap V2 RNDR-ETH", + "buyable": false, + "symbol": "RNDR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2563, + "address": "0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6", + "name": "UnFederalReserveToken", + "buyable": false, + "symbol": "eRSDL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001023, + "ccyValue": 0.013625, + "ethDayChange": -0.14515520951679212, + "ccyDayChange": -0.111857 + }, + "tokenlist": false + }, { + "id": 755, + "address": "0x467bccd9d29f223bce8043b84e8c8b282827790f", + "name": "Telcoin", + "buyable": false, + "symbol": "TEL", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.556E-7, + "ccyValue": 0.00074, + "ethDayChange": -0.003944065973467193, + "ccyDayChange": 0.037868 + }, + "tokenlist": false + }, { + "id": 1787, + "address": "0xa101e27f06a97985b925e244111b61560ecd97db", + "name": "BITTO", + "buyable": false, + "symbol": "BITTO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00018796, + "ccyValue": 0.25037, + "ethDayChange": 0.005940594059405941, + "ccyDayChange": 0.049387 + }, + "tokenlist": false + }, { + "id": 2620, + "address": "0x5165d24277cd063f5ac44efd447b27025e888f37", + "name": "Aave interest bearing YFI", + "buyable": false, + "symbol": "aYFI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/ayfi.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-4", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 22.61253633641482, + "ccyValue": 30137.98293, + "ethDayChange": 0.017851592652049751, + "ccyDayChange": 0.05791 + }, + "tokenlist": false + }, { + "id": 2118, + "address": "0x9c3b84da48bb7c6b6299e2f2342c4f7eea880d75", + "name": "LUX", + "buyable": false, + "symbol": "ALUX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 840, + "address": "0xf61718057901f84c4eec4339ef8f0d86d2b45600", + "name": "Yearn SUSD v2", + "buyable": false, + "symbol": "ySUSD v2", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/ysusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2053, + "address": "0x38acefad338b870373fb8c810fe705569e1c7225", + "name": "yearn4.finance", + "buyable": false, + "symbol": "YF4", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001626823073992991, + "ccyValue": 2.168229, + "ethDayChange": -0.015865779018788905, + "ccyDayChange": 0.008479 + }, + "tokenlist": false + }, { + "id": 2147, + "address": "0x9fd6a23193d3a8f04e72558b3c28dea63671eb95", + "name": "BONUS", + "buyable": false, + "symbol": "BONUS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 981, + "address": "0x9903a4cd589da8e434f264deafc406836418578e", + "name": "Harrison First", + "buyable": false, + "symbol": "FIRST", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002475, + "ccyValue": 0.031409, + "ethDayChange": -0.002016129032258065, + "ccyDayChange": -0.010709 + }, + "tokenlist": false + }, { + "id": 756, + "address": "0xda6cb58a0d0c01610a29c5a65c303e13e885887c", + "name": "cVToken", + "buyable": false, + "symbol": "cV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.719E-7, + "ccyValue": 0.000494, + "ethDayChange": -0.017575536904896614, + "ccyDayChange": 0.018557 + }, + "tokenlist": false + }, { + "id": 659, + "address": "0x999aa6488f076e6765448f090aba83fbb470fc99", + "name": "Egg Token", + "buyable": false, + "symbol": "EGG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/egg.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#5A68FF", + "description": "The EGG Token gives its owners unique inventives within the Cocoricos platform (and on official external platforms accepting the EGG).", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2389, + "address": "0xec069eaa5c83763f288106506fecbd5dbe74d047", + "name": "OLD RealToken S 9133 Devonshire st Detroit MI", + "buyable": false, + "symbol": "9133 Devonsh", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1416, + "address": "0x3936ad01cf109a36489d93cabda11cf062fd3d48", + "name": "Coil", + "buyable": false, + "symbol": "COIL", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00050512, + "ccyValue": 0.675402, + "ethDayChange": -0.06680526121322019, + "ccyDayChange": -0.02694 + }, + "tokenlist": false + }, { + "id": 1935, + "address": "0xf95b6d2fb99f742e4bf0ec2cfe8f20c18cdd7c28", + "name": "Mooniswap V1 (ETH-SNX)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1317, + "address": "0x08aa0ed0040736dd28d4c8b16ab453b368248d19", + "name": "Cryptobuyer Token", + "buyable": false, + "symbol": "XPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00001031773598061, + "ccyValue": 0.013749, + "ethDayChange": 0.139505418247521224, + "ccyDayChange": 0.184136 + }, + "tokenlist": false + }, { + "id": 205, + "address": "0x6558ebe73d92c4bf58195055a5ecca7ab7aa4dc9", + "name": "Terracoin", + "buyable": false, + "symbol": "TCC", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2333, + "address": "0xe5b0792400a47af372486704eda0f1799ee83f54", + "name": "DotBased", + "buyable": false, + "symbol": "xDOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.005468991568681416, + "ccyValue": 7.287497, + "ethDayChange": -0.003117229104683791, + "ccyDayChange": 0.035892 + }, + "tokenlist": false + }, { + "id": 2544, + "address": "0x058349297672b6cc7ccb6e59a679c5add74a6898", + "name": "Ethereum Vault", + "buyable": false, + "symbol": "ETHV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002001, + "ccyValue": 0.026971, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1351, + "address": "0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3", + "name": "Cat Token", + "buyable": false, + "symbol": "CAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000481, + "ccyValue": 0.006413, + "ethDayChange": -0.60766721044045677, + "ccyDayChange": -0.599112 + }, + "tokenlist": false + }, { + "id": 1143, + "address": "0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c", + "name": "Aave Interest bearing REN", + "buyable": false, + "symbol": "aREN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-aave-19", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004324, + "ccyValue": 0.576, + "ethDayChange": 0.029497581847319604, + "ccyDayChange": 0.067404 + }, + "tokenlist": false + }, { + "id": 1262, + "address": "0x7461c43bb1e96863233d72a09191008ee9217ee8", + "name": "Degen Platform", + "buyable": false, + "symbol": "DGN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.694E-7, + "ccyValue": 0.001037, + "ethDayChange": -0.205165289256198347, + "ccyDayChange": -0.133668 + }, + "tokenlist": false + }, { + "id": 383, + "address": "0xb52bbd3d5bfa3836bf2b55fe3b7467219280bc2e", + "name": "StiB", + "buyable": false, + "symbol": "sti", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.569E-7, + "ccyValue": 0.00022, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 957, + "address": "0xc409d34accb279620b1acdc05e408e287d543d17", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2199, + "address": "0xf7f35fe2ede3addee7cf176f4ef20d9436e498dc", + "name": "BiffysLove", + "buyable": false, + "symbol": "LOVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 212, + "address": "0xb3bd49e28f8f832b8d1e246106991e546c323502", + "name": "Global Messaging Token", + "buyable": false, + "symbol": "GMT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.000014, + "ccyValue": 0.01866, + "ethDayChange": 3.844290657439446367, + "ccyDayChange": 10.087344 + }, + "tokenlist": false + }, { + "id": 2983, + "address": "0x3f5be50e4651ee184109a0b1b71d344d12e8b603", + "name": "RFYIELD.FINANCE", + "buyable": false, + "symbol": "RFY", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00000999, + "ccyValue": 0.0122, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 194, + "address": "0x0d1ed1db16424792007f6defc8d7128900da7c5d", + "name": "HRKnnnVoucher", + "buyable": false, + "symbol": "HRKV", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2310, + "address": "0x892f5a0b08bb7b1eecccc63ef3916ff201c93664", + "name": "BloodyToken", + "buyable": false, + "symbol": "BLOODY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 8.76757541883E-7, + "ccyValue": 0.001168, + "ethDayChange": 1.364502540137540453, + "ccyDayChange": 1.350101 + }, + "tokenlist": false + }, { + "id": 3109, + "address": "0xce111a198eb04f388aceb78c40ced6daf1b0514a", + "name": "RealToken S 272 N.E. 42nd Court Deerfield Beach FL", + "buyable": false, + "symbol": "272 NE 42nd", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 605, + "address": "0x3b3ac5386837dc563660fb6a0937dfaa5924333b", + "name": "Curve.fi yDAI/yUSDC/yUSDT/yBUSD", + "buyable": false, + "symbol": "yDAI+yUSDC+y", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000808872093512808, + "ccyValue": 1.078228, + "ethDayChange": -0.038014342592472948, + "ccyDayChange": -0.001437 + }, + "tokenlist": false + }, { + "id": 913, + "address": "0xa95592dcffa3c080b4b40e459c5f5692f67db7f8", + "name": "Elycoin", + "buyable": false, + "symbol": "ELY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000104, + "ccyValue": 0.001386, + "ethDayChange": 0.820728291316526611, + "ccyDayChange": 0.896033 + }, + "tokenlist": false + }, { + "id": 2192, + "address": "0x691ace5e56507c008d836c8c58ed93546bdc81ff", + "name": "rcore.finance", + "buyable": false, + "symbol": "RCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.057151150263118737, + "ccyValue": 76.268461, + "ethDayChange": 0.178993388969876423, + "ccyDayChange": 0.22732 + }, + "tokenlist": false + }, { + "id": 2597, + "address": "0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000", + "name": "SERGS", + "buyable": false, + "symbol": "SERGS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008843, + "ccyValue": 0.117563, + "ethDayChange": 0.011900675134454743, + "ccyDayChange": 0.031897 + }, + "tokenlist": false + }, { + "id": 3031, + "address": "0x824df198321380071fb91a73ce89aeb73c208c30", + "name": "equilibrium.io", + "buyable": false, + "symbol": "EQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 50, + "address": "0x8ddc86dba7ad728012efc460b8a168aba60b403b", + "name": "ETH Range Bound High Volatility", + "buyable": false, + "symbol": "ETHHIVOL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ethhivol.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.39502714, + "ccyValue": 293.66, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2377, + "address": "0x72e9d9038ce484ee986fea183f8d8df93f9ada13", + "name": "SMARTCREDIT Token", + "buyable": false, + "symbol": "SMARTCREDIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002256407981995273, + "ccyValue": 3.006691, + "ethDayChange": 0.131525134205483676, + "ccyDayChange": 0.175804 + }, + "tokenlist": false + }, { + "id": 1246, + "address": "0x2471de1547296aadb02cc1af84afe369b6f67c87", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1399, + "address": "0x8cb77ea869def8f7fdeab9e4da6cf02897bbf076", + "name": "AKRO-ETH Uniswap pool token", + "buyable": false, + "symbol": "AKRO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1764, + "address": "0xff32d68d8a4608fba6b51f07d1f138a63a149211", + "name": "Sweetcoin", + "buyable": false, + "symbol": "SWC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 263, + "address": "0x3506424f91fd33084466f402d5d97f05f8e3b4af", + "name": "chiliZ", + "buyable": false, + "symbol": "CHZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.000015071, + "ccyValue": 0.020039, + "ethDayChange": -0.005314475293890605, + "ccyDayChange": 0.031396 + }, + "tokenlist": false + }, { + "id": 1368, + "address": "0x9330565157f9c68cf6f418538253fbb546e891a3", + "name": "curve.fi", + "buyable": false, + "symbol": "CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1564, + "address": "0x0128e4fccf5ef86b030b28f0a8a029a3c5397a94", + "name": "FlashSwap", + "buyable": false, + "symbol": "FSP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001129, + "ccyValue": 0.015778, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1737, + "address": "0x675e7d927af7e6d0082e0153dc3485b687a6f0ad", + "name": "CreedToken", + "buyable": false, + "symbol": "CREED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000075440662629852, + "ccyValue": 0.100547, + "ethDayChange": 322.779667939278969957, + "ccyDayChange": 333.043189 + }, + "tokenlist": false + }, { + "id": 2216, + "address": "0xecbf566944250dde88322581024e611419715f7a", + "name": "xBTC", + "buyable": false, + "symbol": "xBTC", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000487852368167582, + "ccyValue": 0.650069, + "ethDayChange": 0.030904500919415149, + "ccyDayChange": 0.071245 + }, + "tokenlist": false + }, { + "id": 1857, + "address": "0x749826f1041caf0ea856a4b3578ba327b18335f8", + "name": "Tigereum", + "buyable": false, + "symbol": "TIG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00000859, + "ccyValue": 0.010643, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2472, + "address": "0xe481f2311c774564d517d015e678c2736a25ddd3", + "name": "DefHold", + "buyable": false, + "symbol": "DEFO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.14076459109368952, + "ccyValue": 187.570502, + "ethDayChange": -0.001586645003396505, + "ccyDayChange": 0.037786 + }, + "tokenlist": false + }, { + "id": 1219, + "address": "0xe5ac9548275787cd86df2350248614afab0088ee", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1153, + "address": "0x48c1b2f3efa85fbafb2ab951bf4ba860a08cdbb7", + "name": "ShowHand", + "buyable": false, + "symbol": "HAND", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0.000001, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3072, + "address": "0xac298353ab790e668986ac9e2d3a9ddfc600ff78", + "name": "Uqinzen", + "buyable": false, + "symbol": "UQn", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 242, + "address": "0x2c9023bbc572ff8dc1228c7858a280046ea8c9e5", + "name": "VideoCoin", + "buyable": false, + "symbol": "VID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00003816, + "ccyValue": 0.05084, + "ethDayChange": -0.018815624095032521, + "ccyDayChange": 0.01941 + }, + "tokenlist": false + }, { + "id": 1106, + "address": "0x9366b7c00894c3555c7590b0384e5f6a9d55659f", + "name": "Rari Fund Token", + "buyable": false, + "symbol": "RFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2863, + "address": "0x8dc8c2113d771674f5b49600908706955e94a69a", + "name": "Fat Finance", + "buyable": false, + "symbol": "FAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1382, + "address": "0x6a7ef4998eb9d0f706238756949f311a59e05745", + "name": "Kenysians Network", + "buyable": false, + "symbol": "KEN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001395127358537731, + "ccyValue": 1.859024, + "ethDayChange": 0.199501634532706088, + "ccyDayChange": 0.24644 + }, + "tokenlist": false + }, { + "id": 1184, + "address": "0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947", + "name": "Insula", + "buyable": false, + "symbol": "ISLA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000143483063516315, + "ccyValue": 0.191193, + "ethDayChange": -0.228751539903703505, + "ccyDayChange": -0.183592 + }, + "tokenlist": false + }, { + "id": 382, + "address": "0xa0cca3cf5c64152883f4c947c404e46996593fa7", + "name": "BRAPPER", + "buyable": false, + "symbol": "BRAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3032, + "address": "0xf34960d9d60be18cc1d5afc1a6f012a723a28811", + "name": "KuCoin Token", + "buyable": false, + "symbol": "KCS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000880385067684674, + "ccyValue": 1.173124, + "ethDayChange": -0.002866399560531691, + "ccyDayChange": 0.036153 + }, + "tokenlist": false + }, { + "id": 341, + "address": "0x91f5f9c36b093907b0f99d1dbcf41aaf1db28916", + "name": "0xETH Diamond", + "buyable": false, + "symbol": "0xETD", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 1E-8, + "ccyValue": 0.000002, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 894, + "address": "0x5498b5b0a2b693bb69cc8941ee5f9028f429ff5b", + "name": "TOK3", + "buyable": false, + "symbol": "TOKKK", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1211, + "address": "0xeb4e33dd1d97407add2afcdcd5dd17851b1695d0", + "name": "Ruze Finance", + "buyable": false, + "symbol": "RUZE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 3.37438105215E-7, + "ccyValue": 0.00045, + "ethDayChange": -0.037865650014552918, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1807, + "address": "0x6491f4cf9c084ef8fc055eaaf735bdceccf69370", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 858, + "address": "0x905e337c6c8645263d3521205aa37bf4d034e745", + "name": "Medical Token Currency", + "buyable": false, + "symbol": "MTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000022, + "ccyValue": 0.002928, + "ethDayChange": 0.001395000775326415, + "ccyDayChange": 0.039404 + }, + "tokenlist": false + }, { + "id": 2715, + "address": "0xfe17c3c0b6f38cf3bd8ba872bee7a18ab16b43fb", + "name": "RealToken S 15777 Ardmore st Detroit MI", + "buyable": false, + "symbol": "15777 Ardmor", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 900, + "address": "0x0947b0e6d821378805c9598291385ce7c791a6b2", + "name": "Lendingblock", + "buyable": false, + "symbol": "LND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.616E-7, + "ccyValue": 0.000342, + "ethDayChange": -0.175023651844843898, + "ccyDayChange": -0.153465 + }, + "tokenlist": false + }, { + "id": 788, + "address": "0x4c327471c44b2dacd6e90525f9d629bd2e4f662c", + "name": "GHOST", + "buyable": false, + "symbol": "GHOST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000053512276240992, + "ccyValue": 0.071321, + "ethDayChange": 0.024725989488904558, + "ccyDayChange": 0.065049 + }, + "tokenlist": false + }, { + "id": 3084, + "address": "0x8642a849d0dcb7a15a974794668adcfbe4794b56", + "name": "Prosper", + "buyable": false, + "symbol": "PROS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.001492098990240432, + "ccyValue": 1.991213, + "ethDayChange": 0.121703574354952571, + "ccyDayChange": 0.167682 + }, + "tokenlist": false + }, { + "id": 601, + "address": "0xbe30f684d62c9f7883a75a29c162c332c0d98f23", + "name": "Global Human Trust", + "buyable": false, + "symbol": "GHT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.03287091, + "ccyValue": 43.79, + "ethDayChange": -0.043842407949472528, + "ccyDayChange": -0.002733 + }, + "tokenlist": false + }, { + "id": 220, + "address": "0x4d807509aece24c0fa5a102b6a3b059ec6e14392", + "name": "Menlo One", + "buyable": false, + "symbol": "ONE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001402259944998, + "ccyValue": 0.001869, + "ethDayChange": -0.037657849762046277, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2335, + "address": "0x06a01a4d579479dd5d884ebf61a31727a3d8d442", + "name": "SmartKey", + "buyable": false, + "symbol": "Skey", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00022803885372791, + "ccyValue": 0.30393, + "ethDayChange": -0.024849887843019029, + "ccyDayChange": 0.017843 + }, + "tokenlist": false + }, { + "id": 2448, + "address": "0x692eb773e0b5b7a79efac5a015c8b36a2577f65c", + "name": "Swiss Token", + "buyable": false, + "symbol": "SWISS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.12050473, + "ccyValue": 1.6E+2, + "ethDayChange": -0.029331049252095386, + "ccyDayChange": 0.005047 + }, + "tokenlist": false + }, { + "id": 2263, + "address": "0x2e3bb99210ebaa7fae82c32b244e872610107088", + "name": "ETH-aDAI Uniswap pool token", + "buyable": false, + "symbol": "ETH-aDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 114, + "address": "0x9389434852b94bbad4c8afed5b7bdbc5ff0c2275", + "name": "TTC Protocol", + "buyable": false, + "symbol": "TTC", + "decimals": 18, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0x9389434852b94bbad4c8afed5b7bdbc5ff0c2275.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000016275041082544, + "ccyValue": 0.021687, + "ethDayChange": -0.003229345219094897, + "ccyDayChange": 0.035772 + }, + "tokenlist": false + }, { + "id": 1446, + "address": "0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a", + "name": "YAM v2", + "buyable": false, + "symbol": "YAMv2", + "decimals": 24, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yam.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#EC0E5C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.0101180690299087, + "ccyValue": 13.482448, + "ethDayChange": 0.058929254830842491, + "ccyDayChange": 0.098814 + }, + "tokenlist": false + }, { + "id": 1570, + "address": "0xa5904961f61bae7c4dd8478077556c91bf291cfd", + "name": "YAMv2-ETH Uniswap pool token", + "buyable": false, + "symbol": "YAMv2-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 290, + "address": "0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533", + "name": "BNT Smart Token Relay", + "buyable": false, + "symbol": "ETHBNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00102268, + "ccyValue": 1.36, + "ethDayChange": 1.608677907303012525, + "ccyDayChange": 1.69852 + }, + "tokenlist": false + }, { + "id": 1881, + "address": "0xb96fd64298bb8a9a8aa0866f81093a8b7f68a79c", + "name": "The Hunger Game", + "buyable": false, + "symbol": "JAY", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 827, + "address": "0x07509c281b55a1675d3f71f1c4ab67829eb731d3", + "name": "100 Waves ETH/BTC Set", + "buyable": false, + "symbol": "100WRatio", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-36", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.415901274, + "ccyValue": 554.571295, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 3117, + "address": "0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e", + "name": "Unifty", + "buyable": false, + "symbol": "NIF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000605295565386492, + "ccyValue": 0.806738, + "ethDayChange": -0.038679321231649329, + "ccyDayChange": 0.00341 + }, + "tokenlist": false + }, { + "id": 962, + "address": "0xa0d06bdc3274564ddda65bfab6ae61e5f000e49b", + "name": "ETH-ACID Uniswap pool token", + "buyable": false, + "symbol": "ETH-ACID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 938, + "address": "0x58f612f53194ec091e87aab8a836b193e123119a", + "name": "ARTE-ETH Uniswap pool token", + "buyable": false, + "symbol": "ARTE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2088, + "address": "0x40b92fce37cefa03baf7603e7913c1d34dd1a4ec", + "name": "YeaFinance", + "buyable": false, + "symbol": "YEA", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00273013, + "ccyValue": 3.64, + "ethDayChange": -0.391130082699481904, + "ccyDayChange": -0.366944 + }, + "tokenlist": false + }, { + "id": 2441, + "address": "0x6929abd7931d0243777d3cd147fe863646a752ba", + "name": "BAT-DAI Uniswap pool token", + "buyable": false, + "symbol": "BAT-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1848, + "address": "0x8ae6ae8f172d7fc103ccfa5890883d6fe46038c9", + "name": "Eye of God", + "buyable": false, + "symbol": "EOG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2498, + "address": "0xd1afbccc9a2c2187ea544363b986ea0ab6ef08b5", + "name": "Ethereum Yield", + "buyable": false, + "symbol": "ETHY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00669771, + "ccyValue": 8.93, + "ethDayChange": -0.006293647155173565, + "ccyDayChange": 0.031178 + }, + "tokenlist": false + }, { + "id": 2253, + "address": "0xf9aba2e43fb19184408ea3b572a0fd672946f87b", + "name": "Opyn ETH Call $500 10/30/20", + "buyable": false, + "symbol": "oETH $500 Ca", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1074, + "address": "0x9f54a5ec929dec40e600f76252e68595fe91ed20", + "name": "Simplify", + "buyable": false, + "symbol": "SIMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1699, + "address": "0x42f55805c4d9e837539c510afcbb6965cc4bb8b8", + "name": "aRAT", + "buyable": false, + "symbol": "ARAT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1614, + "address": "0x5bdc00b6676579b301b276198db1ea9affb94329", + "name": "Eterbase Utility Token", + "buyable": false, + "symbol": "XBASE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1E-8, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1700, + "address": "0x4889f721f80c5e9fade6ea9b85835d405d79a4f4", + "name": "Mafia.Network", + "buyable": false, + "symbol": "MAFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000026, + "ccyValue": 0.003179, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1721, + "address": "0xa57f06c01a7a6b1b918b31c376b69264fd5fb84c", + "name": "yearnfvii", + "buyable": false, + "symbol": "YFVII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1001, + "address": "0xa740684c9022dc07540031b10dd57984640babef", + "name": "Decash", + "buyable": false, + "symbol": "DECH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2354, + "address": "0x90b426067be0b0ff5de257bc4dd6a4815ea03b5f", + "name": "Strain", + "buyable": false, + "symbol": "STRN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000628, + "ccyValue": 0.008641, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1796, + "address": "0x03542773ff03e6bfc17f70cb29c0b43115399a8b", + "name": "ERA Finance", + "buyable": false, + "symbol": "ERA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 791, + "address": "0x14c1179b52a41b85b738a9483b12060516efcda4", + "name": "ICONIC NIC", + "buyable": false, + "symbol": "NIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 276, + "address": "0x7d29a64504629172a429e64183d6673b9dacbfce", + "name": "VectorspaceAI", + "buyable": false, + "symbol": "VXV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0005838, + "ccyValue": 0.7787, + "ethDayChange": -0.132112421909016545, + "ccyDayChange": -0.097247 + }, + "tokenlist": false + }, { + "id": 2479, + "address": "0x9bde098be22658d057c3f1f185e3fd4653e2fbd1", + "name": "KP2R.Network", + "buyable": false, + "symbol": "KP2R", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000654744787734631, + "ccyValue": 0.872455, + "ethDayChange": -0.138881766387329923, + "ccyDayChange": -0.105185 + }, + "tokenlist": false + }, { + "id": 1560, + "address": "0x2bc2fc7285f777406b5a29d52d58796f39184493", + "name": "Mooniswap V1 (COMP-AMPL)", + "buyable": false, + "symbol": "MOON-V1-COMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 267, + "address": "0x7234c500895b825b40e46ca01824a18fa3662493", + "name": "Wealth Freedom", + "buyable": false, + "symbol": "ESE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2262, + "address": "0x40432844506f3a51c266ecabad2beb23cad27f66", + "name": "MYX Stable", + "buyable": false, + "symbol": "sMYX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1061, + "address": "0xed06666a6eaee7ab55d02b341b91d23a4d739d6f", + "name": "SNX Binary Option", + "buyable": false, + "symbol": "sOPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 179, + "address": "0xf173214c720f58e03e194085b1db28b50acdeead", + "name": "ETH-LINK v1 Uniswap pool token", + "buyable": false, + "symbol": "ETH-LINK V1", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2326, + "address": "0x96258bb42779bf300cf69c9b5bd2ba5245cb4bc4", + "name": "LuaSwap LP Token V1", + "buyable": false, + "symbol": "LUA-V1", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 935, + "address": "0x1122b6a0e00dce0563082b6e2953f3a943855c1f", + "name": "Centrality Token", + "buyable": false, + "symbol": "CENNZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000026584197879167, + "ccyValue": 0.035431, + "ethDayChange": -0.117709247373905568, + "ccyDayChange": -0.083001 + }, + "tokenlist": false + }, { + "id": 3010, + "address": "0xa83fcea9229c7f1e02acb46abe8d6889259339e8", + "name": "Farming: 1inch Liquidity Pool (ETH-USDT)", + "buyable": false, + "symbol": "farm-1LP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 898, + "address": "0x61fd1c62551850d0c04c76fce614cbced0094498", + "name": "IDKToken", + "buyable": false, + "symbol": "IDK", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/idk.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#EE2547", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005371, + "ccyValue": 0.071562, + "ethDayChange": -0.019629572538036794, + "ccyDayChange": 0.018633 + }, + "tokenlist": false + }, { + "id": 1941, + "address": "0x016fd003eef102d19ee92a00e93667cd9849b290", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1987, + "address": "0xbbc2a02fad323bbbcf83abb237fb615db2bb0a95", + "name": "SmartLibra", + "buyable": false, + "symbol": "LBR", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2653, + "address": "0xfebc25f4c5fc3e90a7efae0b4d436a77c9e131b3", + "name": "CEZO", + "buyable": false, + "symbol": "CEZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 6.648583372E-9, + "ccyValue": 0.000009, + "ethDayChange": 0.021012418402424087, + "ccyDayChange": 0.125 + }, + "tokenlist": false + }, { + "id": 1285, + "address": "0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7", + "name": "SUKU", + "buyable": false, + "symbol": "SUKU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00012178165024068, + "ccyValue": 0.162311, + "ethDayChange": -0.050521958147543591, + "ccyDayChange": -0.012497 + }, + "tokenlist": false + }, { + "id": 2641, + "address": "0xde37cd310c70e7fa9d7ed3261515b107d5fe1f2d", + "name": "Uniswap V2 YFI-USDC", + "buyable": false, + "symbol": "YFI-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1362, + "address": "0xc358001a71b3160b4b243d6e8c6f52579f82215e", + "name": "YAM-ETH Uniswap pool token", + "buyable": false, + "symbol": "YAM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2359, + "address": "0xaac41ec512808d64625576eddd580e7ea40ef8b2", + "name": "gameswap.org", + "buyable": false, + "symbol": "GSWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000296834784851549, + "ccyValue": 0.395536, + "ethDayChange": 0.115668589233815681, + "ccyDayChange": 0.162681 + }, + "tokenlist": false + }, { + "id": 2413, + "address": "0x738e0c78e759611956894edca8a41955f2701ac5", + "name": "XYfinance", + "buyable": false, + "symbol": "XYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2358, + "address": "0x773c75c2277ed3e402bdefd28ec3b51a3afbd8a4", + "name": "Wildcards Loyalty Token", + "buyable": false, + "symbol": "WLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1858, + "address": "0x9cd39da8f25ec50cf2ee260e464ac23ea23f6bb0", + "name": "TOSHIFY.FINANCE", + "buyable": false, + "symbol": "YFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00250556, + "ccyValue": 3.37, + "ethDayChange": -0.044529101981825323, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1147, + "address": "0x60626db611a9957c1ae4ac5b7ede69e24a3b76c5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2997, + "address": "0x0ef1b8a0e726fc3948e15b23993015eb1627f210", + "name": "1inch Liquidity Pool (ETH-1INCH)", + "buyable": false, + "symbol": "1LP-ETH-1INC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2340, + "address": "0xfaa965d80d956de59808974e33ada054f7696de5", + "name": "BTour Chain", + "buyable": false, + "symbol": "BTOUR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00016677, + "ccyValue": 0.222168, + "ethDayChange": -0.067125356603456956, + "ccyDayChange": -0.027158 + }, + "tokenlist": false + }, { + "id": 1259, + "address": "0x20b1a8a9ca1c7302b7f774266c491c7b11622779", + "name": "ARCS", + "buyable": false, + "symbol": "ARX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000193797750525508, + "ccyValue": 0.258294, + "ethDayChange": -0.062806604026550125, + "ccyDayChange": -0.02592 + }, + "tokenlist": false + }, { + "id": 2985, + "address": "0x06325440d014e39736583c165c2963ba99faf14e", + "name": "Curve.fi ETH/stETH", + "buyable": false, + "symbol": "steCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2012, + "address": "0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd", + "name": "DODO bird", + "buyable": false, + "symbol": "DODO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dodo.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#272727", + "description": "DODO is a next-generation on-chain liquidity provider, which leverages the Proactive Market Maker algorithm (PMM) to provide pure on-chain and contract-fillable liquidity for everyone.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000930786459287331, + "ccyValue": 1.242139, + "ethDayChange": 0.387023721627747359, + "ccyDayChange": 0.443455 + }, + "tokenlist": false + }, { + "id": 1400, + "address": "0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53", + "name": "YUGE", + "buyable": false, + "symbol": "TRUMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000085886854402905, + "ccyValue": 0.11447, + "ethDayChange": 34.935922344311715481, + "ccyDayChange": 37.633142 + }, + "tokenlist": false + }, { + "id": 2520, + "address": "0xbc338ca728a5d60df7bc5e3af5b6df9db697d942", + "name": "Cream Pool Token", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1120, + "address": "0x9f881fe137a8f2dfb41df496afbb61a05f450b89", + "name": "Marshmallow", + "buyable": false, + "symbol": "MASH", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3065, + "address": "0x4fe2dfcfb6e2f57fed568817c2e3b70feceae12d", + "name": "SardToken2015", + "buyable": false, + "symbol": "SRD15", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 698, + "address": "0x12b98c621e8754ae70d0fdbbc73d6208bc3e3ca6", + "name": "IdleUSDC v3 [Max yield]", + "buyable": false, + "symbol": "idleUSDCYiel", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00077639, + "ccyValue": 1.04, + "ethDayChange": -0.040273434119930282, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 735, + "address": "0xbeebcfe2fbb3c72884341be2b73ae0fc6559b8fc", + "name": "Quantum 1 Silver", + "buyable": false, + "symbol": "Q1S", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1738, + "address": "0xb05af453011d7ad68a92b0065ffd9d1277ed2741", + "name": "Team", + "buyable": false, + "symbol": "TEAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000611, + "ccyValue": 0.036091, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1851, + "address": "0x163c754ef4d9c03fc7fa9cf6dd43bfc760e6ce89", + "name": "MaggotToken", + "buyable": false, + "symbol": "MAGGOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2820, + "address": "0x0c63cae5fcc2ca3dde60a35e50362220651ebec8", + "name": "stakedXEM", + "buyable": false, + "symbol": "stXEM", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00017361, + "ccyValue": 0.217658, + "ethDayChange": 0.000922456039204382, + "ccyDayChange": -0.015812 + }, + "tokenlist": false + }, { + "id": 331, + "address": "0x000c100050e98c91f9114fa5dd75ce6869bf4f53", + "name": "CRYPTO10 Hedged", + "buyable": false, + "symbol": "C10", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2798, + "address": "0xcae72a7a0fd9046cf6b165ca54c9e3a3872109e0", + "name": "AnRKey X", + "buyable": false, + "symbol": "$ANRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000245, + "ccyValue": 0.03264, + "ethDayChange": 0.039005667180138907, + "ccyDayChange": 0.079436 + }, + "tokenlist": false + }, { + "id": 2178, + "address": "0xbbbfd95e5b8f1f4bd0694071fb3133be5b5d1ef6", + "name": "Zenfuse Trading Platform Token", + "buyable": false, + "symbol": "ZEFU", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 146, + "address": "0x6a9b3e36436b7abde8c4e2e2a98ea40455e615cf", + "name": "Ekon Gold", + "buyable": false, + "symbol": "EKG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.267, + "ccyValue": 355.8, + "ethDayChange": 0, + "ccyDayChange": 0.036562 + }, + "tokenlist": false + }, { + "id": 2029, + "address": "0xf4e83b864eb73ac4c5e6320e8cac379e66cd47f4", + "name": "BOOTY-DAI Uniswap pool token", + "buyable": false, + "symbol": "BOOTY-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2749, + "address": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "name": "PEAKDEFI", + "buyable": false, + "symbol": "PEAK", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00020051288392515, + "ccyValue": 0.267186, + "ethDayChange": -0.029176295110977917, + "ccyDayChange": 0.009487 + }, + "tokenlist": false + }, { + "id": 1610, + "address": "0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd", + "name": "Evedo Token", + "buyable": false, + "symbol": "EVED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000042891148057974, + "ccyValue": 0.057165, + "ethDayChange": -0.065755868918013505, + "ccyDayChange": -0.03143 + }, + "tokenlist": false + }, { + "id": 1886, + "address": "0x1299185c9646a0d46305f7d1a6f3f6be58c3faa5", + "name": "Rari Stable Pool Token", + "buyable": false, + "symbol": "RSPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 166, + "address": "0x1a5f9352af8af974bfc03399e3767df6370d82e4", + "name": "OWL Token", + "buyable": false, + "symbol": "OWL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000806177261215662, + "ccyValue": 1.074473, + "ethDayChange": -0.012959356453788026, + "ccyDayChange": 0.025887 + }, + "tokenlist": false + }, { + "id": 2902, + "address": "0xddee5d01b54816ec80ebc57961e1ed0dd800b157", + "name": "HDASH-HPLSM Uniswap pool token", + "buyable": false, + "symbol": "HDASH-HPLSM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 399, + "address": "0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25", + "name": "SIRIN", + "buyable": false, + "symbol": "SRN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000197063, + "ccyValue": 0.026202, + "ethDayChange": 0.06072217791607076, + "ccyDayChange": 0.099861 + }, + "tokenlist": false + }, { + "id": 1933, + "address": "0xd2f574637898526fcddfb3d487cc73c957fa0268", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1097, + "address": "0xc076ad93c21710ef5b5934c64ef7ff5290ef726a", + "name": "BAEcoin", + "buyable": false, + "symbol": "BAE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2067, + "address": "0xac10f17627cd6bc22719ceebf1fc524c9cfdc255", + "name": "SakeSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2421, + "address": "0xf151980e7a781481709e8195744bf2399fb3cba4", + "name": "FreewayToken", + "buyable": false, + "symbol": "FWT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00000258276123259, + "ccyValue": 0.003447, + "ethDayChange": -0.008733265374239377, + "ccyDayChange": 0.031727 + }, + "tokenlist": false + }, { + "id": 152, + "address": "0x2c4bd064b998838076fa341a83d007fc2fa50957", + "name": "MKR-ETH Uniswap v1 pool token", + "buyable": false, + "symbol": "MKR-ETH V1", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3012, + "address": "0x9c664f20c0a00a4949dffca76748c02754c875aa", + "name": "Yearn Shark Finance", + "buyable": false, + "symbol": "YSKF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00316662, + "ccyValue": 4.21, + "ethDayChange": 0.256345963102559016, + "ccyDayChange": 0.307453 + }, + "tokenlist": false + }, { + "id": 2011, + "address": "0x914b87b5cf636d2610d7f69f16c3b15c37578e18", + "name": "UNIGET.ORG", + "buyable": false, + "symbol": "UNIGET.ORG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 191, + "address": "0xbd1194ead6a11dbf723eb34ae0a185c86dc73c6f", + "name": "Mysteiro", + "buyable": false, + "symbol": "PHIL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 48, + "address": "0xc3761eb917cd790b30dad99f6cc5b4ff93c4f9ea", + "name": "Belance", + "buyable": false, + "symbol": "ERC20", + "decimals": 18, + "iconUrl": "https://belance.io/files/images/extensions/d778748bce59229754343374e3f83b8a_view982fcbca84.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000953, + "ccyValue": 0.012765, + "ethDayChange": -0.021068093804891578, + "ccyDayChange": 0.020547 + }, + "tokenlist": false + }, { + "id": 2150, + "address": "0x420ab548b18911717ed7c4ccbf46371ea758458c", + "name": "NOODLE.Finance", + "buyable": false, + "symbol": "NOODLE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 5.8520635263E-8, + "ccyValue": 0.000078, + "ethDayChange": 2.363254900172413793, + "ccyDayChange": 2.12 + }, + "tokenlist": false + }, { + "id": 3121, + "address": "0x80cdc6b820be59d8f19bc2a7502550eeef4f3648", + "name": "UTOPIA ", + "buyable": false, + "symbol": "ENZF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1426, + "address": "0x770afbe8bad977f1b14be65bf1a6f8cea008c20b", + "name": "Couric", + "buyable": false, + "symbol": "SHIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1980, + "address": "0x53a68e70e7dab2105df15ecf0f142967902203fb", + "name": "Mushie.Finance", + "buyable": false, + "symbol": "MUSH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 30, + "address": "0x8713d26637cf49e1b6b4a7ce57106aabc9325343", + "name": "Content Neutrality Network", + "buyable": false, + "symbol": "CNN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.81E-8, + "ccyValue": 0.000024, + "ethDayChange": -0.052356020942408377, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1427, + "address": "0x38c4102d11893351ced7ef187fcf43d33eb1abe6", + "name": "SHRIMP.FINANCE", + "buyable": false, + "symbol": "SHRIMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00020378, + "ccyValue": 0.121899, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2186, + "address": "0xea9b64caad065cbcbe9a1a5a4b76b1df367985d3", + "name": "CashBox AREIT", + "buyable": false, + "symbol": "CB1", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 145, + "address": "0x278a83b64c3e3e1139f8e8a52d96360ca3c69a3d", + "name": "Nexxo Tokens", + "buyable": false, + "symbol": "NEXXO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001373, + "ccyValue": 0.018397, + "ethDayChange": -0.038515406162464986, + "ccyDayChange": -0.00691 + }, + "tokenlist": false + }, { + "id": 342, + "address": "0x716523231368d43bdfe1f06afe1c62930731ab13", + "name": "Wrapped 0xEthereum Token", + "buyable": false, + "symbol": "W0xETH", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1286, + "address": "0x9556f8ee795d991ff371f547162d5efb2769425f", + "name": "DMME", + "buyable": false, + "symbol": "DMME", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000014, + "ccyValue": 0.001862, + "ethDayChange": 1.865329512893982808, + "ccyDayChange": 1.960254 + }, + "tokenlist": false + }, { + "id": 1293, + "address": "0x95f8ea94c3b5ad4a30a2ccdd393641843e91fde4", + "name": "STA-AMPL Uniswap pool token", + "buyable": false, + "symbol": "STA-AMPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2759, + "address": "0xd3f85d18206829f917929bbbf738c1e0ce9af7fc", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2233, + "address": "0x7a9277aa08a633766461351ec00996a0cbe905ad", + "name": "MetaCore", + "buyable": false, + "symbol": "MCRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 878, + "address": "0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb", + "name": "BAX", + "buyable": false, + "symbol": "BAX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 6.3453974858E-8, + "ccyValue": 0.000085, + "ethDayChange": 0.070050166239460371, + "ccyDayChange": 0.118421 + }, + "tokenlist": false + }, { + "id": 2427, + "address": "0xff034d12353867fc4228f4ae3e689cd6dcaad120", + "name": "YFBitcoin", + "buyable": false, + "symbol": "YFBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1974, + "address": "0xb5214edee5741324a13539bcc207bc549e2491ff", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3133, + "address": "0x3c56d5e887d8fa7ae1ba65bf7eccc25ec09eaf18", + "name": "RealToken S 9165 Kensington St Detroit MI", + "buyable": false, + "symbol": "9165 Kensing", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 991, + "address": "0x5cb622c21ae335e7baaea7638ce097b3d172b827", + "name": "STONK-ETH Uniswap pool token", + "buyable": false, + "symbol": "STONK-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 686, + "address": "0xd8a8843b0a5aba6b030e92b3f4d669fad8a5be50", + "name": "AfroDex Labs Token", + "buyable": false, + "symbol": "AFDLT", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 248, + "address": "0xece83617db208ad255ad4f45daf81e25137535bb", + "name": "Invacio Coin", + "buyable": false, + "symbol": "INV", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001043667928415, + "ccyValue": 0.001391, + "ethDayChange": -0.037657849761306992, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2112, + "address": "0x5cbefe14c66ba706e79ca4237ff10f218461014a", + "name": "Uniswap V2 DARK-ETH", + "buyable": false, + "symbol": "DARK-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 757, + "address": "0x5478b4863c71e445bae7e283dd83bf24fe47fb30", + "name": "RiotCoin", + "buyable": false, + "symbol": "RIOTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1081, + "address": "0x924e26fee8e10c20726006cc2bd307a538b0ebe5", + "name": "BTC RSI Crossover Yield Set", + "buyable": false, + "symbol": "BTCRSIAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-robo-21", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.251771491613711473, + "ccyValue": 335.564482, + "ethDayChange": -0.045009667094197751, + "ccyDayChange": -0.003384 + }, + "tokenlist": false + }, { + "id": 1271, + "address": "0x863d747565ea332e3ba4ea58cb1e7ea4a1d94e3f", + "name": "Symbio", + "buyable": false, + "symbol": "SYO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2266, + "address": "0x69f08bd1929ef62ecbe947d6bf76a7b7cdba55e8", + "name": "yfCyclic", + "buyable": false, + "symbol": "CYCL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 376, + "address": "0x24099988cccec93178c62204eda194f3e0d10ba8", + "name": "Hubert Golan Token", + "buyable": false, + "symbol": "NGOLD", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 845, + "address": "0xa2085073878152ac3090ea13d1e41bd69e60dc99", + "name": "EscoinToken", + "buyable": false, + "symbol": "ELG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2315, + "address": "0x61b10135639885e00bf4d42de2fe5f2e28abad75", + "name": "yfelite.finance", + "buyable": false, + "symbol": "YFE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1332, + "address": "0xb2279b6769cfba691416f00609b16244c0cf4b20", + "name": "Waifu", + "buyable": false, + "symbol": "WAIF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 4.23683686108E-7, + "ccyValue": 0.000565, + "ethDayChange": 0.028939432600378399, + "ccyDayChange": 0.070076 + }, + "tokenlist": false + }, { + "id": 2018, + "address": "0x11c552e0d391220fd57e6a6a85ee4aeff2325067", + "name": "THEUSES", + "buyable": false, + "symbol": "THEUS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2451, + "address": "0xa69b892eed6f15f2d50dcb33dcd5d598df4123a8", + "name": "FIRST-ETH Uniswap pool token", + "buyable": false, + "symbol": "FIRST-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3128, + "address": "0xbc81bf5b3173bccdbe62dba5f5b695522ad63559", + "name": "Lead Token", + "buyable": false, + "symbol": "XPb", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.00051650693802941, + "ccyValue": 0.689281, + "ethDayChange": -0.078920787013532957, + "ccyDayChange": -0.040808 + }, + "tokenlist": false + }, { + "id": 754, + "address": "0x883a158c9b28f8d626acfcfbe1028f49e70c9d75", + "name": "CNG Casino", + "buyable": false, + "symbol": "CNG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.7E-9, + "ccyValue": 0.000006, + "ethDayChange": 0.021739130434782609, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2743, + "address": "0xbbcdee12f16696f887a009b059561561d4479b45", + "name": "Cyber Book of P.U.N.K.s - circa 3470vrx", + "buyable": false, + "symbol": "CBOP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1726, + "address": "0x24f967ef6f942c198c5507d78a007aa198976f7d", + "name": "Sharkbit Finance", + "buyable": false, + "symbol": "SBIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2944, + "address": "0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43", + "name": "Fire Protocol", + "buyable": false, + "symbol": "FIRE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000273495873883007, + "ccyValue": 0.364515, + "ethDayChange": -0.10176079255449619, + "ccyDayChange": -0.062806 + }, + "tokenlist": false + }, { + "id": 2362, + "address": "0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0", + "name": "Wrapped Wagerr", + "buyable": false, + "symbol": "WWGR", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2822, + "address": "0xed0bd2cea114716a31555626173294715dab3b41", + "name": "GEM-ETH Uniswap pool token", + "buyable": false, + "symbol": "GEM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1424, + "address": "0x1fe72034da777ef22533eaa6dd7cbe1d80be50fa", + "name": "PayAccept", + "buyable": false, + "symbol": "PAY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1359, + "address": "0x0e2298e3b3390e3b945a5456fbf59ecc3f55da16", + "name": "YAM", + "buyable": false, + "symbol": "YAM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yam.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#EC0E5C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002681000000000004, + "ccyValue": 3.573236, + "ethDayChange": 0.259868421052632867, + "ccyDayChange": 0.309452 + }, + "tokenlist": false + }, { + "id": 1251, + "address": "0x16cac1403377978644e78769daa49d8f6b6cf565", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 449, + "address": "0x536381a8628dbcc8c70ac9a30a7258442eab4c92", + "name": "Pantos Token", + "buyable": false, + "symbol": "PAN", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pan.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#3B2B4F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000029445300723091, + "ccyValue": 0.039245, + "ethDayChange": 0.025968666309790941, + "ccyDayChange": 0.062427 + }, + "tokenlist": false + }, { + "id": 736, + "address": "0x594207c791afd06a8d087d84d99d1da53ccbd45f", + "name": "BuzzShow Token", + "buyable": false, + "symbol": "GLDY", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000024083422688691, + "ccyValue": 0.032091, + "ethDayChange": -0.397914432782725, + "ccyDayChange": -0.375904 + }, + "tokenlist": false + }, { + "id": 2654, + "address": "0xe89dc5ead48a40180a4743aa18ecaf1a3a08ff1f", + "name": "Kugula Token", + "buyable": false, + "symbol": "KGL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1730, + "address": "0x5befbb272290dd5b8521d4a938f6c4757742c430", + "name": "Xfinance", + "buyable": false, + "symbol": "XFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02666486, + "ccyValue": 35.52, + "ethDayChange": -0.006734424385328722, + "ccyDayChange": 0.035871 + }, + "tokenlist": false + }, { + "id": 1623, + "address": "0xbe6ac6b50f577205c9d107f37b6e205aa6acc5d4", + "name": "United Network Distribution", + "buyable": false, + "symbol": "UND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.000208, + "ccyValue": 0.2771, + "ethDayChange": 0, + "ccyDayChange": 0.036275 + }, + "tokenlist": false + }, { + "id": 747, + "address": "0x70c621f949b6556c4545707a2d5d73a776b98359", + "name": "Skychain Global Token", + "buyable": false, + "symbol": "SKCH", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000015502577557286, + "ccyValue": 0.020662, + "ethDayChange": -0.29437516807983614, + "ccyDayChange": 0.578577 + }, + "tokenlist": false + }, { + "id": 22, + "address": "0xa35fc5019c4dc509394bd4d74591a0bf8852c195", + "name": "BTC Enthusiast", + "buyable": false, + "symbol": "BTCETH7525", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/btceth7525.png", + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-robo-15", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.527055484110680247, + "ccyValue": 703.045842, + "ethDayChange": -0.00075130384794808, + "ccyDayChange": 0.037385 + }, + "tokenlist": false + }, { + "id": 214, + "address": "0xe71cebd38ce2186e01eb6c8a232ec16e8906ed69", + "name": "betbeb.com Mining 0.75 ETH day", + "buyable": false, + "symbol": "BEB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3051, + "address": "0xae1eaae3f627aaca434127644371b67b18444051", + "name": "YOP", + "buyable": false, + "symbol": "YOP", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.00062065488918808, + "ccyValue": 0.828267, + "ethDayChange": -0.07652740104432744, + "ccyDayChange": -0.038316 + }, + "tokenlist": false + }, { + "id": 2184, + "address": "0xe48de8786d246df3ea54cd2b8acfa8037ff96871", + "name": "Degen Barter Module", + "buyable": false, + "symbol": "DBM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2977, + "address": "0xd469ca51eba410d67e86c22d21261bf2e964d224", + "name": "Torro DAO Token", + "buyable": false, + "symbol": "TORRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 464, + "address": "0xd6ad7a6750a7593e092a9b218d66c0a814a3436e", + "name": "Yearn USDC v2", + "buyable": false, + "symbol": "yUSDC v2", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/yusdc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1948, + "address": "0xc7c52b5d386b999ffa1e469eb723a299881e9df4", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 817, + "address": "0xf3dd98c8716fe4c8a559eeef84c5fe1fe697cdce", + "name": "The Other Deadness", + "buyable": false, + "symbol": "DED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2405, + "address": "0xa393473d64d2f9f026b60b6df7859a689715d092", + "name": "Lattice Token", + "buyable": false, + "symbol": "LTX", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000073201537834744, + "ccyValue": 0.097688, + "ethDayChange": 0.006717561810248582, + "ccyDayChange": 0.047986 + }, + "tokenlist": false + }, { + "id": 1751, + "address": "0x3ac2ab91ddf57e2385089202ca221c360ced0062", + "name": "SwapShip RTC", + "buyable": false, + "symbol": "SWSH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00252243, + "ccyValue": 3.56, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2669, + "address": "0xafcff02f7fc96674f86d9bb142e19247de2d6ce8", + "name": "Nozty Finance", + "buyable": false, + "symbol": "NOZTY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 640, + "address": "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3", + "name": "Aave Interest bearing WBTC V1", + "buyable": false, + "symbol": "aWBTC V1", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/awbtc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-15", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 24.399503344224805192, + "ccyValue": 32554.581978, + "ethDayChange": -0.000590623028024244, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 2371, + "address": "0x260e63d91fccc499606bae3fe945c4ed1cf56a56", + "name": "MoonTools.io", + "buyable": false, + "symbol": "MOONS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.006469960523792498, + "ccyValue": 8.623162, + "ethDayChange": 0.046722706383995561, + "ccyDayChange": 0.11699 + }, + "tokenlist": false + }, { + "id": 715, + "address": "0x506c788b90b86d64bb7207dba1f4fb8217d70565", + "name": "DeutscheMark", + "buyable": false, + "symbol": "DEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 409, + "address": "0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74", + "name": "Walton Token", + "buyable": false, + "symbol": "WTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000253042480650149, + "ccyValue": 0.337255, + "ethDayChange": -0.015781872228125243, + "ccyDayChange": 0.021366 + }, + "tokenlist": false + }, { + "id": 2314, + "address": "0x4c11249814f11b9346808179cf06e71ac328c1b5", + "name": "Oraichain Token", + "buyable": false, + "symbol": "ORAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02691466, + "ccyValue": 35.85, + "ethDayChange": -0.17695392963211226, + "ccyDayChange": -0.14255 + }, + "tokenlist": false + }, { + "id": 2036, + "address": "0x5a23d90cdeb30de09fab5ed159ec4b73fb475a61", + "name": "Arsu", + "buyable": false, + "symbol": "ARSU", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2552, + "address": "0xa9c44135b3a87e0688c41cf8c27939a22dd437c9", + "name": "BooBank", + "buyable": false, + "symbol": "BOOB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005557, + "ccyValue": 0.064713, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1192, + "address": "0x3737f6b94edf93526eb7e66139f11b836bf91a8b", + "name": "Swoose", + "buyable": false, + "symbol": "Swoose", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2296, + "address": "0xfa599c6d2fc9a0497588cbed3b64d24d8e06163c", + "name": "THLToken", + "buyable": false, + "symbol": "THL", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1544, + "address": "0xc929b3e2e98d1068ae8159a106172a4204fd4bc1", + "name": "POOF-ETH Uniswap pool token", + "buyable": false, + "symbol": "POOF-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2786, + "address": "0xb588780f33124d76e13923fb2df04b0117333d33", + "name": "UNI-PITCH Uniswap pool token", + "buyable": false, + "symbol": "UNI-PITCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2739, + "address": "0x8c168ef06b8baf8ad2236eef2286f7870ad50f9b", + "name": "Santa Token", + "buyable": false, + "symbol": "SANTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2159, + "address": "0xb526fd41360c98929006f3bdcbd16d55de4b0069", + "name": "THIRM", + "buyable": false, + "symbol": "THIRM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.005779834617427398, + "ccyValue": 7.713215, + "ethDayChange": 1.146849692979599887, + "ccyDayChange": 1.26194 + }, + "tokenlist": false + }, { + "id": 891, + "address": "0x6c9d9af863124782a56b2ba5b182d1e7415fbb95", + "name": "LINK-CDAI", + "buyable": false, + "symbol": "LINKCDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1205, + "address": "0x103c3a209da59d3e7c4a89307e66521e081cfdf0", + "name": "Genesis Vision Token", + "buyable": false, + "symbol": "GVT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gvt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#16B9AD", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.001776, + "ccyValue": 2.369, + "ethDayChange": 0.011876014272191205, + "ccyDayChange": 0.052565 + }, + "tokenlist": false + }, { + "id": 863, + "address": "0xea38eaa3c86c8f9b751533ba2e562deb9acded40", + "name": "Fuel Token", + "buyable": false, + "symbol": "FUEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.81874720678E-7, + "ccyValue": 0.000242, + "ethDayChange": 0.064840285, + "ccyDayChange": 0.1 + }, + "tokenlist": false + }, { + "id": 1395, + "address": "0xf96459323030137703483b46fd59a71d712bf0aa", + "name": "XTAKE", + "buyable": false, + "symbol": "XTK", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.006974552633506696, + "ccyValue": 9.293675, + "ethDayChange": -0.037657849761649808, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1888, + "address": "0x825130aa1beef07bdf4f389705321816d05b0d0f", + "name": "UNII", + "buyable": false, + "symbol": "UNII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.279E-7, + "ccyValue": 0.000233, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1380, + "address": "0x20211ab9388781532fece6c57347a0004a420f16", + "name": "Enceladus Network", + "buyable": false, + "symbol": "ENCX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.176E-7, + "ccyValue": 0.00043, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 859, + "address": "0x846c66cf71c43f80403b51fe3906b3599d63336f", + "name": "PumaPay", + "buyable": false, + "symbol": "PMA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.29773695669E-7, + "ccyValue": 0.000173, + "ethDayChange": 0.079648050490848586, + "ccyDayChange": 0.123377 + }, + "tokenlist": false + }, { + "id": 1441, + "address": "0x11b1f53204d03e5529f09eb3091939e4fd8c9cf3", + "name": "MANA-ETH Uniswap pool token", + "buyable": false, + "symbol": "MANA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2771, + "address": "0x52d904eff2605463c2f0b338d34abc9b7c3e3b08", + "name": "Bitpower", + "buyable": false, + "symbol": "BPP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000021562790713298, + "ccyValue": 0.028776, + "ethDayChange": -0.081667259820979407, + "ccyDayChange": -0.044018 + }, + "tokenlist": false + }, { + "id": 967, + "address": "0x2aaba2a54b72bc8a93521c2dd9c6b4354906b764", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 431, + "address": "0x02ba9b528425f9de08f961b88a10b03be8b8b998", + "name": "MASQ", + "buyable": false, + "symbol": "MASQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 498, + "address": "0x53066cddbc0099eb6c96785d9b3df2aaeede5da3", + "name": "Penta Network Token", + "buyable": false, + "symbol": "PNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 2.11052131089E-7, + "ccyValue": 0.000281, + "ethDayChange": 0.256719707849308382, + "ccyDayChange": 0.306977 + }, + "tokenlist": false + }, { + "id": 2564, + "address": "0x29a99c126596c0dc96b02a88a9eaab44eccf511e", + "name": "Cobalt", + "buyable": false, + "symbol": "CBLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 40, + "address": "0xfb2f26f266fb2805a387230f2aa0a331b4d96fba", + "name": "Edge Network", + "buyable": false, + "symbol": "EDGE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/edge.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0ECC5F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000038644793599969, + "ccyValue": 0.051495, + "ethDayChange": 0.007686925683676662, + "ccyDayChange": 0.622452 + }, + "tokenlist": false + }, { + "id": 1086, + "address": "0x98a25ba4c3793b9029652cbc1a8875cbe223df13", + "name": "ETH Momentum Trigger Set", + "buyable": false, + "symbol": "ETHMO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-47", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.3229734, + "ccyValue": 430.659361, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2616, + "address": "0xa361718326c15715591c299427c62086f69923d9", + "name": "Aave interest bearing BUSD", + "buyable": false, + "symbol": "aBUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/abusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-9", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00074876, + "ccyValue": 0.99532, + "ethDayChange": -0.037785580967115521, + "ccyDayChange": -0.004438 + }, + "tokenlist": false + }, { + "id": 1608, + "address": "0xa5fd1a791c4dfcaacc963d4f73c6ae5824149ea7", + "name": "Jibrel Network Token", + "buyable": false, + "symbol": "JNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000025416178627855, + "ccyValue": 0.033867, + "ethDayChange": 0.132238789342086906, + "ccyDayChange": 0.17655 + }, + "tokenlist": false + }, { + "id": 2897, + "address": "0x7bee47379c01a8a2f73c6506d980ac628388ee00", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 232, + "address": "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb", + "name": "Synth sETH", + "buyable": false, + "symbol": "sETH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/seth.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#1E1A31", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.004357, + "ccyValue": 1337.87, + "ethDayChange": 0.009266083980169551, + "ccyDayChange": 0.048409 + }, + "tokenlist": false + }, { + "id": 380, + "address": "0x4cf488387f035ff08c371515562cba712f9015d4", + "name": "WePower Token", + "buyable": false, + "symbol": "WPR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000008322193181705, + "ccyValue": 0.01109, + "ethDayChange": 0.029541180902219363, + "ccyDayChange": 0.067784 + }, + "tokenlist": false + }, { + "id": 2779, + "address": "0x70401dfd142a16dc7031c56e862fc88cb9537ce0", + "name": "Bird.Money", + "buyable": false, + "symbol": "BIRD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.1173967417380516, + "ccyValue": 156.432563, + "ethDayChange": 0.140923533630107378, + "ccyDayChange": 0.182587 + }, + "tokenlist": false + }, { + "id": 2924, + "address": "0x665a6b80208a1f8eccb1ecb6d0271dde910c9ef1", + "name": "Uniforth", + "buyable": false, + "symbol": "UNIF", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000123525999233749, + "ccyValue": 0.164846, + "ethDayChange": -0.052049328226438584, + "ccyDayChange": -0.013194 + }, + "tokenlist": false + }, { + "id": 3057, + "address": "0xa3d93c0616dbc31fef1e112c7665a4ba4ddbf0be", + "name": "PrimeWhiteRockCompany", + "buyable": false, + "symbol": "PWC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1269, + "address": "0xc3d6d86ed7bfe24c40d3943e2f9ccff79b448041", + "name": "Churn.fund", + "buyable": false, + "symbol": "CHURN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2208, + "address": "0x6feb7b2a023c9bc3cccdf7c5b5a7b929b9a65e04", + "name": "Yield Dai - 2020-10-31-Pool", + "buyable": false, + "symbol": "fyDaiLP20Oct", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2115, + "address": "0x2dbd330bc9b7f3a822a9173ab52172bdddcace2a", + "name": "YFED.FINANCE", + "buyable": false, + "symbol": "YFED", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000292978056099295, + "ccyValue": 0.390397, + "ethDayChange": -0.081976386227690042, + "ccyDayChange": -0.006237 + }, + "tokenlist": false + }, { + "id": 1449, + "address": "0xae697f994fc5ebc000f8e22ebffee04612f98a0d", + "name": "LGCY Network", + "buyable": false, + "symbol": "LGCY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000274, + "ccyValue": 0.003652, + "ethDayChange": -0.035211267605633803, + "ccyDayChange": 0.00523 + }, + "tokenlist": false + }, { + "id": 1018, + "address": "0x0d4b4da5fb1a7d55e85f8e22f728701ceb6e44c9", + "name": "DigiMax", + "buyable": false, + "symbol": "DGMT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1E-8, + "ccyValue": 0.000013, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 215, + "address": "0x7f3eab3491ed282197038f1b89ca33d7e5adffba", + "name": "Coin-coin coinslot.com", + "buyable": false, + "symbol": "CC coinslot.", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3136, + "address": "0x9f923653a19537b5a1b003854a1920fe67a8ffeb", + "name": "RealToken S 13114 Glenfield Ave Detroit MI", + "buyable": false, + "symbol": "13114 Glenfi", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2108, + "address": "0x5bc25f649fc4e26069ddf4cf4010f9f706c23831", + "name": "DefiDollar", + "buyable": false, + "symbol": "DUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#5956E9", + "description": "DefiDollar ($DUSD) aspires to be a risk-insured stablecoin layer for DeFi. It aims to provide a safe and stable way for users to hold their assets.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00075879, + "ccyValue": 1.02, + "ethDayChange": -0.053960377523158827, + "ccyDayChange": 0.009901 + }, + "tokenlist": false + }, { + "id": 2317, + "address": "0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544", + "name": "DokiDokiFinance", + "buyable": false, + "symbol": "DOKI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.032993178431896491, + "ccyValue": 44.029542, + "ethDayChange": 0.072886437891793974, + "ccyDayChange": 0.120915 + }, + "tokenlist": false + }, { + "id": 61, + "address": "0x9c3e7e016389661473ac64f4c37f5f7f2955e499", + "name": "Blockimmo", + "buyable": false, + "symbol": "IMMO", + "decimals": 18, + "iconUrl": "https://s3.eu-west-2.amazonaws.com/argent-assets/Immo_500px.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 820, + "address": "0xa687f7d0442bfb76f5949e0c14378ff2896f45f2", + "name": "Test Token", + "buyable": false, + "symbol": "Test", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2434, + "address": "0x6c9e7725209dfe44a7bcd87ad106ba9bc26750c5", + "name": "Cocoacoin", + "buyable": false, + "symbol": "CCCN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 545, + "address": "0x3597bfd533a99c9aa083587b074434e61eb0a258", + "name": "DENT", + "buyable": false, + "symbol": "DENT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 2.16022453273E-7, + "ccyValue": 0.000288, + "ethDayChange": -0.002205758554272517, + "ccyDayChange": 0.039711 + }, + "tokenlist": false + }, { + "id": 1054, + "address": "0x4304ae5fd14cec2299caee4e9a4afbedd046d612", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2161, + "address": "0xf02553b9f908ab61f4c1fc0af9a488c76f8ecc85", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2307, + "address": "0xdeadbee61d6474b74f5b59750dc1f27408c28635", + "name": "Wisdom Token", + "buyable": false, + "symbol": "WIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2104, + "address": "0x8b8d971c8bc37f65a93c4609644fef0590af2fc7", + "name": "Securypto", + "buyable": false, + "symbol": "SCU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000235247210144436, + "ccyValue": 0.313537, + "ethDayChange": 0.011815957610477419, + "ccyDayChange": 0.051636 + }, + "tokenlist": false + }, { + "id": 600, + "address": "0x973e52691176d36453868d9d86572788d27041a9", + "name": "DxChain Token", + "buyable": false, + "symbol": "DX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000102, + "ccyValue": 0.001363, + "ethDayChange": -0.028571428571428571, + "ccyDayChange": 0.02021 + }, + "tokenlist": false + }, { + "id": 1374, + "address": "0xccf4fe6ac4b53193457e6ead1a2b92e78f4dd8a0", + "name": "Nifexcoin", + "buyable": false, + "symbol": "NIX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000655, + "ccyValue": 0.00135, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2765, + "address": "0xf94b5c5651c888d928439ab6514b93944eee6f48", + "name": "Yield", + "buyable": false, + "symbol": "YLD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000157095131918725, + "ccyValue": 0.209331, + "ethDayChange": -0.048023682470458126, + "ccyDayChange": -0.007896 + }, + "tokenlist": false + }, { + "id": 1655, + "address": "0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2", + "name": "Definitex", + "buyable": false, + "symbol": "DFX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00021674, + "ccyValue": 0.280097, + "ethDayChange": 1.27907465825446898, + "ccyDayChange": 1.289496 + }, + "tokenlist": false + }, { + "id": 1469, + "address": "0xee3b9b531f4c564c70e14b7b3bb7d516f33513ff", + "name": "DeFi Omega", + "buyable": false, + "symbol": "DFIO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00171321592656003, + "ccyValue": 2.282881, + "ethDayChange": 0.15449257782898924, + "ccyDayChange": 0.199669 + }, + "tokenlist": false + }, { + "id": 559, + "address": "0xb32c960c46f28059c2b5f1c3ecc2b9dd77ab0aa0", + "name": "Intelligent BTC Set", + "buyable": false, + "symbol": "INTBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-29", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.069211631411445646, + "ccyValue": 92.246207, + "ethDayChange": -0.045009667094197748, + "ccyDayChange": -0.003384 + }, + "tokenlist": false + }, { + "id": 1183, + "address": "0xd1f1c5ff90fb6f3b0d57f5f6ad4aaf7400f4b39b", + "name": "EXtereum", + "buyable": false, + "symbol": "EX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2851, + "address": "0x633ee3fbe5ffc05bd44ecd8240732ff9ef9dee1d", + "name": "MarketPeak", + "buyable": false, + "symbol": "PEAK", + "decimals": 8, + "sendable": false, + "dailyLimit": false, + "displayAddress": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00020051288392515, + "ccyValue": 0.267186, + "ethDayChange": -0.029176295110977917, + "ccyDayChange": 0.009487 + }, + "tokenlist": false + }, { + "id": 448, + "address": "0x28b5e12cce51f15594b0b91d5b5adaa70f684a02", + "name": "NapoleonX Token", + "buyable": false, + "symbol": "NPX", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00015020725085681, + "ccyValue": 0.200196, + "ethDayChange": -0.038491947724154033, + "ccyDayChange": -0.000654 + }, + "tokenlist": false + }, { + "id": 1955, + "address": "0xcf4236db746dbc1855a4d095aaf58da9b030491e", + "name": "Uniswap V2 BLZ-ETH", + "buyable": false, + "symbol": "BLZ-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2420, + "address": "0xd9a6803f41a006cbf389f21e55d7a6079dfe8df3", + "name": "Nova Mining Token", + "buyable": false, + "symbol": "NMT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000031259025931026, + "ccyValue": 0.041653, + "ethDayChange": 2.457856850777212389, + "ccyDayChange": 2.262552 + }, + "tokenlist": false + }, { + "id": 3091, + "address": "0xa9d232cc381715ae791417b624d7c4509d2c28db", + "name": "BSGS", + "buyable": false, + "symbol": "BSGS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.003996300565710645, + "ccyValue": 5.333081, + "ethDayChange": -0.196117562844225295, + "ccyDayChange": -0.160145 + }, + "tokenlist": false + }, { + "id": 531, + "address": "0x9d0f18af7428e886a75f0aae3daf5a119b02f69e", + "name": "Fantastic12 Squad Share", + "buyable": false, + "symbol": "F12-SHARE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3014, + "address": "0x73e1446109b5820f1b71e0db4140b84a63a28bb3", + "name": "KittieFIGHT", + "buyable": false, + "symbol": "KTY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1227, + "address": "0x1563d521ba309e2ad9f4affd6f4de9759e8d4f21", + "name": "VisionX", + "buyable": false, + "symbol": "VNX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.98E-8, + "ccyValue": 0.000008, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3119, + "address": "0xc345a7d981352615d6b54146e40b5b1a18414882", + "name": "ChainLink Token", + "buyable": false, + "symbol": "LINK", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1762, + "address": "0xd0c59798f986d333554688cd667033d469c2398e", + "name": "Ymen.Finance", + "buyable": false, + "symbol": "YMEN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00140593, + "ccyValue": 1.8, + "ethDayChange": -0.00325167859102656, + "ccyDayChange": -0.004838 + }, + "tokenlist": false + }, { + "id": 571, + "address": "0x08d967bb0134f2d07f7cfb6e246680c53927dd30", + "name": "MATH Token", + "buyable": false, + "symbol": "MATH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004431, + "ccyValue": 0.5903, + "ethDayChange": -0.02731100079257258, + "ccyDayChange": 0.010519 + }, + "tokenlist": false + }, { + "id": 2140, + "address": "0xb78b3320493a4efaa1028130c5ba26f0b6085ef8", + "name": "Dracula Token", + "buyable": false, + "symbol": "DRC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000069911009252833, + "ccyValue": 0.093157, + "ethDayChange": 0.280582309151116636, + "ccyDayChange": 0.330681 + }, + "tokenlist": false + }, { + "id": 587, + "address": "0x15822a64c8cb27d7828c45e0aafc3e6c5decd172", + "name": "Fear & Greed Sentiment Set II", + "buyable": false, + "symbol": "GREED2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-28", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.60300592, + "ccyValue": 804.06047, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 60, + "address": "0x998ffe1e43facffb941dc337dd0468d52ba5b48a", + "name": "Rupiah Token", + "buyable": false, + "symbol": "IDRT", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/idrt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#E74E4E", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 5.3800041531E-8, + "ccyValue": 0.000072, + "ethDayChange": -0.025069804953968693, + "ccyDayChange": 0.014085 + }, + "tokenlist": false + }, { + "id": 2604, + "address": "0x72630b1e3b42874bf335020ba0249e3e9e47bafc", + "name": "Paypolitan Token", + "buyable": false, + "symbol": "EPAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000092872355836402, + "ccyValue": 0.123939, + "ethDayChange": -0.04021305942920335, + "ccyDayChange": -0.001161 + }, + "tokenlist": false + }, { + "id": 1515, + "address": "0xf0be50ed0620e0ba60ca7fc968ed14762e0a5dd3", + "name": "Cowboy.Finance", + "buyable": false, + "symbol": "COW", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000695, + "ccyValue": 0.004001, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 719, + "address": "0x49849c98ae39fff122806c06791fa73784fb3675", + "name": "Curve.fi renBTC/wBTC", + "buyable": false, + "symbol": "crvRenWBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 24.77555, + "ccyValue": 33194, + "ethDayChange": -0.004067414958892916, + "ccyDayChange": 0.037929 + }, + "tokenlist": false + }, { + "id": 1494, + "address": "0xfa545ce38d18ea4350adb899f380058afad7619e", + "name": "USDC-AMPL Uniswap pool token", + "buyable": false, + "symbol": "USDC-AMPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2017, + "address": "0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c", + "name": "Utrust Token", + "buyable": false, + "symbol": "UTK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000188916217406335, + "ccyValue": 0.251787, + "ethDayChange": 0.062540223072601881, + "ccyDayChange": 0.104353 + }, + "tokenlist": false + }, { + "id": 2659, + "address": "0x2187d816186f33d7dffb26435ff537141ba9ba91", + "name": "HDash-ETH Uniswap pool token", + "buyable": false, + "symbol": "HDash-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 144, + "address": "0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe", + "name": "StableUSD", + "buyable": false, + "symbol": "USDS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0007816326, + "ccyValue": 1.039268, + "ethDayChange": 0.001066342213114754, + "ccyDayChange": 0.03102 + }, + "tokenlist": false + }, { + "id": 1902, + "address": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "name": "Hotpot Base Token", + "buyable": false, + "symbol": "POT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000024082418810072, + "ccyValue": 0.03209, + "ethDayChange": 17.81438969536875, + "ccyDayChange": 37.431138 + }, + "tokenlist": false + }, { + "id": 441, + "address": "0x4df76a9dab9bb8310e4ad3dc4336a8e26ed24ebb", + "name": "Sappchain", + "buyable": false, + "symbol": "SAPP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0.000013, + "ethDayChange": -0.5, + "ccyDayChange": -0.380952 + }, + "tokenlist": false + }, { + "id": 93, + "address": "0x226bb599a12c826476e3a771454697ea52e9e220", + "name": "Propy", + "buyable": false, + "symbol": "PRO", + "decimals": 8, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0x226bb599a12c826476e3a771454697ea52e9e220.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000064815025555734, + "ccyValue": 0.086385, + "ethDayChange": -0.033188759610173031, + "ccyDayChange": 0.00877 + }, + "tokenlist": false + }, { + "id": 2380, + "address": "0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49", + "name": "UNCL", + "buyable": false, + "symbol": "UNCL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/uncl.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#6630FF", + "description": "Liquidity token of UNCX", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00578194, + "ccyValue": 7.75, + "ethDayChange": 0.288916337508459127, + "ccyDayChange": 0.347263 + }, + "tokenlist": false + }, { + "id": 1064, + "address": "0xfbdfe28989d231e70b93c9ed1df0b48ddb6a7b27", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2239, + "address": "0x9696fea1121c938c861b94fcbee98d971de54b32", + "name": "Keep3r", + "buyable": false, + "symbol": "KPR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 187, + "address": "0xdbadabe39b91f2069e27291add14a1d95e3ff54f", + "name": "betbeb.com 挖矿每天0.75ETH", + "buyable": false, + "symbol": "BEB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2235, + "address": "0x1d1e6c356301c2119c4c4000283dfed65015a333", + "name": "Shoot Finance", + "buyable": false, + "symbol": "SHOOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3158, + "address": "0x3a880652f47bfaa771908c07dd8673a787daed3a", + "name": "DerivaDAO", + "buyable": false, + "symbol": "DDX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00790064487646312, + "ccyValue": 10.543445, + "ethDayChange": 0.032000024709631398, + "ccyDayChange": 0.074301 + }, + "tokenlist": false + }, { + "id": 502, + "address": "0xeccab39acb2caf9adba72c1cb92fdc106b993e0b", + "name": "Azbit", + "buyable": false, + "symbol": "AZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 9E-9, + "ccyValue": 0.000012, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1722, + "address": "0x5d1b1019d0afa5e6cc047b9e78081d44cc579fc4", + "name": "yfrb.Finance", + "buyable": false, + "symbol": "YFRB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001181613745335645, + "ccyValue": 1.574855, + "ethDayChange": -0.615970156348104248, + "ccyDayChange": -0.602309 + }, + "tokenlist": false + }, { + "id": 780, + "address": "0xba50933c268f567bdc86e1ac131be072c6b0b71a", + "name": "ARPA Token", + "buyable": false, + "symbol": "ARPA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000019096590035394, + "ccyValue": 0.025446, + "ethDayChange": 0.043324139885528851, + "ccyDayChange": 0.084146 + }, + "tokenlist": false + }, { + "id": 452, + "address": "0x4ed4ddd7981e347b673f697dc821965a3eb64b9c", + "name": "World Domination", + "buyable": false, + "symbol": "MEOW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2348, + "address": "0x075190c6130ea0a3a7e40802f1d77f4ea8f38fe2", + "name": "NToken0031", + "buyable": false, + "symbol": "N0031", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000134379634954049, + "ccyValue": 0.179062, + "ethDayChange": -0.023900378048601729, + "ccyDayChange": 0.018185 + }, + "tokenlist": false + }, { + "id": 2259, + "address": "0x8d8c93602addd52af05f36ce1acf1aafef355267", + "name": "Uniswap X", + "buyable": false, + "symbol": "UNIX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 489, + "address": "0x6f259637dcd74c767781e37bc6133cd6a68aa161", + "name": "HuobiToken", + "buyable": false, + "symbol": "HT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ht.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0084D6", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00444425576863185, + "ccyValue": 5.922024, + "ethDayChange": 0.03316444476695832, + "ccyDayChange": 0.073594 + }, + "tokenlist": false + }, { + "id": 2513, + "address": "0xf6c3393ad30224d938c16cbdac27792cbcbfcf62", + "name": "HypePlasma", + "buyable": false, + "symbol": "HPLSM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611791108, + "ethValue": 0.000436017082413176, + "ccyValue": 0.541621, + "ethDayChange": 0.032004160113674535, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 819, + "address": "0x26ea744e5b887e5205727f55dfbe8685e3b21951", + "name": "Yearn USDC v2", + "buyable": false, + "symbol": "yUSDC v2", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/yusdc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 433, + "address": "0x9c4cab313625f2b9fc2f545d1b8a98e1f536fc42", + "name": "River Plate Token", + "buyable": false, + "symbol": "CARP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1413, + "address": "0x6139f7fb1937806d21cc6b3b8152492c21239bdd", + "name": "Unix Chain", + "buyable": false, + "symbol": "UNIX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 190, + "address": "0xb1d42642c6da784a5498180fdc64df8f8f2bb773", + "name": "RealToken 18483 Mansfield Street Detroit MI", + "buyable": false, + "symbol": "18483 Mansfi", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1691, + "address": "0x08a2e41fb99a7599725190b9c970ad3893fa33cf", + "name": "Spaghetti", + "buyable": false, + "symbol": "PASTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2809, + "address": "0xb3d3c1bbcef737204aadb4fa6d90e974bc262197", + "name": "RealToken S 15796 Hartwell st Detroit MI", + "buyable": false, + "symbol": "15796 Hartwe", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": " #F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2764, + "address": "0x0c7d5ae016f806603cb1782bea29ac69471cab9c", + "name": "Bifrost", + "buyable": false, + "symbol": "BFC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000027782529457392, + "ccyValue": 0.037029, + "ethDayChange": -0.223083628148993289, + "ccyDayChange": -0.189418 + }, + "tokenlist": false + }, { + "id": 2677, + "address": "0x434e3a92c43a98ff508ab44e023ea7638952ad21", + "name": "OLD RealToken S 13114 Glenfield Ave Detroit MI", + "buyable": false, + "symbol": "13114 Glenfi", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3112, + "address": "0xb34ab2f65c6e4f764ffe740ab83f982021faed6d", + "name": "BSG", + "buyable": false, + "symbol": "BSG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 160.506, + "ccyValue": 203405, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3068, + "address": "0x51b039b9afe64b78758f8ef091211b5387ea717c", + "name": "Aave stable debt bearing WBTC", + "buyable": false, + "symbol": "stableDebtWB", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2827, + "address": "0x21f54372c07b930b79c5c2d9bb0eaaca86c3b298", + "name": "Banana.finance", + "buyable": false, + "symbol": "BANANA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.06381692, + "ccyValue": 84.82, + "ethDayChange": -0.11462521880509147, + "ccyDayChange": -0.078844 + }, + "tokenlist": false + }, { + "id": 595, + "address": "0xdf9307dff0a1b57660f60f9457d32027a55ca0b2", + "name": "DMM: ETH", + "buyable": false, + "symbol": "mETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1853, + "address": "0xe51fdc2c202a95ba9dff434b4297184b62f67d0b", + "name": "yfALPHA", + "buyable": false, + "symbol": "YFALP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1268, + "address": "0xf83ae621a52737e3ef9307af91df834ed8431ac3", + "name": "uvwFi.finance", + "buyable": false, + "symbol": "uvwFi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1684, + "address": "0x5580ab97f226c324c671746a1787524aef42e415", + "name": "JUL", + "buyable": false, + "symbol": "JUL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.03485126755334954, + "ccyValue": 46.449761, + "ethDayChange": 0.009232488109987642, + "ccyDayChange": 0.048952 + }, + "tokenlist": false + }, { + "id": 1528, + "address": "0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea", + "name": "ZINC", + "buyable": false, + "symbol": "ZINC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000014912050993362, + "ccyValue": 0.019875, + "ethDayChange": 0.059847263209808102, + "ccyDayChange": 0.105764 + }, + "tokenlist": false + }, { + "id": 1682, + "address": "0x5e41c0f52a0d7fa33de379e3fee63358e6c8c851", + "name": "Tempus Token", + "buyable": false, + "symbol": "TEMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1533, + "address": "0x09e64c2b61a5f1690ee6fbed9baf5d6990f8dfd0", + "name": "Growth", + "buyable": false, + "symbol": "GRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.08283731, + "ccyValue": 110.36, + "ethDayChange": 0.116917439673510817, + "ccyDayChange": 0.165364 + }, + "tokenlist": false + }, { + "id": 2603, + "address": "0x64c29aac69d3122f6e5531ceca1b753f95350af4", + "name": "BOND-ETH Uniswap pool token", + "buyable": false, + "symbol": "BOND-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1940, + "address": "0x02566303a0e860ec66d3b79168459978b1b00c8e", + "name": "Cream Pool Token", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3067, + "address": "0xdb1fcda65caf9c9dca7e473ae074dc821f626218", + "name": "UNCL-DISTX Uniswap pool token", + "buyable": false, + "symbol": "UNCL-DISTX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2158, + "address": "0xd12889e4b722ede2d179ab49065d8a15ea0ef8f4", + "name": "CRYPTO-DANA", + "buyable": false, + "symbol": "DANA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2177, + "address": "0xbe428c3867f05dea2a89fc76a102b544eac7f772", + "name": "CyberVeinToken", + "buyable": false, + "symbol": "CVT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000067650466387406, + "ccyValue": 0.090165, + "ethDayChange": -0.02838256074508417, + "ccyDayChange": 0.009856 + }, + "tokenlist": false + }, { + "id": 237, + "address": "0x86c8bf8532aa2601151c9dbbf4e4c4804e042571", + "name": "Simoleon", + "buyable": false, + "symbol": "SIM", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1065, + "address": "0xf18432ef894ef4b2a5726f933718f5a8cf9ff831", + "name": "BioCrypt", + "buyable": false, + "symbol": "BIO", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000268, + "ccyValue": 0.003571, + "ethDayChange": 0.956204379562043796, + "ccyDayChange": 5.146299 + }, + "tokenlist": false + }, { + "id": 700, + "address": "0x6067c9d5c53d17afcc08fdd23b73af362d0b02c9", + "name": "LINK/ETH RSI Ratio Trading-777", + "buyable": false, + "symbol": "LINKETHRSI77", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 815, + "address": "0xeb66acc3d011056b00ea521f8203580c2e5d3991", + "name": "IdleUSDC", + "buyable": false, + "symbol": "IDLEUSDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2467, + "address": "0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e", + "name": "RootKit", + "buyable": false, + "symbol": "ROOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.241137, + "ccyValue": 2976.31, + "ethDayChange": -0.005996480942071798, + "ccyDayChange": 0.029431 + }, + "tokenlist": false + }, { + "id": 1552, + "address": "0xa6446d655a0c34bc4f05042ee88170d056cbaf45", + "name": "Caspian Token", + "buyable": false, + "symbol": "CSP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000004582830876651, + "ccyValue": 0.006107, + "ethDayChange": 0.022953320681026786, + "ccyDayChange": 0.067098 + }, + "tokenlist": false + }, { + "id": 2128, + "address": "0x44fbebd2f576670a6c33f6fc0b00aa8c5753b322", + "name": "Cream USD Coin", + "buyable": false, + "symbol": "crUSDC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 961, + "address": "0xc68b73d9509f5343602480656f5da512a5a20b9e", + "name": "ACIDTOKEN", + "buyable": false, + "symbol": "ACID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1144, + "address": "0x95c4b6c7cff608c0ca048df8b81a484aa377172b", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1679, + "address": "0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355", + "name": "bXIOT Token", + "buyable": false, + "symbol": "bXIOT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000348657413285721, + "ccyValue": 0.464691, + "ethDayChange": -0.009581662456819186, + "ccyDayChange": 0.030083 + }, + "tokenlist": false + }, { + "id": 2464, + "address": "0x0c334506e0bcb7c17b583cb7c0ec2f5857bf9e6f", + "name": "Public Goods", + "buyable": false, + "symbol": "PUBG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 490, + "address": "0x7b2f9706cd8473b4f5b7758b0171a9933fc6c4d6", + "name": "An Etheal Promo", + "buyable": false, + "symbol": "HEALP", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2621, + "address": "0x028171bca77440897b824ca71d1c56cac55b68a3", + "name": "Aave interest bearing DAI", + "buyable": false, + "symbol": "aDAI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/adai.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-10", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000748885528516212, + "ccyValue": 0.999391, + "ethDayChange": -0.037669585561279877, + "ccyDayChange": -0.000609 + }, + "tokenlist": false + }, { + "id": 2506, + "address": "0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7", + "name": "reflect.finance", + "buyable": false, + "symbol": "RFI", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001163296671732645, + "ccyValue": 1.550107, + "ethDayChange": -0.291861073641118836, + "ccyDayChange": -0.263935 + }, + "tokenlist": false + }, { + "id": 2206, + "address": "0x8ef47555856f6ce2e0cd7c36aef4fab317d2e2e2", + "name": "PayAccept", + "buyable": false, + "symbol": "PAYT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000032571558415366, + "ccyValue": 0.043411, + "ethDayChange": 0.001893522465887419, + "ccyDayChange": 0.045418 + }, + "tokenlist": false + }, { + "id": 1861, + "address": "0x5a386eb0fcbfee3f0d759e263053c09162ff102d", + "name": "Woonkly", + "buyable": false, + "symbol": "Woonk", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001566, + "ccyValue": 0.005941, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1968, + "address": "0xe0552564a62ef5c10095c9e91dea25bd8823364a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1835, + "address": "0x423b5f62b328d0d6d44870f4eee316befa0b2df5", + "name": "GoToken", + "buyable": false, + "symbol": "GOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001447838237736, + "ccyValue": 0.00193, + "ethDayChange": -0.003813483918011717, + "ccyDayChange": 0.035408 + }, + "tokenlist": false + }, { + "id": 668, + "address": "0x9bfb088c9f311415e3f9b507da73081c52a49d8c", + "name": "BOY Cassette Tape by RAC", + "buyable": false, + "symbol": "TAPE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.66548515, + "ccyValue": 248.71, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1825, + "address": "0xef8ba8cba86f81b3108f60186fce9c81b5096d5c", + "name": "YFII Gold", + "buyable": false, + "symbol": "YFIIG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00127688, + "ccyValue": 1.7, + "ethDayChange": -0.078160369151596179, + "ccyDayChange": -0.042908 + }, + "tokenlist": false + }, { + "id": 949, + "address": "0xf5c0e24aca5217bcbae662871cae1a86873f02db", + "name": "Alligator + Fractal Set", + "buyable": false, + "symbol": "GATOR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-49", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.21235398061460375, + "ccyValue": 283.028285, + "ethDayChange": -0.045009667094197749, + "ccyDayChange": -0.003384 + }, + "tokenlist": false + }, { + "id": 2555, + "address": "0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81", + "name": "Muse", + "buyable": false, + "symbol": "MUSE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001228742971849864, + "ccyValue": 1.637668, + "ethDayChange": -0.030541668471510513, + "ccyDayChange": 0.007612 + }, + "tokenlist": false + }, { + "id": 2189, + "address": "0x72f020f8f3e8fd9382705723cd26380f8d0c66bb", + "name": "PLOT", + "buyable": false, + "symbol": "PLOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000037204954326583, + "ccyValue": 0.049587, + "ethDayChange": 0.015499208023408078, + "ccyDayChange": 0.056166 + }, + "tokenlist": false + }, { + "id": 1051, + "address": "0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd", + "name": "Switch", + "buyable": false, + "symbol": "ESH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000016440597154931, + "ccyValue": 0.021907, + "ethDayChange": 0.001254394331973203, + "ccyDayChange": 0.042446 + }, + "tokenlist": false + }, { + "id": 2675, + "address": "0x41d4e9880d6ae03f6e152a52afc3ecf82063a08b", + "name": "Ammunition", + "buyable": false, + "symbol": "AMMO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1925, + "address": "0x077307ffc27256756177a2a2d745112e3df9b803", + "name": "STBS", + "buyable": false, + "symbol": "STBS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 630, + "address": "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f", + "name": "Aave Interest bearing MANA V1", + "buyable": false, + "symbol": "aMANA V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/amana.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-12", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0001215976, + "ccyValue": 0.161678, + "ethDayChange": 0.029662275698575336, + "ccyDayChange": 0.068338 + }, + "tokenlist": false + }, { + "id": 1263, + "address": "0xd83a162d4808c370a1445646e64cc4861eb60b92", + "name": "OXY", + "buyable": false, + "symbol": "OXY", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1E-8, + "ccyValue": 0.000002, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 412, + "address": "0x446c9033e7516d820cc9a2ce2d0b7328b579406f", + "name": "Healthcare Administration Token", + "buyable": false, + "symbol": "SOLVE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00007307, + "ccyValue": 0.097338, + "ethDayChange": 0.027135297971441464, + "ccyDayChange": 0.06701 + }, + "tokenlist": false + }, { + "id": 2291, + "address": "0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9", + "name": "NIX Bridge Token", + "buyable": false, + "symbol": "NBT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.012067552204010372, + "ccyValue": 16.104201, + "ethDayChange": 0.016042004673633569, + "ccyDayChange": 0.05738 + }, + "tokenlist": false + }, { + "id": 1922, + "address": "0x75116bd1ab4b0065b44e1a4ea9b4180a171406ed", + "name": "Mooniswap V1 (ETH-DAI)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2610, + "address": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "name": "Aave interest bearing WETH", + "buyable": false, + "symbol": "aWETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-aave-v2-1", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 1, + "ccyValue": 1329.611878, + "ethDayChange": 0, + "ccyDayChange": 0.034884 + }, + "tokenlist": false + }, { + "id": 2191, + "address": "0xc666081073e8dff8d3d1c2292a29ae1a2153ec09", + "name": "Digitex", + "buyable": false, + "symbol": "DGTX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dgtx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#1CB7ED", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000343, + "ccyValue": 0.004558, + "ethDayChange": -0.050421407850899992, + "ccyDayChange": -0.015976 + }, + "tokenlist": false + }, { + "id": 1640, + "address": "0x46f4e420c75401494a39b70653f4bbb88ad2d728", + "name": "WenBURN", + "buyable": false, + "symbol": "WENB", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000017942916834318, + "ccyValue": 0.023914, + "ethDayChange": 0.00127884120078125, + "ccyDayChange": 0.029888 + }, + "tokenlist": false + }, { + "id": 1890, + "address": "0x4dffe3ddc544af5e76809e19fd16b28770181f38", + "name": "UNIFork", + "buyable": false, + "symbol": "FUNI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2136, + "address": "0x054bd236b42385c938357112f419dc5943687886", + "name": "HeavensGate", + "buyable": false, + "symbol": "HATE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.08481743, + "ccyValue": 113.26, + "ethDayChange": 0.016892776905164142, + "ccyDayChange": 0.062975 + }, + "tokenlist": false + }, { + "id": 881, + "address": "0xabc754ac2161b557d28062f41dcc0fc18440ac7e", + "name": "ETH Maximalist Set", + "buyable": false, + "symbol": "ETH10K", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-40", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.621328, + "ccyValue": 828.491508, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2721, + "address": "0x885e127aba09bf8fae058a2895c221b37697c9be", + "name": "AceD", + "buyable": false, + "symbol": "AceD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000335, + "ccyValue": 0.004494, + "ethDayChange": -0.023323615160349854, + "ccyDayChange": 0.057412 + }, + "tokenlist": false + }, { + "id": 3000, + "address": "0x9070832cf729a5150bb26825c2927e7d343eabd9", + "name": "Farming: 1inch Liquidity Pool (ETH-1INCH)", + "buyable": false, + "symbol": "farm-1LP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 914, + "address": "0xf150b9054013552a6288320dc4afe1beebb79d8e", + "name": "AngelToken", + "buyable": false, + "symbol": "ANGEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001999, + "ccyValue": 0.005682, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2502, + "address": "0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd", + "name": "Cream ETH 2", + "buyable": false, + "symbol": "CRETH2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1088, + "address": "0xc7088fac73c55bfae5c2a963c3029b072c7dff25", + "name": "BTC AI Limit Loss", + "buyable": false, + "symbol": "BLL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-55", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.241580458591303565, + "ccyValue": 322.324218, + "ethDayChange": -0.000590623028024243, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 742, + "address": "0xf382ccbd3d203c10706059ffdcfe053308955792", + "name": "Investy Coin", + "buyable": false, + "symbol": "IVC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3178, + "address": "0xc558f600b34a5f69dd2f0d06cb8a88d829b7420a", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1140, + "address": "0xdc5864ede28bd4405aa04d93e05a0531797d9d59", + "name": "Falcon", + "buyable": false, + "symbol": "FNT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 1.7241070422E-7, + "ccyValue": 0.00023, + "ethDayChange": 0.022602041637010676, + "ccyDayChange": 0.074766 + }, + "tokenlist": false + }, { + "id": 1887, + "address": "0x016bf078abcacb987f0589a6d3beadd4316922b0", + "name": "Rari Stable Pool Token", + "buyable": false, + "symbol": "RSPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00222811, + "ccyValue": 1, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1800, + "address": "0x033b186321fa88603e3ecc98821fb0932b2c0760", + "name": "OLD RealToken S 12334 Lansdowne St Detroit MI", + "buyable": false, + "symbol": "12334 Lansdo", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 469, + "address": "0xa809cedee9b61956c768eaa10272dd5e0fd1a985", + "name": "CAMI", + "buyable": false, + "symbol": "CAMI", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1782, + "address": "0x2b25da312c263f07c37616764354613481bddbc0", + "name": "SardToken2020", + "buyable": false, + "symbol": "SRD20", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2274, + "address": "0xde4ee8057785a7e8e800db58f9784845a5c2cbd6", + "name": "Dexe", + "buyable": false, + "symbol": "DEXE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00296899379809034, + "ccyValue": 3.95622, + "ethDayChange": 0.020272782848914089, + "ccyDayChange": 0.05753 + }, + "tokenlist": false + }, { + "id": 1023, + "address": "0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc", + "name": "Pareto Network Token", + "buyable": false, + "symbol": "PARETO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.378E-7, + "ccyValue": 0.000291, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3180, + "address": "0x5f18c75abdae578b483e5f43f12a39cf75b973a9", + "name": "USDC yVault", + "buyable": false, + "symbol": "yvUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1465, + "address": "0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669", + "name": "yffi.finance", + "buyable": false, + "symbol": "YFFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.005506345934298936, + "ccyValue": 7.348243, + "ethDayChange": 0.134908717353822313, + "ccyDayChange": 0.181869 + }, + "tokenlist": false + }, { + "id": 1363, + "address": "0x447f8d287120b66f39856ae5ceb01512a7a47444", + "name": "ETH-DAM Uniswap pool token", + "buyable": false, + "symbol": "ETH-DAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2880, + "address": "0x66e33d2605c5fb25ebb7cd7528e7997b0afa55e8", + "name": "USDC-DSD Uniswap pool token", + "buyable": false, + "symbol": "USDC-DSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 620, + "address": "0xc39835d32428728cbde6903f84c76750976c0323", + "name": "BTC OnChain Beta Portfolio", + "buyable": false, + "symbol": "BOCBP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-2", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.299708859378450972, + "ccyValue": 399.880952, + "ethDayChange": -0.000590623028024246, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 121, + "address": "0x39bb259f66e1c59d5abef88375979b4d20d98022", + "name": "Wax Token", + "buyable": false, + "symbol": "WAX", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/wax.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00003132, + "ccyValue": 0.04152, + "ethDayChange": -0.011110795373817169, + "ccyDayChange": 0.020348 + }, + "tokenlist": false + }, { + "id": 1967, + "address": "0x80f4d4b61f4ae3b1bc2724ae582516fdded5cabe", + "name": "Firemoon", + "buyable": false, + "symbol": "FIRM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.013955154443611179, + "ccyValue": 18.623215, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1561, + "address": "0xc6a5ec55673d5d6e9c2d89d4d28092b7bb73b5d0", + "name": "ArtemisFinance", + "buyable": false, + "symbol": "ARS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1283, + "address": "0xf97ce80cd21e18006dd9c3edc07c983c158f9371", + "name": "DANNY", + "buyable": false, + "symbol": "DANNY", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1961, + "address": "0x5b1fc2435b1f7c16c206e7968c0e8524ec29b786", + "name": "Mooniswap V1 (ETH-CHI)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3153, + "address": "0x2186ecb39f1b765ba7d78f1c43c2e9d7fc0c1eca", + "name": "MyCryptoPlay", + "buyable": false, + "symbol": "MCP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000121406893761827, + "ccyValue": 0.161811, + "ethDayChange": -0.1702645314254579, + "ccyDayChange": -0.134298 + }, + "tokenlist": false + }, { + "id": 2808, + "address": "0x499a6c19f5537dd6005e2b5c6e1263103f558ba4", + "name": "RealToken S 17813 Bradford st Detroit MI", + "buyable": false, + "symbol": "17813 Bradfo", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2063, + "address": "0x7bd630983148e781c332b2dfa3eac0df7417def7", + "name": "GAMESHOT", + "buyable": false, + "symbol": "GST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 937, + "address": "0x594415978a756c5b02eabdff98d867cdda65e888", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 711, + "address": "0x3fd4cf9303c4bc9e13772618828712c8eac7dd2f", + "name": "BNT-ETH Uniswap pool token", + "buyable": false, + "symbol": "BNT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2202, + "address": "0x231b7589426ffe1b75405526fc32ac09d44364c4", + "name": "WBTC-DAI Uniswap pool token", + "buyable": false, + "symbol": "WBTC-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2576, + "address": "0x83eea00d838f92dec4d1475697b9f4d3537b56e3", + "name": "VOISE", + "buyable": false, + "symbol": "VOISE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000007366780302178, + "ccyValue": 0.009816, + "ethDayChange": 3347.53650099, + "ccyDayChange": 3271 + }, + "tokenlist": false + }, { + "id": 2957, + "address": "0x2700db151d75f04ab2886f49eb824d6680ec3ccb", + "name": "Stable Yield Credit ", + "buyable": false, + "symbol": "yCREDIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2566, + "address": "0x7ba9b94127d434182287de708643932ec036d365", + "name": "eRSDL-ETH Uniswap pool token", + "buyable": false, + "symbol": "eRSDL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2835, + "address": "0x3d0cce94e9b6a103f2d40b8329cd5b5b79b4848e", + "name": "Union Capital", + "buyable": false, + "symbol": "UNIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1496, + "address": "0x6c972b70c533e2e045f333ee28b9ffb8d717be69", + "name": "Foundry Logistics Token", + "buyable": false, + "symbol": "FRY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000554, + "ccyValue": 0.007407, + "ethDayChange": 0.135245901639344262, + "ccyDayChange": 0.233678 + }, + "tokenlist": false + }, { + "id": 664, + "address": "0xc4a51feed0b152f8c88be5867e8148db9c2dc08f", + "name": "USD//C-777", + "buyable": false, + "symbol": "USDC777", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3106, + "address": "0x159751323a9e0415dd3d6d42a1212fe9f4a0848c", + "name": "INFI", + "buyable": false, + "symbol": "INFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000296402895538281, + "ccyValue": 0.395551, + "ethDayChange": 0.01616930951211678, + "ccyDayChange": 0.057821 + }, + "tokenlist": false + }, { + "id": 1112, + "address": "0x7a4b766c1b0b16a6bc77a4aa3e4dfd2ef0a955f0", + "name": "BitcoinYield", + "buyable": false, + "symbol": "BTCY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 532, + "address": "0xdf6ef343350780bf8c3410bf062e0c015b1dd671", + "name": "Blackmoon Crypto Token", + "buyable": false, + "symbol": "BMC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000045553559054322, + "ccyValue": 0.060714, + "ethDayChange": -0.00937245676053069, + "ccyDayChange": 0.029627 + }, + "tokenlist": false + }, { + "id": 1324, + "address": "0xe47d5c4f4c2ae421cd4437e9d7fe8583b1b42fed", + "name": "AUTEM.network", + "buyable": false, + "symbol": "AUTEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2406, + "address": "0x36f697f791a0c91d6f1bb166767d5d2d701b1d82", + "name": "Gamer.Finance", + "buyable": false, + "symbol": "GAMER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1909, + "address": "0xab7aaf9e485a3bc885985184abe9fc6aba727bd6", + "name": "MANY", + "buyable": false, + "symbol": "MANY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000023208364969296, + "ccyValue": 0.030925, + "ethDayChange": 1.181237309144360902, + "ccyDayChange": 1.248764 + }, + "tokenlist": false + }, { + "id": 8, + "address": "0x9ab165d795019b6d8b3e971dda91071421305e5a", + "name": "Aurora", + "buyable": false, + "symbol": "AOA", + "decimals": 18, + "iconUrl": "https://s2.coinmarketcap.com/static/img/coins/64x64/2874.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001223189800377, + "ccyValue": 0.00163, + "ethDayChange": 0.000874037089976957, + "ccyDayChange": 0.040204 + }, + "tokenlist": false + }, { + "id": 627, + "address": "0x9709bb5ce25fcd6f9786d3e4ccf422717367473c", + "name": "MoFlux - Boomtown Set", + "buyable": false, + "symbol": "MFBT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-27", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.38396528, + "ccyValue": 511.987185, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 1735, + "address": "0xc813ea5e3b48bebeedb796ab42a30c5599b01740", + "name": "Autonio", + "buyable": false, + "symbol": "NIOX", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003841, + "ccyValue": 0.051164, + "ethDayChange": -0.099719690464456407, + "ccyDayChange": -0.064199 + }, + "tokenlist": false + }, { + "id": 1403, + "address": "0x4fbb350052bca5417566f188eb2ebce5b19bc964", + "name": "Rigo Token", + "buyable": false, + "symbol": "GRG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00097168, + "ccyValue": 1.3, + "ethDayChange": 0.067193849533223504, + "ccyDayChange": 0.171171 + }, + "tokenlist": false + }, { + "id": 2204, + "address": "0x92c25c17c0c908e52b16627f353f1004543f8a32", + "name": "Yield Dai - 2020-10-31", + "buyable": false, + "symbol": "fyDai20Oct", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2550, + "address": "0x101ae894e76c669c6747f767b33e0e480943fa0e", + "name": "PREOS Token", + "buyable": false, + "symbol": "PAG", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2095, + "address": "0x5c89674c4ad1ccd10a29bcc9aabc303cd5f2da1d", + "name": "TOMOE-ETH Uniswap pool token", + "buyable": false, + "symbol": "TOMOE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2336, + "address": "0x0a53297dabb532cbcbf9b0fc519f8b235259d056", + "name": "GLOBAL CASH FINAnCE", + "buyable": false, + "symbol": "GOFI", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 966, + "address": "0x2ee268541b96b2b8129a06b006fd247b467f6118", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2614, + "address": "0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a", + "name": "Aave interest bearing REN", + "buyable": false, + "symbol": "aREN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/aren.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-16", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004324, + "ccyValue": 0.576, + "ethDayChange": 0.029497581847319604, + "ccyDayChange": 0.067404 + }, + "tokenlist": false + }, { + "id": 2648, + "address": "0x85e076361cc813a908ff672f9bad1541474402b2", + "name": "Telcoin", + "buyable": false, + "symbol": "TEL", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2412, + "address": "0xc5bddf9843308380375a611c18b50fb9341f502a", + "name": "veCRV-DAO yVault", + "buyable": false, + "symbol": "yveCRV-DAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 862, + "address": "0x8c4e7f814d40f8929f9112c5d09016f923d34472", + "name": "XCELTOKEN PLUS", + "buyable": false, + "symbol": "XLAB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.4942011069E-8, + "ccyValue": 0.00002, + "ethDayChange": -0.126198183099415205, + "ccyDayChange": -0.090909 + }, + "tokenlist": false + }, { + "id": 1076, + "address": "0x14f0a12a43c36c49d4b403dd6e1a9b8222be456c", + "name": "VINX Coin", + "buyable": false, + "symbol": "VXC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vxc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#633C97", + "description": "VXC COIN! Meet the world's first utility token for fine wine buying. VXC is revolutionizing how you buy wine, both retail, and wholesale.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0071972, + "ccyValue": 9.57, + "ethDayChange": 0.311557862203691285, + "ccyDayChange": 0.365193 + }, + "tokenlist": false + }, { + "id": 1385, + "address": "0x4ecb692b0fedecd7b486b4c99044392784877e8c", + "name": "Cherry", + "buyable": false, + "symbol": "CHERRY", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.004726471413892351, + "ccyValue": 6.29944, + "ethDayChange": -0.001588851887414767, + "ccyDayChange": 0.037704 + }, + "tokenlist": false + }, { + "id": 192, + "address": "0x4dc3643dbc642b72c158e7f3d2ff232df61cb6ce", + "name": "Amber Token", + "buyable": false, + "symbol": "AMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00001419, + "ccyValue": 0.01893, + "ethDayChange": -0.030114964526403565, + "ccyDayChange": 0.007076 + }, + "tokenlist": false + }, { + "id": 1235, + "address": "0x8df1be0fdf7161a6ff56c8189d7e10358727a96c", + "name": "Invictus Gold Plus", + "buyable": false, + "symbol": "IGP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 629, + "address": "0x3e6941521c85c7233632bf76e3adb05db8e2f1db", + "name": "MoFlux Clash of Kings", + "buyable": false, + "symbol": "MFCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-20", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.576486214700343483, + "ccyValue": 768.855023, + "ethDayChange": -0.000862331333416565, + "ccyDayChange": 0.037037 + }, + "tokenlist": false + }, { + "id": 438, + "address": "0xb59d606888f867c11a4c4458e022c2ccc5cbe8db", + "name": "JILT ", + "buyable": false, + "symbol": "JLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2970, + "address": "0x63b8b7d4a3efd0735c4bffbd95b332a55e4eb851", + "name": "DigiCol Token", + "buyable": false, + "symbol": "DGCL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00004984554572922, + "ccyValue": 0.066434, + "ethDayChange": -0.183929932649562513, + "ccyDayChange": -0.151816 + }, + "tokenlist": false + }, { + "id": 2148, + "address": "0x1a3c63a48c806a813f35462727b158b08e4cd68c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1522, + "address": "0xb4d0d9df2738abe81b87b66c80851292492d1404", + "name": "TUSD-ETH Uniswap pool token", + "buyable": false, + "symbol": "TUSD-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 634, + "address": "0xcae169afde69f297c7817ed5f4a6816c0e38137d", + "name": "Flex BTC Set", + "buyable": false, + "symbol": "FLEXBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-21", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.050590660474783485, + "ccyValue": 67.427923, + "ethDayChange": -0.045009667094197747, + "ccyDayChange": -0.003384 + }, + "tokenlist": false + }, { + "id": 2244, + "address": "0xe3d5291a2e4c1766ecf060f354d2ce38add96914", + "name": "HIPPO-ETH Uniswap pool token", + "buyable": false, + "symbol": "HIPPO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1651, + "address": "0xf80b96baff90115fffa4fa312a5e8d8969948dbd", + "name": "Yieldby.finance", + "buyable": false, + "symbol": "YBFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1297, + "address": "0xaacb60d35f2313f03976dfe392bbb879901ada1a", + "name": "Bankless Apparel Season 0", + "buyable": false, + "symbol": "BAP0", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 954, + "address": "0x0fe156436f203b114c6c562cb1a2a81aa2801090", + "name": "SkinChain", + "buyable": false, + "symbol": "SKC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.49E-8, + "ccyValue": 0.00002, + "ethDayChange": -0.044871794871794872, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2378, + "address": "0x125fb7121df1cb201556d5cdd58a8edffca6863b", + "name": "Veritas", + "buyable": false, + "symbol": "VTS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2608, + "address": "0x39c6b3e42d6a679d7d776778fe880bc9487c2eda", + "name": "Aave interest bearing KNC", + "buyable": false, + "symbol": "aKNC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/aknc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-12", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000975466829720439, + "ccyValue": 1.301765, + "ethDayChange": 0.045628502219357916, + "ccyDayChange": 0.089343 + }, + "tokenlist": false + }, { + "id": 41, + "address": "0xf263292e14d9d8ecd55b58dad1f1df825a874b7c", + "name": "EduCoin", + "buyable": false, + "symbol": "EDU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 8.73E-8, + "ccyValue": 0.000116, + "ethDayChange": 0.030696576151121606, + "ccyDayChange": 0.074074 + }, + "tokenlist": false + }, { + "id": 2375, + "address": "0x792348668c8d4b640bb7c09d7127234d4c29053e", + "name": "YFIN STAKE", + "buyable": false, + "symbol": "YFIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1417, + "address": "0x31024a4c3e9aeeb256b825790f5cb7ac645e7cd5", + "name": "Xiotri", + "buyable": false, + "symbol": "XIOT", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.10421920863668391, + "ccyValue": 138.873342, + "ethDayChange": -0.033728805071541044, + "ccyDayChange": 0.004083 + }, + "tokenlist": false + }, { + "id": 1976, + "address": "0xb4ae194a0dcf1b4080b164c1d775ee06e0817305", + "name": "Super Saiya-jin token", + "buyable": false, + "symbol": "SSJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00169713, + "ccyValue": 0.647656, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1577, + "address": "0xce84867c3c02b05dc570d0135103d3fb9cc19433", + "name": "SUSHI-ETH Uniswap pool token", + "buyable": false, + "symbol": "SUSHI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-30", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.252457690441675553, + "ccyValue": 336.488067, + "ethDayChange": 0.047285677253838443, + "ccyDayChange": 0.086363 + }, + "tokenlist": false + }, { + "id": 2475, + "address": "0x5f3b5dfeb7b28cdbd7faba78963ee202a494e2a2", + "name": "Vote-escrowed CRV", + "buyable": false, + "symbol": "veCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2916, + "address": "0x2ec255797fef7669fa243509b7a599121148ffba", + "name": "Farming: 1inch Liquidity Pool (ETH-1INCH)", + "buyable": false, + "symbol": "farm-1LP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 300, + "address": "0x4f7c5bd3f7d62a9c984e265d73a86f5515f3e92b", + "name": "The Burn Token", + "buyable": false, + "symbol": "BURN", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000149, + "ccyValue": 0.000688, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1308, + "address": "0xa462d0e6bb788c7807b1b1c96992ce1f7069e195", + "name": "EQUUSMiningToken", + "buyable": false, + "symbol": "EQMT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.934E-7, + "ccyValue": 0.00065, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 476, + "address": "0xdf49c9f599a0a9049d97cff34d0c30e468987389", + "name": "Smart Advertising Transaction Token", + "buyable": false, + "symbol": "SATT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002179981066831, + "ccyValue": 0.002905, + "ethDayChange": -0.032464299690490293, + "ccyDayChange": 0.005538 + }, + "tokenlist": false + }, { + "id": 2726, + "address": "0x4e8a374690c4bd568c83a708aa335e760197e0bd", + "name": "RealToken S 20105 Westphalia st Detroit MI", + "buyable": false, + "symbol": "20105 Westph", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2493, + "address": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1467, + "address": "0x01d7e6a79f6e6dc6f0884743078f76ac1239520a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1396, + "address": "0xbeca0c3da712b24d2c885a55591b5c1975f1f3bc", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 561, + "address": "0xd53b50a6213ee7ff2fcc41a7cf69d22ded0a43b3", + "name": "CommonsStackToken", + "buyable": false, + "symbol": "CSTK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2156, + "address": "0x1ba981e1560236b77a238f1328a3a6ba947e9776", + "name": "Zfinance", + "buyable": false, + "symbol": "ZFI", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1032, + "address": "0xd5930c307d7395ff807f2921f12c5eb82131a789", + "name": "Bolt Token", + "buyable": false, + "symbol": "BOLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2457, + "address": "0x98ad9b32dd10f8d8486927d846d4df8baf39abe2", + "name": "VELO Token", + "buyable": false, + "symbol": "VLO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002144545006103, + "ccyValue": 0.002858, + "ethDayChange": -0.334215414324095467, + "ccyDayChange": -0.30799 + }, + "tokenlist": false + }, { + "id": 3131, + "address": "0x88128580acdd9c04ce47afce196875747bf2a9f6", + "name": "Badger Sett SushiSwap LP Token", + "buyable": false, + "symbol": "bSLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1604, + "address": "0x73374ea518de7addd4c2b624c0e8b113955ee041", + "name": "Juggernaut DeFi", + "buyable": false, + "symbol": "JGN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00006466240734131, + "ccyValue": 0.086182, + "ethDayChange": -0.129594732247812626, + "ccyDayChange": -0.097911 + }, + "tokenlist": false + }, { + "id": 1170, + "address": "0xfa19de406e8f5b9100e4dd5cad8a503a6d686efe", + "name": "ANT-ETH Uniswap pool token", + "buyable": false, + "symbol": "ANT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2341, + "address": "0x9ca85572e6a3ebf24dedd195623f188735a5179f", + "name": "yearn Curve.fi DAI/USDC/USDT", + "buyable": false, + "symbol": "y3Crv", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-53", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2040, + "address": "0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b", + "name": "Trustcoin", + "buyable": false, + "symbol": "TRST", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000541, + "ccyValue": 0.00725, + "ethDayChange": -0.001792818471434207, + "ccyDayChange": 0.043165 + }, + "tokenlist": false + }, { + "id": 2618, + "address": "0xc713e5e149d5d0715dcd1c156a020976e7e56b88", + "name": "Aave interest bearing MKR", + "buyable": false, + "symbol": "aMKR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/amkr.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-15", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.062260620419618303, + "ccyValue": 1415.548765, + "ethDayChange": -0.010924995465879416, + "ccyDayChange": 0.025247 + }, + "tokenlist": false + }, { + "id": 483, + "address": "0x3a4a0d5b8dfacd651ee28ed4ffebf91500345489", + "name": "BerryXToken", + "buyable": false, + "symbol": "BRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00018741, + "ccyValue": 0.070763, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2417, + "address": "0x12d4444f96c644385d8ab355f6ddf801315b6254", + "name": "CVP-ETH Uniswap pool token", + "buyable": false, + "symbol": "CVP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2724, + "address": "0xa59b08fbf0323fc35ca0b3314d01a09a235b0919", + "name": "Lil Yachty", + "buyable": false, + "symbol": "YACHTY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2958, + "address": "0xe0839f9b9688a77924208ad509e29952dc660261", + "name": "Stable Yield Credit", + "buyable": false, + "symbol": "yCREDIT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3019, + "address": "0xe13559cf6edf84bd04bf679e251f285000b9305e", + "name": "TMC NiftyGotchi", + "buyable": false, + "symbol": "TMC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00003866, + "ccyValue": 0.051499, + "ethDayChange": -0.028154851684263449, + "ccyDayChange": 0.034054 + }, + "tokenlist": false + }, { + "id": 277, + "address": "0xe7775a6e9bcf904eb39da2b68c5efb4f9360e08c", + "name": "Token-as-a-Service", + "buyable": false, + "symbol": "TAAS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.005052, + "ccyValue": 1E+1, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 594, + "address": "0x25b63bca43914b7d7ccd59892b762c06493a04e6", + "name": "ITALIA", + "buyable": false, + "symbol": "ITALIA", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 79, + "address": "0x263c618480dbe35c300d8d5ecda19bbb986acaed", + "name": "Olympus Labs", + "buyable": false, + "symbol": "MOT", + "decimals": 18, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0x263c618480dbe35c300d8d5ecda19bbb986acaed.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 6.8E-7, + "ccyValue": 0.000901, + "ethDayChange": -0.030878945926941538, + "ccyDayChange": 0.001111 + }, + "tokenlist": false + }, { + "id": 3058, + "address": "0xa5959e9412d27041194c3c3bcbe855face2864f7", + "name": "UniDexGas.com", + "buyable": false, + "symbol": "UNDG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.312526482981700899, + "ccyValue": 417.067964, + "ethDayChange": -0.097159681886267564, + "ccyDayChange": -0.059802 + }, + "tokenlist": false + }, { + "id": 837, + "address": "0xe5dada80aa6477e85d09747f2842f7993d0df71c", + "name": "DockToken", + "buyable": false, + "symbol": "DOCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001647, + "ccyValue": 0.021939, + "ethDayChange": 0.00795593635250918, + "ccyDayChange": 0.05092 + }, + "tokenlist": false + }, { + "id": 2433, + "address": "0x364a7381a5b378ced7ab33d1cdf6ff1bf162bfd6", + "name": "DeFi-X Token", + "buyable": false, + "symbol": "TGX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2760, + "address": "0x622f2962ae78e8686ecc1e30cf2f9a6e5ac35626", + "name": "WrappedPolis", + "buyable": false, + "symbol": "WPOLIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000594993083066011, + "ccyValue": 0.793007, + "ethDayChange": 0.126091721835098511, + "ccyDayChange": 0.158229 + }, + "tokenlist": false + }, { + "id": 1254, + "address": "0x4533d1ac3f4eaa03220f530d613ab696d837e0f8", + "name": "Lunie Staking", + "buyable": false, + "symbol": "LUN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2306, + "address": "0x4f38f4229924bfa28d58eeda496cc85e8016bccc", + "name": "CehhCoin", + "buyable": false, + "symbol": "CEHH", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 285, + "address": "0xaa7fb1c8ce6f18d4fd4aabb61a2193d4d441c54f", + "name": "ShitCoin", + "buyable": false, + "symbol": "SHIT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611858602, + "ethValue": 1E-10, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 432, + "address": "0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a", + "name": "Populous Platform", + "buyable": false, + "symbol": "PPT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000834731014120084, + "ccyValue": 1.112529, + "ethDayChange": 0.034209304837055209, + "ccyDayChange": 0.080125 + }, + "tokenlist": false + }, { + "id": 1058, + "address": "0x045eb7e34e94b28c7a3641bc5e1a1f61f225af9f", + "name": "ZPAY", + "buyable": false, + "symbol": "ZPAE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.405E-7, + "ccyValue": 0.00125, + "ethDayChange": -0.077941176470588235, + "ccyDayChange": -0.044343 + }, + "tokenlist": false + }, { + "id": 125, + "address": "0xb4272071ecadd69d933adcd19ca99fe80664fc08", + "name": "CryptoFranc", + "buyable": false, + "symbol": "XCHF", + "decimals": 18, + "iconUrl": "https://s3.eu-west-2.amazonaws.com/argent-assets/XCHF_400px.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0008510705, + "ccyValue": 1.131593, + "ethDayChange": -0.029442659764165411, + "ccyDayChange": 0.006342 + }, + "tokenlist": false + }, { + "id": 221, + "address": "0x6b1871328f3c80f6bd85f1b4b45b67319b2b4c8d", + "name": "Radial", + "buyable": false, + "symbol": "RAD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1899, + "address": "0x288f9a192207bc59230204655b12ccd83ceb74dc", + "name": "Unissou", + "buyable": false, + "symbol": "YTG", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1233, + "address": "0xa32523371390b0cc4e11f6bb236ecf4c2cdea101", + "name": "RING-ETH Uniswap pool token", + "buyable": false, + "symbol": "RING-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2518, + "address": "0x12a06769c5a8881aafb4ea0f6d8b7ad79eaebc35", + "name": "Uniswap LP [WETH/ROOT]", + "buyable": false, + "symbol": "RLP:WETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 435, + "address": "0x9d494a823fc3e852f8ff92f36a05662a46de0381", + "name": "Paybchain ", + "buyable": false, + "symbol": "Payb", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 270, + "address": "0x1914caa9f41468ccdfaa8fc72294a4a51a3bb379", + "name": "MYKEY", + "buyable": false, + "symbol": "MKY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1223, + "address": "0xc682b4a319f425dd8fd52595f7d0c54051d94df4", + "name": "Wojciech Piejko Token", + "buyable": false, + "symbol": "WOJ", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1926, + "address": "0x2b6148d996736900f59d21edfce69991bf8243a2", + "name": "Fruit", + "buyable": false, + "symbol": "FRUIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3159, + "address": "0x4a9596e5d2f9bef50e4de092ad7181ae3c40353e", + "name": "DAI-BSG Uniswap pool token", + "buyable": false, + "symbol": "DAI-BSG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1310, + "address": "0x70efdc485a10210b056ef8e0a32993bc6529995e", + "name": "Blaze Network", + "buyable": false, + "symbol": "BLZN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00010007, + "ccyValue": 0.133622, + "ethDayChange": 0.005122539172358377, + "ccyDayChange": 0.044044 + }, + "tokenlist": false + }, { + "id": 1375, + "address": "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "name": "Conceal - Wrapped CCX ", + "buyable": false, + "symbol": "wCCX", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000092040740566525, + "ccyValue": 0.122672, + "ethDayChange": -0.051243710720258748, + "ccyDayChange": -0.013907 + }, + "tokenlist": false + }, { + "id": 953, + "address": "0x2c50ba1ed5e4574c1b613b044bd1876f0b0b87a9", + "name": "Kids Cash", + "buyable": false, + "symbol": "KASH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004934, + "ccyValue": 0.065203, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1253, + "address": "0xa82f0dab7ce9da3c30443eff587332a91c5fcf7e", + "name": "0x0000000000000000000000000000000000436f6d7061737320526f7365204149", + "buyable": false, + "symbol": "MLNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2657, + "address": "0x6fa1cfb69532681bca460bd927fad360885193b3", + "name": "HDash-EC Uniswap pool token", + "buyable": false, + "symbol": "HDash-EC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 231, + "address": "0xcd7f46b8a66203b842c7b68863de7e90643e426b", + "name": "Pumpkins", + "buyable": false, + "symbol": "PMKN", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2081, + "address": "0xa4e7414fcba1af15203030c6daac630df8f16aea", + "name": "MEME CASH Token", + "buyable": false, + "symbol": "MCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00169272794984809, + "ccyValue": 2.25558, + "ethDayChange": 0.006910880220860027, + "ccyDayChange": 0.074086 + }, + "tokenlist": false + }, { + "id": 2231, + "address": "0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229", + "name": "Zenfuse Trading Platform Token", + "buyable": false, + "symbol": "ZEFU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000082567774496733, + "ccyValue": 0.110046, + "ethDayChange": 0.104193702025270698, + "ccyDayChange": 0.147651 + }, + "tokenlist": false + }, { + "id": 1060, + "address": "0xdc7d8cc3a22fe0ec69770e02931f43451b7b975e", + "name": "EWTB-ETH Uniswap pool token", + "buyable": false, + "symbol": "EWTB-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2215, + "address": "0x92ef4ffbfe0df030837b65d7fccfe1abd6549579", + "name": "Swirge", + "buyable": false, + "symbol": "SWG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000032312555695726, + "ccyValue": 0.043066, + "ethDayChange": 0.067457701183496337, + "ccyDayChange": 0.109462 + }, + "tokenlist": false + }, { + "id": 419, + "address": "0x1063ce524265d5a3a624f4914acd573dd89ce988", + "name": "Aigang", + "buyable": false, + "symbol": "AIX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000218, + "ccyValue": 0.001596, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 612, + "address": "0x145d3ec23e9874c5202c6ad231ed90178d45c5ce", + "name": "HobbyHODLr", + "buyable": false, + "symbol": "HODL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 315, + "address": "0x14409b0fc5c7f87b5dad20754fe22d29a3de8217", + "name": "PYRO Network", + "buyable": false, + "symbol": "PYRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.32927484353E-7, + "ccyValue": 0.000177, + "ethDayChange": 5.64637421765, + "ccyDayChange": 5.807692 + }, + "tokenlist": false + }, { + "id": 1091, + "address": "0x7e4d1cd8927ce41bcbfa4f32cada1a6998cb5a51", + "name": "ETH AI Limit Loss", + "buyable": false, + "symbol": "ELL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-54", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.34259348, + "ccyValue": 456.821178, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 3042, + "address": "0xfd0a40bc83c5fae4203dec7e5929b446b07d1c76", + "name": "FRAX-ETH Uniswap pool token", + "buyable": false, + "symbol": "FRAX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-35", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.058109218427026877, + "ccyValue": 77.515516, + "ethDayChange": -0.01812645199914361, + "ccyDayChange": 0.020668 + }, + "tokenlist": false + }, { + "id": 1633, + "address": "0xe7700d9cd80517ade303048f4c55f03284a095cc", + "name": "Uniswap V2 OPT-ETH", + "buyable": false, + "symbol": "OPT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3138, + "address": "0xd1c15cebfdcd16f00d91666bf64c8b66cbf5e9b5", + "name": "RealToken S 10612 Somerset Ave Detroit MI", + "buyable": false, + "symbol": "10612 Somers", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2836, + "address": "0xc011a72400e58ecd99ee497cf89e3775d4bd732f", + "name": "Synthetix Network Token (old)", + "buyable": false, + "symbol": "SNX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/snx.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#1E1A31", + "displayAddress": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "kyberAddress": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.013381675946530905, + "ccyValue": 17.843401, + "ethDayChange": 0.082802931830886986, + "ccyDayChange": 0.125942 + }, + "tokenlist": false + }, { + "id": 2769, + "address": "0xa65957b1e1f0535df74902bf1cf3a77b4a1eb54b", + "name": "orion.stargazeprotocol.com", + "buyable": false, + "symbol": "STGO", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000006031090953211, + "ccyValue": 0.008049, + "ethDayChange": -0.207817910717722466, + "ccyDayChange": -0.175307 + }, + "tokenlist": false + }, { + "id": 781, + "address": "0x51db5ad35c671a87207d88fc11d593ac0c8415bd", + "name": "Moeda Loyalty Points", + "buyable": false, + "symbol": "MDA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000458360732007021, + "ccyValue": 0.610903, + "ethDayChange": -0.058309065130102688, + "ccyDayChange": -0.021248 + }, + "tokenlist": false + }, { + "id": 1745, + "address": "0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824", + "name": "MoonToken", + "buyable": false, + "symbol": "MOON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000097672871170486, + "ccyValue": 0.130345, + "ethDayChange": -0.030102214930558961, + "ccyDayChange": 0.009362 + }, + "tokenlist": false + }, { + "id": 2170, + "address": "0x1e0693f129d05e5857a642245185ee1fca6a5096", + "name": "Uniswap V2 AXIAv3-ETH", + "buyable": false, + "symbol": "AXIAv3-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2004, + "address": "0x6ce654ac973d326f89f0685e7459542641410ed9", + "name": "HUB.finance", + "buyable": false, + "symbol": "HD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000133114943854068, + "ccyValue": 0.177377, + "ethDayChange": -0.250689874167925697, + "ccyDayChange": -0.225658 + }, + "tokenlist": false + }, { + "id": 1451, + "address": "0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4", + "name": "CREDIT", + "buyable": false, + "symbol": "CREDIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001744, + "ccyValue": 0.023232, + "ethDayChange": 0.05696969696969697, + "ccyDayChange": 0.099792 + }, + "tokenlist": false + }, { + "id": 38, + "address": "0x69b148395ce0015c13e36bffbad63f49ef874e03", + "name": "Data", + "buyable": false, + "symbol": "DTA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dta.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#74D269", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 2.653E-7, + "ccyValue": 0.000353, + "ethDayChange": 0.020384615384615385, + "ccyDayChange": 0.053731 + }, + "tokenlist": false + }, { + "id": 2762, + "address": "0xbcd4b7de6fde81025f74426d43165a5b0d790fdd", + "name": "SpiderDAO Token", + "buyable": false, + "symbol": "SPDR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000021139238604317, + "ccyValue": 0.02821, + "ethDayChange": 0.080244225600646734, + "ccyDayChange": 0.124173 + }, + "tokenlist": false + }, { + "id": 2391, + "address": "0xc4cb613947890ea300fedc509ac19f8efa0cdd14", + "name": "OLD RealToken S 10604 Somerset Ave Detroit MI", + "buyable": false, + "symbol": "10604 Somers", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 272, + "address": "0x04c7cd246330288a84d2788e8a323cc41206c2eb", + "name": "BitcoinMonkey", + "buyable": false, + "symbol": "BTCM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 2.72E-7, + "ccyValue": 0.000119, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 909, + "address": "0x598e740cda7c525080d3fcb9fa7c4e1bd0044b34", + "name": "sETH-ETH Uniswap pool token", + "buyable": false, + "symbol": "sETH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1244, + "address": "0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27", + "name": "Antiample", + "buyable": false, + "symbol": "XAMP", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001102871043112, + "ccyValue": 0.00147, + "ethDayChange": 0.004790289863074784, + "ccyDayChange": 0.044034 + }, + "tokenlist": false + }, { + "id": 2465, + "address": "0xbabc2015dab61008f5e248dd3511fd46a4103418", + "name": "Uniswap LP [WBTC/ROOT]", + "buyable": false, + "symbol": "RLP:WBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1055, + "address": "0xe6757bdc9249645f7ebcb4ce8c58d2401ee916f0", + "name": "AntiScam Private Network (ASPN)", + "buyable": false, + "symbol": "ASPN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1215, + "address": "0x58ef3abab72c6c365d4d0d8a70039752b9f32bc9", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 55, + "address": "0xd8b8e1eca89da014e67fdbc2014eaa8e171079bf", + "name": "FreldoCoinX", + "buyable": false, + "symbol": "FRECNX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003022, + "ccyValue": 0.012366, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2691, + "address": "0x09ce9714f9101fbfb7905260a1fa281cb9d7eb3d", + "name": "PFARM-ETH Uniswap pool token", + "buyable": false, + "symbol": "PFARM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 783, + "address": "0x55296f69f40ea6d20e478533c15a6b08b654e758", + "name": "XY Oracle", + "buyable": false, + "symbol": "XYO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.51193865373E-7, + "ccyValue": 0.000201, + "ethDayChange": -0.24704250312250996, + "ccyDayChange": -0.214844 + }, + "tokenlist": false + }, { + "id": 2313, + "address": "0xb124541127a0a657f056d9dd06188c4f1b0e5aab", + "name": "Aave Interest bearing Uniswap", + "buyable": false, + "symbol": "aUNI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.010954714351589297, + "ccyValue": 14.600441, + "ethDayChange": -0.068768192739583315, + "ccyDayChange": -0.033952 + }, + "tokenlist": false + }, { + "id": 526, + "address": "0x6e9de2e85a8c1188995fecea289b3f22e489bb12", + "name": "Bertbit", + "buyable": false, + "symbol": "BERT", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1258, + "address": "0x209c1808febf6c1ab7c65764bb61ad67d3923fcc", + "name": "APEcoin", + "buyable": false, + "symbol": "APE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00006931456403708, + "ccyValue": 0.092382, + "ethDayChange": -0.079365599188736884, + "ccyDayChange": -0.06174 + }, + "tokenlist": false + }, { + "id": 2874, + "address": "0x42d52847be255eacee8c3f96b3b223c0b3cc0438", + "name": "ETH-UOS Uniswap pool token", + "buyable": false, + "symbol": "ETH-UOS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1346, + "address": "0x1b4052d98fb1888c2bf3b8d3b930e0aff8a910df", + "name": "Community Token", + "buyable": false, + "symbol": "COM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0001034, + "ccyValue": 0.134425, + "ethDayChange": -0.005611820141729726, + "ccyDayChange": 0.00813 + }, + "tokenlist": false + }, { + "id": 2819, + "address": "0xa9af9cb36d7fcbb21149628bdf76cc8aa8987fa5", + "name": "kimbap.finance", + "buyable": false, + "symbol": "KIMBAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 116, + "address": "0x8dd5fbce2f6a956c3022ba3663759011dd51e73e", + "name": "TrueUSD", + "buyable": false, + "symbol": "TUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tusd.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#002868", + "displayAddress": "0x0000000000085d4780b73119b644ae5ecd22b376", + "kyberAddress": "0x0000000000085d4780b73119b644ae5ecd22b376", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000749921791672143, + "ccyValue": 0.999496, + "ethDayChange": -0.036183967271237464, + "ccyDayChange": -0.001002 + }, + "tokenlist": false + }, { + "id": 2044, + "address": "0x851cab856a91dd24d5503b74e28e77e3c144ff23", + "name": "SALTY", + "buyable": false, + "symbol": "SALTY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2860, + "address": "0x93ed140172ff226dad1f7f3650489b8daa07ae7f", + "name": "ZZZ V2", + "buyable": false, + "symbol": "ZZZV2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.01937687025074347, + "ccyValue": 25.819911, + "ethDayChange": -0.093893740011052179, + "ccyDayChange": -0.058437 + }, + "tokenlist": false + }, { + "id": 2476, + "address": "0x659236870915601d8b581e4355bd822483fe5739", + "name": "MDAO OM-ETH Staking token", + "buyable": false, + "symbol": "MDAO-OM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1532, + "address": "0x413237cf1b1ee88e551b5ad1dc117abf1004f9ea", + "name": "DMM: USDT", + "buyable": false, + "symbol": "mUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2203, + "address": "0xec0a0915a7c3443862b678b0d4721c7ab133fdcf", + "name": "Wrapped Origin Axie", + "buyable": false, + "symbol": "WOA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.7892323341954719, + "ccyValue": 1051.661527, + "ethDayChange": 0.081415222990145653, + "ccyDayChange": 0.123733 + }, + "tokenlist": false + }, { + "id": 2408, + "address": "0x61266424b904d65ceb2945a1413ac322185187d5", + "name": "YFIDapp", + "buyable": false, + "symbol": "YFID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002731763827300663, + "ccyValue": 3.640894, + "ethDayChange": 0.053015279023318287, + "ccyDayChange": 0.144935 + }, + "tokenlist": false + }, { + "id": 3021, + "address": "0x42d88c0ac0b4e758303187e9fdd4cd21bb5fa6c3", + "name": "YFCK", + "buyable": false, + "symbol": "YFCK", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2599, + "address": "0x507d84fe072fe62a5f2e1f917be8cc58bdc53ef8", + "name": "OPEN-USDT Uniswap pool token", + "buyable": false, + "symbol": "OPEN-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1555, + "address": "0x608903534527b0623fe0b0bd81a2f29bc5b50d32", + "name": "TIME-ETH Uniswap pool token", + "buyable": false, + "symbol": "TIME-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1146, + "address": "0x003a70265a3662342010823bea15dc84c6f7ed54", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1476, + "address": "0x6bff2fe249601ed0db3a87424a2e923118bb0312", + "name": "FYOOZ", + "buyable": false, + "symbol": "FYZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002492, + "ccyValue": 0.332, + "ethDayChange": -0.007961783439490446, + "ccyDayChange": 0.029138 + }, + "tokenlist": false + }, { + "id": 207, + "address": "0xa2dca1505b07e39f96ce41e875b447f46d50c6fc", + "name": "Ethercash(以太现金)", + "buyable": false, + "symbol": "ETHS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00001021, + "ccyValue": 0.00243, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2959, + "address": "0xb4467e8d621105312a914f1d42f10770c0ffe3c8", + "name": "Flash Token", + "buyable": false, + "symbol": "FLASH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00017110623563205, + "ccyValue": 0.228342, + "ethDayChange": -0.122362338800850504, + "ccyDayChange": -0.086387 + }, + "tokenlist": false + }, { + "id": 1165, + "address": "0xe1aee98495365fc179699c1bb3e761fa716bee62", + "name": "BezantToken", + "buyable": false, + "symbol": "BZNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000002591082933504, + "ccyValue": 0.003453, + "ethDayChange": -0.043880836345387454, + "ccyDayChange": -0.002888 + }, + "tokenlist": false + }, { + "id": 2982, + "address": "0x62f22a47e5d2f8b71cc44fd85863753618312f67", + "name": "ETH-ONX Uniswap pool token", + "buyable": false, + "symbol": "ETH-ONX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1900, + "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", + "name": "Origin Dollar", + "buyable": false, + "symbol": "OUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ousd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#1E313F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00075349, + "ccyValue": 1, + "ethDayChange": -0.039736449717715728, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 385, + "address": "0x493c57c4763932315a328269e1adad09653b9081", + "name": "Fulcrum DAI iToken", + "buyable": false, + "symbol": "iDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1846, + "address": "0x3f09400313e83d53366147e3ea0e4e2279d80850", + "name": "KUSH.FINANCE", + "buyable": false, + "symbol": "kSEED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000111396983143895, + "ccyValue": 0.148438, + "ethDayChange": 0.010128610300099746, + "ccyDayChange": 0.012351 + }, + "tokenlist": false + }, { + "id": 151, + "address": "0xf7b098298f7c69fc14610bf71d5e02c60792894c", + "name": "Guppy", + "buyable": false, + "symbol": "GUP", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.383E-7, + "ccyValue": 0.000321, + "ethDayChange": -0.014882182720132286, + "ccyDayChange": 0.045603 + }, + "tokenlist": false + }, { + "id": 2862, + "address": "0x7a3d5d49d64e57dbd6fbb21df7202bd3ee7a2253", + "name": "TornadoCORE", + "buyable": false, + "symbol": "TCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.05471177996366104, + "ccyValue": 72.904101, + "ethDayChange": -0.033027668624908092, + "ccyDayChange": 0.005105 + }, + "tokenlist": false + }, { + "id": 2009, + "address": "0x613e1b3fe99b6b60db949cadf766a7341dc9b933", + "name": "YFGold", + "buyable": false, + "symbol": "YGFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 785, + "address": "0x4317ea4820f8d9ea6a103553a89cb261b6ea7f2a", + "name": "Alxocity", + "buyable": false, + "symbol": "ALXO", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 825, + "address": "0x1bcca39ae82e53dede8ec5500c3bcd76cd1e0072", + "name": "ETH/BTC PA Candlestick", + "buyable": false, + "symbol": "ETHBTCPA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-35", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.40790922672, + "ccyValue": 543.914535, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2573, + "address": "0x697256caa3ccafd62bb6d3aa1c7c5671786a5fd9", + "name": "Cream ChainLink Token", + "buyable": false, + "symbol": "crLINK", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 606, + "address": "0xec0df7bbbc4618790f99ae69398e2574f5645bb5", + "name": "Ross Campbell Retweets", + "buyable": false, + "symbol": "RCR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1007, + "address": "0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d", + "name": "Cartesi Token", + "buyable": false, + "symbol": "CTSI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000459, + "ccyValue": 0.061151, + "ethDayChange": -0.054089216019181439, + "ccyDayChange": -0.01726 + }, + "tokenlist": false + }, { + "id": 361, + "address": "0x328c4c80bc7aca0834db37e6600a6c49e12da4de", + "name": "Aave Interest bearing SNX V1", + "buyable": false, + "symbol": "aSNX V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/asnx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-17", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.013381675946530905, + "ccyValue": 17.843401, + "ethDayChange": 0.082802931830886986, + "ccyDayChange": 0.125942 + }, + "tokenlist": false + }, { + "id": 2396, + "address": "0x2808e9bd573a02b1e8cca1b8653e000ad8bfcdc4", + "name": "MERIDIANDAO", + "buyable": false, + "symbol": "DAOLOCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 924, + "address": "0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260", + "name": "Quantfury Token", + "buyable": false, + "symbol": "QTF", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2250, + "address": "0x4fe83213d56308330ec302a8bd641f1d0113a4cc", + "name": "NuCypher", + "buyable": false, + "symbol": "NU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00016607150147819, + "ccyValue": 0.221623, + "ethDayChange": 0.003293431824736488, + "ccyDayChange": 0.044111 + }, + "tokenlist": false + }, { + "id": 2459, + "address": "0x7d85e23014f84e6e21d5663acd8751bef3562352", + "name": "Axion", + "buyable": false, + "symbol": "AXN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 2.26368667407E-7, + "ccyValue": 0.000302, + "ethDayChange": 0.006083805251211692, + "ccyDayChange": 0.044983 + }, + "tokenlist": false + }, { + "id": 2494, + "address": "0x5e4a41ff7f50f2cdc51e61af7d812d9c46efb6df", + "name": "USDC-AC Uniswap pool token", + "buyable": false, + "symbol": "USDC-AC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2411, + "address": "0x64ee5a075701f75359f10626bc986aae844ad9a7", + "name": "TradeStars TSX Utility Coin", + "buyable": false, + "symbol": "TSX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2768, + "address": "0xe51f24b251430a6e615f66e0d3c3a97c442ab38c", + "name": "ART Token", + "buyable": false, + "symbol": "ART", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 751, + "address": "0x076c97e1c869072ee22f8c91978c99b4bcb02591", + "name": "CommerceBlock Token", + "buyable": false, + "symbol": "CBT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000011451783184537, + "ccyValue": 0.015263, + "ethDayChange": -0.0378656500158451, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1904, + "address": "0xee9a6009b926645d33e10ee5577e9c8d3c95c165", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1102, + "address": "0xa645264c5603e96c3b0b078cdab68733794b0a71", + "name": "Mysterium", + "buyable": false, + "symbol": "MYST", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000327288736037936, + "ccyValue": 0.43621, + "ethDayChange": 0.786287891062014159, + "ccyDayChange": 0.856584 + }, + "tokenlist": false + }, { + "id": 2632, + "address": "0x64fb96d0395f6bf105f35233911e3df2c5bf4ce8", + "name": "Elastic Bitcoin", + "buyable": false, + "symbol": "XBT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1785, + "address": "0x8927616110cf23c4e87dc98614eb9fbaae95216c", + "name": "MOON-ETH Uniswap pool token", + "buyable": false, + "symbol": "MOON-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2859, + "address": "0xbc35d7753f0db8fb9c788b7d7d284cdd78a4ede3", + "name": "NAP V2", + "buyable": false, + "symbol": "NAPV2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 910, + "address": "0xba65016890709dbc9491ca7bf5de395b8441dc8b", + "name": "RSR-ETH Uniswap pool token", + "buyable": false, + "symbol": "RSR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 574, + "address": "0x7c19252abedce09724bfc3549925d3ea12770156", + "name": "CLR 5 Test Token", + "buyable": false, + "symbol": "CLR5", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3107, + "address": "0xde68ad8502874a7d5dd1758f7b0a7831f142b78a", + "name": "ETH-DIP Uniswap pool token", + "buyable": false, + "symbol": "ETH-DIP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3045, + "address": "0x97c4adc5d28a86f9470c70dd91dc6cc2f20d2d4d", + "name": "FRAX-USDC Uniswap pool token", + "buyable": false, + "symbol": "FRAX-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-32", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1546.13577774362893964, + "ccyValue": 2063114.913063, + "ethDayChange": -0.037156159046659195, + "ccyDayChange": 0.0013 + }, + "tokenlist": false + }, { + "id": 2409, + "address": "0x250f8d88173e0d9b692a9742f54e87e01a9fa54e", + "name": "Yield Dai - 2021-06-30-Pool", + "buyable": false, + "symbol": "fyDaiLP21Jun", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2975, + "address": "0xd83c569268930fadad4cde6d0cb64450fef32b65", + "name": "Invictus Capital Token", + "buyable": false, + "symbol": "ICAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00358790233212046, + "ccyValue": 4.788071, + "ethDayChange": -0.162939829942221415, + "ccyDayChange": -0.128629 + }, + "tokenlist": false + }, { + "id": 1852, + "address": "0xd04785c4d8195e4a54d9dec3a9043872875ae9e2", + "name": "RottenToken", + "buyable": false, + "symbol": "ROT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000002050090624881, + "ccyValue": 0.002736, + "ethDayChange": -0.040165087157115461, + "ccyDayChange": -0.001095 + }, + "tokenlist": false + }, { + "id": 3070, + "address": "0x7e32c8727cc19dd59a7a4d01b95ae1cbfc8f4c77", + "name": "Aqua Token", + "buyable": false, + "symbol": "AQUA", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00854407, + "ccyValue": 11.5, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 175, + "address": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "name": "HEX", + "buyable": false, + "symbol": "HEX", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hex.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#DB2D72", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000602, + "ccyValue": 0.008025, + "ethDayChange": -0.013114754098360656, + "ccyDayChange": 0.024119 + }, + "tokenlist": false + }, { + "id": 2334, + "address": "0xc41c723b319dc0d33012fdbd060aad4368d49ba4", + "name": "BlackHole", + "buyable": false, + "symbol": "HOLE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2246, + "address": "0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4", + "name": "Compound Collateral", + "buyable": false, + "symbol": "cCOMP", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/ccomp.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00398391, + "ccyValue": 5.29, + "ethDayChange": 0.1135145257673753, + "ccyDayChange": 0.157549 + }, + "tokenlist": false + }, { + "id": 3023, + "address": "0x790baf0c914898c62163a61f150637d4bd180697", + "name": "NIRVANA", + "buyable": false, + "symbol": "VANA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0005972, + "ccyValue": 0.801158, + "ethDayChange": 0.023707081269177366, + "ccyDayChange": 0.074051 + }, + "tokenlist": false + }, { + "id": 737, + "address": "0x13c2fab6354d3790d8ece4f0f1a3280b4a25ad96", + "name": "PHI Token", + "buyable": false, + "symbol": "PHI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002411, + "ccyValue": 0.014212, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2683, + "address": "0x0222be1f1b8413b2d7d76ebfc9e0285c1300692f", + "name": "Glox Finance", + "buyable": false, + "symbol": "GLOX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.11282307522048672, + "ccyValue": 150.370567, + "ethDayChange": -0.110766912914779475, + "ccyDayChange": -0.071844 + }, + "tokenlist": false + }, { + "id": 830, + "address": "0xd321ca7cd7a233483b8cd5a11a89e9337e70df84", + "name": "VI", + "buyable": false, + "symbol": "VI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00004855922718425, + "ccyValue": 0.06472, + "ethDayChange": -0.060749957751450677, + "ccyDayChange": -0.028855 + }, + "tokenlist": false + }, { + "id": 1880, + "address": "0xa93d5cfaa41193b13321c035b4bdd2b534172762", + "name": "DREAM", + "buyable": false, + "symbol": "DREAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.074E-7, + "ccyValue": 0.000982, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 776, + "address": "0xf37ed742819ec006b0802df5c2b0e9132f22c625", + "name": "GEN-ETH Uniswap pool token", + "buyable": false, + "symbol": "GEN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 24, + "address": "0x20649d97b1393105cf92a5083fd2aff7c99ebe56", + "name": "BTC Range Bound Low Volatility", + "buyable": false, + "symbol": "BTCLOVOL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/btclovol.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.39501211, + "ccyValue": 224.73, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 829, + "address": "0x7e3953bcf520d0a0a6376e032505482a27480e69", + "name": "Goy Coin", + "buyable": false, + "symbol": "GOY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1717, + "address": "0x4ee15f44c6f0d8d1136c83efd2e8e4ac768954c6", + "name": "Cream yyCRV", + "buyable": false, + "symbol": "crYYCRV", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1325, + "address": "0xd9f7deaeb3450cd698fd6d45a7b05a18d84bb1e1", + "name": "NEXE Token", + "buyable": false, + "symbol": "NEXE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000936, + "ccyValue": 0.010032, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1956, + "address": "0x9446625e3090d155fd7c74752edf4e87cf44de05", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1595, + "address": "0xf416e09b64873d657b5b247bc2ffa3550aef0ddd", + "name": "SpiderX", + "buyable": false, + "symbol": "SPIDX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2823, + "address": "0xa0afaa285ce85974c3c881256cb7f225e3a1178a", + "name": "Wrapped CRES", + "buyable": false, + "symbol": "wCRES", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.005988698820051096, + "ccyValue": 7.991945, + "ethDayChange": 0.02356303604275013, + "ccyDayChange": 0.065518 + }, + "tokenlist": false + }, { + "id": 3044, + "address": "0x7924a818013f39cf800f5589ff1f1f0def54f31f", + "name": "LON-ETH Uniswap pool token", + "buyable": false, + "symbol": "LON-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-39", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.150963118933405581, + "ccyValue": 201.378999, + "ethDayChange": 0.173489042390554152, + "ccyDayChange": 0.221694 + }, + "tokenlist": false + }, { + "id": 2734, + "address": "0xeda6efe5556e134ef52f2f858aa1e81c84cda84b", + "name": "Capital.finance", + "buyable": false, + "symbol": "CAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00525501, + "ccyValue": 7, + "ethDayChange": 0.341556253350693115, + "ccyDayChange": 0.39165 + }, + "tokenlist": false + }, { + "id": 1353, + "address": "0xb339fca531367067e98d7c4f9303ffeadff7b881", + "name": "Aludra Network", + "buyable": false, + "symbol": "ALD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.842E-7, + "ccyValue": 0.000846, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 195, + "address": "0x5f5b176553e51171826d1a62e540bc30422c7717", + "name": "PLA Token", + "buyable": false, + "symbol": "PLA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2619, + "address": "0x6c5024cd4f8a59110119c56f8933403a539555eb", + "name": "Aave interest bearing SUSD", + "buyable": false, + "symbol": "aSUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/asusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-18", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000752840662136439, + "ccyValue": 1.003853, + "ethDayChange": -0.043606894855490986, + "ccyDayChange": -0.007387 + }, + "tokenlist": false + }, { + "id": 854, + "address": "0xa680e7b9fb6b2644383bd75b2284392ee05e0a1a", + "name": "PEAK-ETH Uniswap pool token", + "buyable": false, + "symbol": "PEAK-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 699, + "address": "0x058042f7d66a1eb91552839f391bfbe930ddc137", + "name": "Maker-777", + "buyable": false, + "symbol": "MKR777", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1750, + "address": "0xd06527d5e56a3495252a528c4987003b712860ee", + "name": "Cream Ether", + "buyable": false, + "symbol": "crETH", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2385, + "address": "0xc6bf2a2a43ca360bb0ec6770f57f77cdde64bb3f", + "name": "UnityDAO", + "buyable": false, + "symbol": "UTY", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.028462577951512635, + "ccyValue": 37.926726, + "ethDayChange": 1.188671818609172611, + "ccyDayChange": 1.274318 + }, + "tokenlist": false + }, { + "id": 2967, + "address": "0x87da823b6fc8eb8575a235a824690fda94674c88", + "name": "MIR-UST Uniswap pool token", + "buyable": false, + "symbol": "MIR-UST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2797, + "address": "0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80", + "name": "Phantasma Stake", + "buyable": false, + "symbol": "SOUL", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000918, + "ccyValue": 0.122014, + "ethDayChange": 0.116516662612503041, + "ccyDayChange": 0.159267 + }, + "tokenlist": false + }, { + "id": 695, + "address": "0x6454f4a03169691583e66cc12c9e8c319a9d6253", + "name": "Aave Interest bearing DAI-777", + "buyable": false, + "symbol": "aDAI777", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2238, + "address": "0x12d102f06da35cc0111eb58017fd2cd28537d0e1", + "name": "Vox.Finance", + "buyable": false, + "symbol": "VOX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.16247605, + "ccyValue": 216.43, + "ethDayChange": 0.411990609644263882, + "ccyDayChange": 0.466761 + }, + "tokenlist": false + }, { + "id": 689, + "address": "0xbb1f24c0c1554b9990222f036b0aad6ee4caec29", + "name": "CryptoSoul", + "buyable": false, + "symbol": "SOUL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.317E-7, + "ccyValue": 0.000433, + "ethDayChange": 0.03883495145631068, + "ccyDayChange": 0.05868 + }, + "tokenlist": false + }, { + "id": 2539, + "address": "0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4", + "name": "Sora Validator Token", + "buyable": false, + "symbol": "VAL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000762963855589355, + "ccyValue": 1.018179, + "ethDayChange": -0.004025418499853459, + "ccyDayChange": 0.036496 + }, + "tokenlist": false + }, { + "id": 866, + "address": "0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21", + "name": "QQQ Token", + "buyable": false, + "symbol": "QQQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00001627, + "ccyValue": 0.02167, + "ethDayChange": -0.120064899945916712, + "ccyDayChange": -0.087195 + }, + "tokenlist": false + }, { + "id": 1601, + "address": "0xed641d0a5a87d34167990a457c80023d4343dde8", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1743, + "address": "0xddf9b7a31b32ebaf5c064c80900046c9e5b7c65f", + "name": "CREAM-ETH Uniswap pool token", + "buyable": false, + "symbol": "CREAM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1868, + "address": "0x52798667bbb471e45b3ada5eac673610c8a0a9b2", + "name": "QNT-DAI Uniswap pool token", + "buyable": false, + "symbol": "QNT-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1626, + "address": "0xd0df3b1cf729a29b7404c40d61c750008e631ba7", + "name": "Rug", + "buyable": false, + "symbol": "RUG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00045848, + "ccyValue": 0.155383, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2435, + "address": "0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4", + "name": "CyberFi Token", + "buyable": false, + "symbol": "CFi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00438887495093354, + "ccyValue": 5.849491, + "ethDayChange": -0.147661996405276027, + "ccyDayChange": -0.113859 + }, + "tokenlist": false + }, { + "id": 617, + "address": "0xc7d79021cd127a2f35b1e26fe3c4aad67f5c28b8", + "name": "100 Waves", + "buyable": false, + "symbol": "100W", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-7", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.41793336, + "ccyValue": 557.28092, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 520, + "address": "0x871baed4088b863fd6407159f3672d70cd34837d", + "name": " 3X Long Ethereum Token", + "buyable": false, + "symbol": "ETHBULL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.909049, + "ccyValue": 3875.06, + "ethDayChange": 0.065585714285714286, + "ccyDayChange": 0.10432 + }, + "tokenlist": false + }, { + "id": 2242, + "address": "0x8acb43736a6a93ed5d14eadba47bd904ec824409", + "name": "Uniswap Pro", + "buyable": false, + "symbol": "UNIPRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2267, + "address": "0x47c0ad2ae6c0ed4bcf7bc5b380d7205e89436e84", + "name": "HEGICTokenIOU", + "buyable": false, + "symbol": "rHEGIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000203452559351177, + "ccyValue": 0.271508, + "ethDayChange": 0.077080882685697775, + "ccyDayChange": 0.12123 + }, + "tokenlist": false + }, { + "id": 581, + "address": "0x5dcd2007ab86a40b4eb4cd6fc47f09f40a7682ca", + "name": "Marijuana Token", + "buyable": false, + "symbol": "THCT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2875, + "address": "0x168e39f96a653ce0a456560687241b0b2936e5ff", + "name": "2based.finance", + "buyable": false, + "symbol": "2BASED", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0009403, + "ccyValue": 1.253, + "ethDayChange": -0.043088007815680208, + "ccyDayChange": 0.139091 + }, + "tokenlist": false + }, { + "id": 2699, + "address": "0xb5fe099475d3030dde498c3bb6f3854f762a48ad", + "name": "Finiko", + "buyable": false, + "symbol": "FNK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/fnk.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.007655659281098451, + "ccyValue": 10.216511, + "ethDayChange": -0.040448624644923085, + "ccyDayChange": -0.001117 + }, + "tokenlist": false + }, { + "id": 3082, + "address": "0x0e3cc2c4fb9252d17d07c67135e48536071735d9", + "name": "ARTH", + "buyable": false, + "symbol": "ARTH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00064386, + "ccyValue": 0.855877, + "ethDayChange": -0.15538298067715234, + "ccyDayChange": -0.120726 + }, + "tokenlist": false + }, { + "id": 1438, + "address": "0xaad22f5543fcdaa694b68f94be177b561836ae57", + "name": "sUSD-BASED Uniswap pool token", + "buyable": false, + "symbol": "sUSD-BASED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2909, + "address": "0x003e0af2916e598fa5ea5cb2da4edfda9aed9fde", + "name": "Basis Dollar", + "buyable": false, + "symbol": "BSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000241026841104472, + "ccyValue": 0.321171, + "ethDayChange": 0.231550973912789331, + "ccyDayChange": 0.275202 + }, + "tokenlist": false + }, { + "id": 2173, + "address": "0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8", + "name": "QuiverX", + "buyable": false, + "symbol": "QRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00001549234518545, + "ccyValue": 0.020644, + "ethDayChange": -0.059359733731026108, + "ccyDayChange": -0.020776 + }, + "tokenlist": false + }, { + "id": 1002, + "address": "0x8cb40391a52412127232747294f737b7882fc873", + "name": "1ClickToken", + "buyable": false, + "symbol": "1CT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1641, + "address": "0x2c67c16c1b3b896bd45c088d00530ae195566243", + "name": "GUM Finance", + "buyable": false, + "symbol": "GUFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1049, + "address": "0x5e37910cfb8de1b14ec4e4bac0bec27c35dc07d5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-26", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.280157166910239058, + "ccyValue": 373.378301, + "ethDayChange": 0.004123516954190916, + "ccyDayChange": 0.042493 + }, + "tokenlist": false + }, { + "id": 1811, + "address": "0xcd4292701995f4707ae63fb1a48d80db2c5f04d4", + "name": "Bee2Token", + "buyable": false, + "symbol": "BEE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1080, + "address": "0xac1565e473f69fada09661a6b4103fbbf801ceee", + "name": "Inverse ETH 50 SMA Crossover", + "buyable": false, + "symbol": "iETH50SMACO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-robo-20", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.096333183899862986, + "ccyValue": 128.530795, + "ethDayChange": -0.038953740003691649, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 1110, + "address": "0x7d2f4bcb767eb190aed0f10713fe4d9c07079ee8", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1335, + "address": "0x469eda64aed3a3ad6f868c44564291aa415cb1d9", + "name": "FLUX", + "buyable": false, + "symbol": "FLUX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0003701, + "ccyValue": 0.49686, + "ethDayChange": -0.11206544948537703, + "ccyDayChange": -0.073696 + }, + "tokenlist": false + }, { + "id": 2286, + "address": "0xd291e7a03283640fdc51b121ac401383a46cc623", + "name": "Rari Governance Token", + "buyable": false, + "symbol": "RGT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00127656, + "ccyValue": 1.7, + "ethDayChange": -0.11879335933455286, + "ccyDayChange": -0.081081 + }, + "tokenlist": false + }, { + "id": 1696, + "address": "0x7a545ed3863221a974f327199ac22f7f12535f11", + "name": "Baguette Token", + "buyable": false, + "symbol": "BGTT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000007397959652518, + "ccyValue": 0.00986, + "ethDayChange": -0.059979713784243964, + "ccyDayChange": -0.019296 + }, + "tokenlist": false + }, { + "id": 1014, + "address": "0xd6054455ca2e1aef02178e0462d9ab953bea4e23", + "name": "DATA-ETH Uniswap pool token", + "buyable": false, + "symbol": "DATA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2003, + "address": "0xbd356a39bff2cada8e9248532dd879147221cf76", + "name": "WOM Token", + "buyable": false, + "symbol": "WOM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00012047, + "ccyValue": 0.160147, + "ethDayChange": -0.058776318438449325, + "ccyDayChange": -0.024267 + }, + "tokenlist": false + }, { + "id": 2228, + "address": "0xa866f0198208eb07c83081d5136be7f775c2399e", + "name": "Kore", + "buyable": false, + "symbol": "KORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 1E-8, + "ccyValue": 0.000017, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2383, + "address": "0x6ddc12ef2940137f89af63f05196a4c9d4883ee4", + "name": "HEGIC-zHEGIC Uniswap pool token", + "buyable": false, + "symbol": "HEGIC-zHEGIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 709, + "address": "0x41ab1b6fcbb2fa9dced81acbdec13ea6315f2bf2", + "name": "XinFin XDCE", + "buyable": false, + "symbol": "XDCE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00000462518595578, + "ccyValue": 0.006164, + "ethDayChange": -0.05323665147328245, + "ccyDayChange": -0.016121 + }, + "tokenlist": false + }, { + "id": 792, + "address": "0x0bf54992649c19bd8db4080078a32383827352f3", + "name": "Asian ETH Sentiment Set", + "buyable": false, + "symbol": "ASETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-46", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.081160361004511768, + "ccyValue": 108.168815, + "ethDayChange": -0.044921021720000004, + "ccyDayChange": -0.002943 + }, + "tokenlist": false + }, { + "id": 3001, + "address": "0xac826952bc30504359a099c3a486d44e97415c77", + "name": "kUSDCoin", + "buyable": false, + "symbol": "kUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2644, + "address": "0xde5b7ff5b10cc5f8c95a2e2b643e3abf5179c987", + "name": "BASE-ETH Uniswap pool token", + "buyable": false, + "symbol": "BASE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1837, + "address": "0x1ad606adde97c0c28bd6ac85554176bc55783c01", + "name": "moonday.finance", + "buyable": false, + "symbol": "MOONDAY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.029700000000000004, + "ccyValue": 39.584153, + "ethDayChange": 0.151162790697674574, + "ccyDayChange": 0.193372 + }, + "tokenlist": false + }, { + "id": 806, + "address": "0xe9eace1313913888c364d8504ffc3b8d991c67c6", + "name": "OLD RealToken 272 NE 42nd CT Deerfield Beach FL", + "buyable": false, + "symbol": "272 NE 42nd ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1821, + "address": "0x34d0448a79f853d6e1f7ac117368c87bb7beea6b", + "name": "YFKA-TOB Uniswap pool token", + "buyable": false, + "symbol": "YFKA-TOB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 550, + "address": "0x4c6f4d435a939fb85dd946bae4eec9d52587f451", + "name": "With ☕️", + "buyable": false, + "symbol": "With ☕️", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2939, + "address": "0x7f0ad87b99ba16e6e651120c2e230cf6928c3d15", + "name": "MARK-USDC Uniswap pool token", + "buyable": false, + "symbol": "MARK-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2812, + "address": "0x2e81ec0b8b4022fac83a21b2f2b4b8f5ed744d70", + "name": "ETH-GRT Uniswap pool token", + "buyable": false, + "symbol": "ETH-GRT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2843, + "address": "0xfe2786d7d1ccab8b015f6ef7392f67d778f8d8d7", + "name": "Parsiq Token", + "buyable": false, + "symbol": "PRQ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/prq.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#005CC7", + "displayAddress": "0x362bc847a3a9637d3af6624eec853618a43ed7d2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001009217215949739, + "ccyValue": 1.345084, + "ethDayChange": 0.144743385340160615, + "ccyDayChange": 0.19034 + }, + "tokenlist": false + }, { + "id": 1185, + "address": "0xf2f1c19f304e84bc3d2e1903979a72d42164d7e6", + "name": "Grid Trade", + "buyable": false, + "symbol": "GTRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1999, + "address": "0x7afac1d878c66a47263dce57976c371ae2e74882", + "name": "YFMOONBEAM", + "buyable": false, + "symbol": "YFMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002287664730226347, + "ccyValue": 3.048999, + "ethDayChange": -0.006641569881219387, + "ccyDayChange": 0.030067 + }, + "tokenlist": false + }, { + "id": 2853, + "address": "0xfdc4a3fc36df16a78edcaf1b837d3acaaedb2cb4", + "name": "ScifiToken", + "buyable": false, + "symbol": "SCIFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.001436651772512259, + "ccyValue": 1.917218, + "ethDayChange": -0.026753984147942026, + "ccyDayChange": 0.013139 + }, + "tokenlist": false + }, { + "id": 140, + "address": "0xced4e93198734ddaff8492d525bd258d49eb388e", + "name": "Eidoo Token", + "buyable": false, + "symbol": "EDO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0009447, + "ccyValue": 0.6144, + "ethDayChange": -0.451465082358624662, + "ccyDayChange": -0.72233 + }, + "tokenlist": false + }, { + "id": 917, + "address": "0xf53e6deda250bc5fa12793ac49c257edf4efdbc2", + "name": "Squeezer", + "buyable": false, + "symbol": "SQR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.08E-7, + "ccyValue": 0.000706, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1243, + "address": "0x009e864923b49263c7f10d19b7f8ab7a9a5aad33", + "name": "Knoxstertoken", + "buyable": false, + "symbol": "FKX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000013, + "ccyValue": 0.001732, + "ethDayChange": 0.700235417211613916, + "ccyDayChange": 0.758376 + }, + "tokenlist": false + }, { + "id": 2484, + "address": "0x5d8d9f5b96f4438195be9b99eee6118ed4304286", + "name": "Cover Protocol (OLD)", + "buyable": false, + "symbol": "COVER - OLD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cover.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#333333", + "description": "Migrate to the new COVER token at https://app.coverprotocol.com. Choose Connect > WalletConnect and scan the QR with Argent.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00019131, + "ccyValue": 0.254307, + "ethDayChange": -0.555227489363680748, + "ccyDayChange": -0.517085 + }, + "tokenlist": false + }, { + "id": 2288, + "address": "0x4f4f0ef7978737ce928bff395529161b44e27ad9", + "name": "YfDFI.finance", + "buyable": false, + "symbol": "YFD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.11304217, + "ccyValue": 150.58, + "ethDayChange": -0.41351404958128851, + "ccyDayChange": -0.388408 + }, + "tokenlist": false + }, { + "id": 289, + "address": "0x87210f1d3422ba75b6c40c63c78d79324dabcd55", + "name": "EOS TRUST", + "buyable": false, + "symbol": "EOST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1E-8, + "ccyValue": 0.000012, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1656, + "address": "0x6a3d23fa07c455f88d70c29d230467c407a3964b", + "name": "ETH-RMPL Uniswap pool token", + "buyable": false, + "symbol": "ETH-RMPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-27", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 940.229459677181779603, + "ccyValue": 1251145.457402, + "ethDayChange": 0.294155269864776838, + "ccyDayChange": 0.341533 + }, + "tokenlist": false + }, { + "id": 2885, + "address": "0xf6011d4e55453614279b41a309fbf61bebc324de", + "name": "WrappedHBAR", + "buyable": false, + "symbol": "WHBAR", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1201, + "address": "0x2b1eb94d2aed2dea74d85a6bac5f44df03b8dedb", + "name": "BDAO Network", + "buyable": false, + "symbol": "BDAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1511, + "address": "0x433d0c33288b985cf232a7e312bcfafd372460a8", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2668, + "address": "0xa2f96ef6ed3d67a0352e659b1e980f13e098619f", + "name": "Random Number Generator", + "buyable": false, + "symbol": "RNG", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3114, + "address": "0x9a99f283e1f6c3b7f24901995624ef7b78e94471", + "name": "RealToken S 18466 Fielding St Detroit MI", + "buyable": false, + "symbol": "18466 Fieldi", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2182, + "address": "0xdbb13d3f745a64995ca76069f2cebf9a2d7b18c0", + "name": "OLD RealToken S 1000 Florida ave Akron OH", + "buyable": false, + "symbol": "S 1000 Flori", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2300, + "address": "0x9b574599822642b04d0ff7e5776df3a06f4540ba", + "name": "HODL", + "buyable": false, + "symbol": "HODL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1436, + "address": "0x40d52577830e01aaefa80659aa90ee8b34685f4e", + "name": "Bilaxy Token", + "buyable": false, + "symbol": "BIA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000003434673583394, + "ccyValue": 0.004578, + "ethDayChange": 0.164296129964067797, + "ccyDayChange": 0.212394 + }, + "tokenlist": false + }, { + "id": 1767, + "address": "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739", + "name": "BUILD Finance", + "buyable": false, + "symbol": "BUILD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02197734, + "ccyValue": 29.21, + "ethDayChange": -0.099622926587854336, + "ccyDayChange": -0.063182 + }, + "tokenlist": false + }, { + "id": 580, + "address": "0x168296bb09e24a88805cb9c33356536b980d3fc5", + "name": "RHOC", + "buyable": false, + "symbol": "RHOC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001326, + "ccyValue": 0.1767, + "ethDayChange": 0, + "ccyDayChange": 0.036972 + }, + "tokenlist": false + }, { + "id": 2899, + "address": "0x38a94c4f4d9400643f0fb97198f90c93986f018e", + "name": "ETH-DDIM Uniswap pool token", + "buyable": false, + "symbol": "ETH-DDIM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2432, + "address": "0xddb3422497e61e13543bea06989c0789117555c5", + "name": "COTI Token", + "buyable": false, + "symbol": "COTI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000047237453415713, + "ccyValue": 0.063039, + "ethDayChange": -0.003382981931049349, + "ccyDayChange": 0.037474 + }, + "tokenlist": false + }, { + "id": 997, + "address": "0x1f8f123bf24849443a56ed9fc42b9265b7f3a39a", + "name": "UniTopia", + "buyable": false, + "symbol": "uTOPIA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00168598, + "ccyValue": 0.585532, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2928, + "address": "0xb5afccef680ee1d9bca47fde712007020197591e", + "name": "Aqua Token", + "buyable": false, + "symbol": "AQUA", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00854407, + "ccyValue": 11.5, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2321, + "address": "0x705c71b262c511b66baa4791cc2be61b971bd784", + "name": "Bankless Season 0", + "buyable": false, + "symbol": "BAP0", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 70, + "address": "0xd29f0b5b3f50b07fe9a9511f7d86f4f4bac3f8c4", + "name": "Liquidity Network", + "buyable": false, + "symbol": "LQD", + "decimals": 18, + "iconUrl": "https://www.cryptocompare.com/media/34836015/lqdn.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000105619, + "ccyValue": 0.014043, + "ethDayChange": -0.081014530583833638, + "ccyDayChange": -0.048964 + }, + "tokenlist": false + }, { + "id": 2561, + "address": "0x970e8baca76e2669ce734e02fd00639aa52e5ab1", + "name": "DIV Token 2", + "buyable": false, + "symbol": "DIV2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00009082563249763, + "ccyValue": 0.121207, + "ethDayChange": -0.079233353863997862, + "ccyDayChange": -0.041493 + }, + "tokenlist": false + }, { + "id": 1910, + "address": "0xb20bd5d04be54f870d5c0d3ca85d82b34b836405", + "name": "DAI-USDT Uniswap pool token", + "buyable": false, + "symbol": "DAI-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-37", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1643.986334224599393712, + "ccyValue": 2193906.950839, + "ethDayChange": -0.037652725567671262, + "ccyDayChange": 0.000786 + }, + "tokenlist": false + }, { + "id": 2082, + "address": "0x4475ad655d6fa73db81cc52a5cf4585faa34a1dd", + "name": "OLD RealToken S 13991 Warwick st Detroit MI", + "buyable": false, + "symbol": "13991 Warwic", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 240, + "address": "0x1234567461d3f8db7496581774bd869c83d51c93", + "name": "BitClave", + "buyable": false, + "symbol": "CAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.94922729661E-7, + "ccyValue": 0.00026, + "ethDayChange": -0.082284700277777778, + "ccyDayChange": -0.003831 + }, + "tokenlist": false + }, { + "id": 3052, + "address": "0x69a95185ee2a045cdc4bcd1b1df10710395e4e23", + "name": "$Poolz Finance", + "buyable": false, + "symbol": "POOLZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.012234939551591382, + "ccyValue": 16.303203, + "ethDayChange": -0.132503520431054849, + "ccyDayChange": -0.097957 + }, + "tokenlist": false + }, { + "id": 947, + "address": "0xb4058411967d5046f3510943103805be61f0600e", + "name": "STONK", + "buyable": false, + "symbol": "STONK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.609E-7, + "ccyValue": 0.001011, + "ethDayChange": -0.043254117942914623, + "ccyDayChange": -0.003941 + }, + "tokenlist": false + }, { + "id": 3086, + "address": "0x2b4200a8d373d484993c37d63ee14aee0096cd12", + "name": "USDFreeLiquidity", + "buyable": false, + "symbol": "USDFL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00072335, + "ccyValue": 0.961365, + "ethDayChange": 0.029349043640973865, + "ccyDayChange": 0.067158 + }, + "tokenlist": false + }, { + "id": 857, + "address": "0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0", + "name": "Kryll", + "buyable": false, + "symbol": "KRL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00017632, + "ccyValue": 0.234387, + "ethDayChange": 0.005589141097296681, + "ccyDayChange": 0.046875 + }, + "tokenlist": false + }, { + "id": 1004, + "address": "0x834fb8276b4e8a24010e2108fdd7f8417c8922bd", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-21", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.001057450984120998, + "ccyValue": 1.409437, + "ethDayChange": -0.026297806031093718, + "ccyDayChange": 0.011859 + }, + "tokenlist": false + }, { + "id": 2446, + "address": "0xf62dc91f8f43b241840228b3a857ff9d6522660c", + "name": "DarkPool", + "buyable": false, + "symbol": "pDARK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3125, + "address": "0x220b71671b649c03714da9c621285943f3cbcdc6", + "name": "TosDis", + "buyable": false, + "symbol": "DIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.066343723525135397, + "ccyValue": 88.53599, + "ethDayChange": -0.160617601028102636, + "ccyDayChange": -0.125886 + }, + "tokenlist": false + }, { + "id": 1992, + "address": "0x3fa4b0b3053413684d0b658689ede7907bb4d69d", + "name": "SashimiSwap", + "buyable": false, + "symbol": "SALP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 615, + "address": "0xc25a3a3b969415c80451098fa907ec722572917f", + "name": "Curve.fi DAI/USDC/USDT/sUSD", + "buyable": false, + "symbol": "crvPlain3and", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00077128, + "ccyValue": 1.03, + "ethDayChange": -0.040398133748055988, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2254, + "address": "0x1706c33b9a5b12aeb85b862215378dee9480eb95", + "name": "BananoDOS", + "buyable": false, + "symbol": "yBAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.06877428, + "ccyValue": 96.91, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2569, + "address": "0x3391bc034f2935ef0e1e41619445f998b2680d35", + "name": "IdleUSDC v4 [Risk adjusted]", + "buyable": false, + "symbol": "idleUSDCSafe", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3089, + "address": "0xb5d30c28f87acf675ed5b9f343e5fff39ec9942c", + "name": "RealToken S 10024-28 Appoline St Detroit MI", + "buyable": false, + "symbol": "10024-28 App", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1723, + "address": "0x5a82503652d05b21780f33178fdf53d31c29b916", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1407, + "address": "0x5ca381bbfb58f0092df149bd3d243b08b9a8386e", + "name": "MXCToken", + "buyable": false, + "symbol": "MXC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000010353435104919, + "ccyValue": 0.013796, + "ethDayChange": -0.046645017963259669, + "ccyDayChange": -0.005837 + }, + "tokenlist": false + }, { + "id": 873, + "address": "0xcd0033b0a30bc0686dcba72d62d4e0d44790a960", + "name": "JRT-USDC Uniswap pool token", + "buyable": false, + "symbol": "JRT-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2878, + "address": "0x68e0a48d3bff6633a31d1d100b70f93c3859218b", + "name": "Blaze DeFi", + "buyable": false, + "symbol": "BNFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00021621, + "ccyValue": 0.296763, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2811, + "address": "0xe46935ae80e05cdebd4a4008b6ccaa36d2845370", + "name": "OM-ETH Uniswap pool token", + "buyable": false, + "symbol": "OM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1970, + "address": "0x61bc1f530ac6193d73af1e1a6a14cb44b9c3f915", + "name": "Pajama.Finance", + "buyable": false, + "symbol": "PJM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002720996071600727, + "ccyValue": 3.626543, + "ethDayChange": -0.014781531163969049, + "ccyDayChange": 0.204832 + }, + "tokenlist": false + }, { + "id": 1665, + "address": "0x35101c731b1548b5e48bb23f99edbc2f5c341935", + "name": "BlackHoleSwap-Compound DAI/USDC v1", + "buyable": false, + "symbol": "BHSc$", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00082107, + "ccyValue": 1.1, + "ethDayChange": 0.057466675252752914, + "ccyDayChange": 0.089109 + }, + "tokenlist": false + }, { + "id": 172, + "address": "0x999531424c5965a9871aa37f14867e805ee3a187", + "name": "CatalogAssetsForTVMusicFilm", + "buyable": false, + "symbol": "CATMF", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1030, + "address": "0x2e59005c5c0f0a4d77cca82653d48b46322ee5cd", + "name": "Synth sXTZ", + "buyable": false, + "symbol": "sXTZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2006, + "address": "0xe85d69d5e7b91b1a0d2e93a3678315e6915197b2", + "name": "JBG", + "buyable": false, + "symbol": "JBG", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3118, + "address": "0x0b94cd8499a950cfd31c04247c293f2f95093f9b", + "name": "Insured.Finance", + "buyable": false, + "symbol": "INFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1831, + "address": "0x53378825d95281737914a8a2ac0e5a9304ae5ed7", + "name": "SAMURAI", + "buyable": false, + "symbol": "SAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.003089592018561555, + "ccyValue": 4.116918, + "ethDayChange": 0.011468429747371695, + "ccyDayChange": 0.051748 + }, + "tokenlist": false + }, { + "id": 3018, + "address": "0x7b890092f81b337ed68fba266afc7b4c3710a55b", + "name": "NFTX-ETH Uniswap pool token", + "buyable": false, + "symbol": "NFTX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2500, + "address": "0x595643d83b35df38e29058976c04000acfa31570", + "name": "OBR", + "buyable": false, + "symbol": "OBR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.05439162816750539, + "ccyValue": 72.477495, + "ethDayChange": -0.002612161651844315, + "ccyDayChange": 0.040895 + }, + "tokenlist": false + }, { + "id": 1197, + "address": "0x701c244b988a513c945973defa05de933b23fe1d", + "name": "openANX Token", + "buyable": false, + "symbol": "OAX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000090156248058642, + "ccyValue": 0.120134, + "ethDayChange": -0.025443216315619933, + "ccyDayChange": 0.00975 + }, + "tokenlist": false + }, { + "id": 1376, + "address": "0x0dacb47e00aed6abade32c7b398e029393e0d848", + "name": "SOCKS-ETH Uniswap pool token", + "buyable": false, + "symbol": "SOCKS-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 230, + "address": "0x77513f9046641de7bc3801b05e37af259b2852f2", + "name": "JIL Coin", + "buyable": false, + "symbol": "J20", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2966, + "address": "0xa47c8bf37f92abed4a126bda807a7b7498661acd", + "name": "Wrapped UST Token", + "buyable": false, + "symbol": "UST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00076416, + "ccyValue": 1.02, + "ethDayChange": -0.027588313142624453, + "ccyDayChange": 0.02 + }, + "tokenlist": false + }, { + "id": 707, + "address": "0x74fd51a98a4a1ecbef8cc43be801cce630e260bd", + "name": "SiaCashCoin", + "buyable": false, + "symbol": "SCC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0.000002, + "ethDayChange": 6.692307692307692308, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 304, + "address": "0x5807ca447851c98569c567963b25b1c83d41bebc", + "name": "OLD RealToken 10024-10028 Appoline Street Detroit MI", + "buyable": false, + "symbol": "10024 Appoli", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "10024-10028 Appoline Street is the located in the heart of the revitalization of the greater Detroit area. The Barton-McFarland neighborhood is a blue-collar area where the resurgence of the automobile industry has positively impacted the local housing market.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.10979617, + "ccyValue": 146.01, + "ethDayChange": -0.041131982306957983, + "ccyDayChange": -0.000616 + }, + "tokenlist": false + }, { + "id": 1686, + "address": "0x01962144d41415cca072900fe87bbe2992a99f10", + "name": "XOR-ETH Uniswap pool token", + "buyable": false, + "symbol": "XOR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-46", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.972603467969384236, + "ccyValue": 1296.447722, + "ethDayChange": -0.001873460128004346, + "ccyDayChange": 0.038448 + }, + "tokenlist": false + }, { + "id": 2398, + "address": "0xf043c39a106db6b58c76995f30ba35fd211c3b76", + "name": "APY-ETH Uniswap pool token", + "buyable": false, + "symbol": "APY-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 904, + "address": "0x26f5f49e3bb3626b53e4573f07f8587f010019b5", + "name": "Hydro Pool Ether", + "buyable": false, + "symbol": "pETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2065, + "address": "0xd843d1ec5122d4a196cd331216a09d2b1f3321cf", + "name": "LEPTON", + "buyable": false, + "symbol": "LPTX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 573, + "address": "0x58723c7afcd33a2db6ae06c37521725d65f0cc15", + "name": "BullBearBitcoin Set II", + "buyable": false, + "symbol": "BBB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-13", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.166828188185668914, + "ccyValue": 222.587397, + "ethDayChange": -0.000590623028024242, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 293, + "address": "0xdb7eab9ba6be88b869f738f6deeba96d49fe13fd", + "name": "BOOM", + "buyable": false, + "symbol": "BOOM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001104774330054, + "ccyValue": 0.001472, + "ethDayChange": -0.071930219883962797, + "ccyDayChange": -0.035387 + }, + "tokenlist": false + }, { + "id": 1414, + "address": "0x56cdbbeec9828962cecb3f1b69517d430295d952", + "name": "Davecoin", + "buyable": false, + "symbol": "DDTG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000008681691366031, + "ccyValue": 0.011568, + "ethDayChange": 0.489140886111663808, + "ccyDayChange": 0.607336 + }, + "tokenlist": false + }, { + "id": 2678, + "address": "0xe91d55ab2240594855abd11b3faae801fd4c4687", + "name": "Aave stable debt bearing USDT", + "buyable": false, + "symbol": "stableDebtUS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2578, + "address": "0xc9dfcd0a1dd2d7bb6fd2ef91a16a6a1c4e9846dd", + "name": "Hype.Bet", + "buyable": false, + "symbol": "Hype.Bet", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00037024, + "ccyValue": 0.483206, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 165, + "address": "0x5e47ffcb222256e5488931d07ddd269512871847", + "name": "EvoBux", + "buyable": false, + "symbol": "EVO", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2388, + "address": "0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5", + "name": "Experty Wisdom Token", + "buyable": false, + "symbol": "WIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000252, + "ccyValue": 0.03361, + "ethDayChange": 0.187541424042623362, + "ccyDayChange": 0.235162 + }, + "tokenlist": false + }, { + "id": 2028, + "address": "0xc278041fdd8249fe4c1aad1193876857eea3d68c", + "name": "IdleTUSD v4 [Best yield]", + "buyable": false, + "symbol": "idleTUSDYiel", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2431, + "address": "0xc4c43c78fb32f2c7f8417af5af3b85f090f1d327", + "name": "kEther", + "buyable": false, + "symbol": "kETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1770, + "address": "0x7fda0a92cd110209dc0233844305abd23a530b72", + "name": "DigiMed", + "buyable": false, + "symbol": "DR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2868, + "address": "0xd9e89bfebae447b42c1fa85c590716ec8820f737", + "name": "RealToken S 4061 Grand St Detroit MI", + "buyable": false, + "symbol": "4061 Grand S", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1556, + "address": "0x7ff566e1d69deff32a7b244ae7276b9f90e9d0f6", + "name": "yearn Curve.fi renBTC/wBTC/sBTC", + "buyable": false, + "symbol": "ycrvRenWSBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-52", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2205, + "address": "0xb244ac0f3ee2e9cae5dfdde5dab8d49fa467e1a9", + "name": "XCORE", + "buyable": false, + "symbol": "XCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2342, + "address": "0xea319e87cf06203dae107dd8e5672175e3ee976c", + "name": "SURF.Finance", + "buyable": false, + "symbol": "SURF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000215952348885416, + "ccyValue": 0.288189, + "ethDayChange": 0.000520519298628614, + "ccyDayChange": 0.045193 + }, + "tokenlist": false + }, { + "id": 2033, + "address": "0x30cf203b48edaa42c3b4918e955fed26cd012a3f", + "name": "Seed", + "buyable": false, + "symbol": "SEED", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/seed.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#5a32e6", + "description": "Metagame aims to offer a massive online coordination game that will be carried out in Github, Discord and Discourse.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.04523452, + "ccyValue": 60.67, + "ethDayChange": -0.002552575199094691, + "ccyDayChange": -0.002794 + }, + "tokenlist": false + }, { + "id": 635, + "address": "0x9d91be44c06d373a8a226e1f3b146956083803eb", + "name": "Aave Interest bearing KNC V1", + "buyable": false, + "symbol": "aKNC V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/aknc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-9", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000975466829720439, + "ccyValue": 1.301765, + "ethDayChange": 0.045628502219357916, + "ccyDayChange": 0.089343 + }, + "tokenlist": false + }, { + "id": 1986, + "address": "0xd0658324074d6249a51876438916f7c423075451", + "name": "Yearn Land", + "buyable": false, + "symbol": "yLand", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.01131805060501831, + "ccyValue": 15.084695, + "ethDayChange": -0.024765876988263654, + "ccyDayChange": 0.01429 + }, + "tokenlist": false + }, { + "id": 1784, + "address": "0x2e6e152d29053b6337e434bc9be17504170f8a5b", + "name": "Yearn Finance Ecosystem", + "buyable": false, + "symbol": "YFIEC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.005272943730660046, + "ccyValue": 7.027778, + "ethDayChange": -0.001480140991060756, + "ccyDayChange": 0.059997 + }, + "tokenlist": false + }, { + "id": 789, + "address": "0x5b135d7e2774c801a73208f258123d7623e07784", + "name": "Saifu", + "buyable": false, + "symbol": "SFU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00027413, + "ccyValue": 0.056869, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1179, + "address": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", + "name": "The 4th Pillar Token", + "buyable": false, + "symbol": "FOUR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000005927426289084, + "ccyValue": 0.0079, + "ethDayChange": 0.071867321715009042, + "ccyDayChange": 0.115032 + }, + "tokenlist": false + }, { + "id": 2545, + "address": "0x59e7b5db9be0bdd26fa048d39e01fee456ab674e", + "name": "Yearn Finance Bit2", + "buyable": false, + "symbol": "YFB2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.010296707046234458, + "ccyValue": 13.723449, + "ethDayChange": 0.153252039975142047, + "ccyDayChange": 0.206988 + }, + "tokenlist": false + }, { + "id": 34, + "address": "0x81c9151de0c8bafcd325a57e3db5a5df1cebf79c", + "name": "Datum", + "buyable": false, + "symbol": "DAT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dat.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 4.3713381983E-7, + "ccyValue": 0.000582, + "ethDayChange": -0.02504847174799683, + "ccyDayChange": 0.012174 + }, + "tokenlist": false + }, { + "id": 2165, + "address": "0x8da25b8ed753a5910013167945a676921e864436", + "name": "Bellevue Network", + "buyable": false, + "symbol": "BLV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000598, + "ccyValue": 0.002682, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1024, + "address": "0xe36e2d3c7c34281fa3bc737950a68571736880a1", + "name": "Synth sADA", + "buyable": false, + "symbol": "sADA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00025916, + "ccyValue": 0.345705, + "ethDayChange": 0.031318397071113057, + "ccyDayChange": 0.069116 + }, + "tokenlist": false + }, { + "id": 3185, + "address": "0xcd6997334867728ba14d7922f72c893fcee70e84", + "name": "stake dao Curve.fi EURS/sEUR", + "buyable": false, + "symbol": "sdeursCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1996, + "address": "0x5ade7ae8660293f2ebfcefaba91d141d72d221e8", + "name": "Eminence", + "buyable": false, + "symbol": "EMN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 4.0804447511E-8, + "ccyValue": 0.000054, + "ethDayChange": 0.758812392715517241, + "ccyDayChange": 0.8 + }, + "tokenlist": false + }, { + "id": 1830, + "address": "0x4690d8f53e0d367f5b68f7f571e6eb4b72d39ace", + "name": "WinPlay Token", + "buyable": false, + "symbol": "WNRZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000005193341808637, + "ccyValue": 0.006922, + "ethDayChange": 3.59587770675840708, + "ccyDayChange": 10.975779 + }, + "tokenlist": false + }, { + "id": 58, + "address": "0xc5bbae50781be1669306b9e001eff57a2957b09d", + "name": "Gifto", + "buyable": false, + "symbol": "GTO", + "decimals": 5, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gto.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000034795802576595, + "ccyValue": 0.046366, + "ethDayChange": 0.16641925013643388, + "ccyDayChange": 0.209748 + }, + "tokenlist": false + }, { + "id": 560, + "address": "0xc23a6544bc54763f87b26b3535692b925c74b8ea", + "name": "Sestrel", + "buyable": false, + "symbol": "STL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1402, + "address": "0x7777770f8a6632ff043c8833310e245eba9209e6", + "name": "Tokens of Babel, Price is God", + "buyable": false, + "symbol": "TOB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000814, + "ccyValue": 0.109394, + "ethDayChange": 0.118516498921103585, + "ccyDayChange": 0.172221 + }, + "tokenlist": false + }, { + "id": 578, + "address": "0xa9fbb83a2689f4ff86339a4b96874d718673b627", + "name": "FireAnts", + "buyable": false, + "symbol": "ANTS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 643, + "address": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "name": "Aave Interest bearing BAT V1", + "buyable": false, + "symbol": "aBAT V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/abat.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-8", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000228394299695633, + "ccyValue": 0.304354, + "ethDayChange": -0.052991049117787658, + "ccyDayChange": -0.018583 + }, + "tokenlist": false + }, { + "id": 1307, + "address": "0x26b3038a7fc10b36c426846a9086ef87328da702", + "name": "Yield Farming Token", + "buyable": false, + "symbol": "YFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00413167150788584, + "ccyValue": 5.505502, + "ethDayChange": 1.168219057854824828, + "ccyDayChange": 1.184723 + }, + "tokenlist": false + }, { + "id": 2210, + "address": "0x251b5c9eff2d9f04dc525f601e13293bfe40e4f5", + "name": "iYearn Finance", + "buyable": false, + "symbol": "IYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1108, + "address": "0x2aec18c5500f21359ce1bea5dc1777344df4c0dc", + "name": "FarmaTrust Token", + "buyable": false, + "symbol": "FTT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000014498211732, + "ccyValue": 0.019319, + "ethDayChange": -0.037657849761599416, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 224, + "address": "0xabf14eac02407842a0140ad012239a03f8985404", + "name": "betbeb.com Airdrop Up to 1 ETH", + "buyable": false, + "symbol": "BEB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1489, + "address": "0x8c3ee4f778e282b59d42d693a97b80b1ed80f4ee", + "name": "SatoPay", + "buyable": false, + "symbol": "STOP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.394E-7, + "ccyValue": 0.000985, + "ethDayChange": -0.050981164953832008, + "ccyDayChange": -0.014014 + }, + "tokenlist": false + }, { + "id": 1388, + "address": "0xe6279e1c65dd41b30ba3760dcac3cd8bbb4420d6", + "name": "Rebased", + "buyable": false, + "symbol": "REB", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 488, + "address": "0x83984d6142934bb535793a82adb0a46ef0f66b6d", + "name": "REMME token", + "buyable": false, + "symbol": "REM", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000002670169155139, + "ccyValue": 0.003559, + "ethDayChange": -0.076066036284083045, + "ccyDayChange": -0.034978 + }, + "tokenlist": false + }, { + "id": 2570, + "address": "0x6a54ef1680f593574522422f3700194ec91ce57d", + "name": "PooTogether Token", + "buyable": false, + "symbol": "POO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 418, + "address": "0xd2d6158683aee4cc838067727209a0aaf4359de3", + "name": "Bounty0x Token", + "buyable": false, + "symbol": "BNTY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000161, + "ccyValue": 0.002145, + "ethDayChange": -0.041666666666666667, + "ccyDayChange": -0.007863 + }, + "tokenlist": false + }, { + "id": 1181, + "address": "0x97bc20fda3e38c1874db91283b4557bbcdebac46", + "name": "YlifeToken", + "buyable": false, + "symbol": "YLF", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1103, + "address": "0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f", + "name": "BF Token", + "buyable": false, + "symbol": "BFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000454, + "ccyValue": 0.00605, + "ethDayChange": -0.096351813497895275, + "ccyDayChange": -0.060996 + }, + "tokenlist": false + }, { + "id": 1129, + "address": "0x70861e862e1ac0c96f853c8231826e469ead37b1", + "name": "DOS Network Token", + "buyable": false, + "symbol": "DOS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005229, + "ccyValue": 0.069658, + "ethDayChange": 0.061941510966693745, + "ccyDayChange": 0.107352 + }, + "tokenlist": false + }, { + "id": 848, + "address": "0xc7665729dccff66f8f1b8676434f0ae4a9bfe511", + "name": "Omise Gangster Token", + "buyable": false, + "symbol": "OG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1504, + "address": "0xc8d2ab2a6fdebc25432e54941cb85b55b9f152db", + "name": "GRAP", + "buyable": false, + "symbol": "GRAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000037425450569154, + "ccyValue": 0.049944, + "ethDayChange": -0.133870618626382782, + "ccyDayChange": -0.100983 + }, + "tokenlist": false + }, { + "id": 1805, + "address": "0xe26a220a341eaca116bda64cf9d5638a935ae629", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1035, + "address": "0xac3211a5025414af2866ff09c23fc18bc97e79b1", + "name": "DOVU", + "buyable": false, + "symbol": "DOV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 8.23363314459E-7, + "ccyValue": 0.001097, + "ethDayChange": 0.349554686869365678, + "ccyDayChange": 0.378141 + }, + "tokenlist": false + }, { + "id": 482, + "address": "0xd829664cdbf3195b2ce76047a65de29e7ed0a9a8", + "name": "3X Long Altcoin Index Token", + "buyable": false, + "symbol": "ALTBULL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.08138763704362698, + "ccyValue": 108.45, + "ethDayChange": 0.099885676031758043, + "ccyDayChange": 0.142926 + }, + "tokenlist": false + }, { + "id": 1397, + "address": "0x459086f2376525bdceba5bdda135e4e9d3fef5bf", + "name": "renBCH", + "buyable": false, + "symbol": "renBCH", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.28898536, + "ccyValue": 384.12, + "ethDayChange": -0.063967825033314231, + "ccyDayChange": -0.010051 + }, + "tokenlist": false + }, { + "id": 3181, + "address": "0x194ebd173f6cdace046c53eacce9b953f28411d1", + "name": "Curve.fi EURS/sEUR", + "buyable": false, + "symbol": "eursCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2527, + "address": "0x454cb9d0845bb4a28462f98c21a4fafd16ceb25f", + "name": "yfiLabs", + "buyable": false, + "symbol": "YLAB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00102915, + "ccyValue": 1.29, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2646, + "address": "0x4ec2efb9cbd374786a03261e46ffce1a67756f3b", + "name": "Deflacoin", + "buyable": false, + "symbol": "DEFL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 4.05E-8, + "ccyValue": 0.000014, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 608, + "address": "0x16ea01acb4b0bca2000ee5473348b6937ee6f72f", + "name": "Enecuum", + "buyable": false, + "symbol": "ENQ", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000542, + "ccyValue": 0.007217, + "ethDayChange": -0.033868092691622103, + "ccyDayChange": 0.000971 + }, + "tokenlist": false + }, { + "id": 1874, + "address": "0x6c3f90f043a72fa612cbac8115ee7e52bde6e490", + "name": "Curve.fi DAI/USDC/USDT", + "buyable": false, + "symbol": "3Crv", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.00075550541389251, + "ccyValue": 1.008146, + "ethDayChange": -0.038257762611019467, + "ccyDayChange": -0.000378 + }, + "tokenlist": false + }, { + "id": 979, + "address": "0x82f4ded9cec9b5750fbff5c2185aee35afc16587", + "name": "DreamTeam Token", + "buyable": false, + "symbol": "DREAM", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000725, + "ccyValue": 0.009405, + "ethDayChange": -0.130695443645083933, + "ccyDayChange": -0.108953 + }, + "tokenlist": false + }, { + "id": 3123, + "address": "0x15861b072abad08b24460add30b09e1481290f94", + "name": "MUST-ETH Uniswap pool token", + "buyable": false, + "symbol": "MUST-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 348, + "address": "0x8b6dd2144a3cc6677600735d0e62134839bb85d0", + "name": "Phoneum", + "buyable": false, + "symbol": "PHM", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 9E-8, + "ccyValue": 0.000118, + "ethDayChange": 0, + "ccyDayChange": -0.024793 + }, + "tokenlist": false + }, { + "id": 728, + "address": "0x16b0a1a87ae8af5c792fabc429c4fe248834842b", + "name": "Algory", + "buyable": false, + "symbol": "ALG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00009591, + "ccyValue": 0.1279, + "ethDayChange": -0.051147605856747131, + "ccyDayChange": -0.015783 + }, + "tokenlist": false + }, { + "id": 1037, + "address": "0x818fc6c2ec5986bc6e2cbf00939d90556ab12ce5", + "name": "Kin", + "buyable": false, + "symbol": "KIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 3E-8, + "ccyValue": 0.00004, + "ethDayChange": 0, + "ccyDayChange": 0.290323 + }, + "tokenlist": false + }, { + "id": 1814, + "address": "0xf4bcc9537e4a6ff9d13a92b6273cc2349b659242", + "name": "yfstake.network", + "buyable": false, + "symbol": "YFK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2439, + "address": "0xe89a6d0509faf730bd707bf868d9a2a744a363c7", + "name": "Cream Uniswap", + "buyable": false, + "symbol": "crUNI", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2153, + "address": "0xb01862d0830bcd7775a88625253d12d2c51a110a", + "name": "AngryHippoV2", + "buyable": false, + "symbol": "aHIPPOv2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1230, + "address": "0xb53e08b97724126bda6d237b94f766c0b81c90fe", + "name": "PIXBY", + "buyable": false, + "symbol": "PIXBY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00000657, + "ccyValue": 0.00388, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1574, + "address": "0xbfec19e7cd47fe4b1022fdc4c652ee7bd85a9d13", + "name": "Magnet Finance", + "buyable": false, + "symbol": "MGT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2279, + "address": "0x878fc16966cfa667eabb5ec7dbf2b5a87f8aa901", + "name": "yTSLA-ETH Uniswap pool token", + "buyable": false, + "symbol": "yTSLA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2327, + "address": "0x1eff8af5d577060ba4ac8a29a13525bb0ee2a3d5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-2", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 73.772730069035891108, + "ccyValue": 98399.955068, + "ethDayChange": -0.000700170103921951, + "ccyDayChange": 0.037346 + }, + "tokenlist": false + }, { + "id": 306, + "address": "0x92bf969865c80eda082fd5d8b4e28da4d58e1c3a", + "name": "Luna", + "buyable": false, + "symbol": "LUNA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 169, + "address": "0xeabacd844a196d7faf3ce596edebf9900341b420", + "name": "Synth sCEX", + "buyable": false, + "symbol": "sCEX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.88691337, + "ccyValue": 1181.66, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2521, + "address": "0xd6a46098b6cfcdd920e0c950407d12470833c786", + "name": "PRDX-ETH Uniswap pool token", + "buyable": false, + "symbol": "PRDX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1752, + "address": "0x655add54db7fe1ffd8627862ccddcf47f0d0f40d", + "name": "GagaFARM", + "buyable": false, + "symbol": "GFARM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1958, + "address": "0x2ff2b86c156583b1135c584fd940a1996fa4230b", + "name": "https://findtherabbit.me", + "buyable": false, + "symbol": "findtherabbi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2287, + "address": "0x9b7dad79fc16106b47a3dab791f389c167e15eb0", + "name": "Uniswap V2 OCEAN-ETH", + "buyable": false, + "symbol": "OCEAN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1778, + "address": "0x90f62b96a62801488b151ff3c65eac5fae21a962", + "name": "GemToken", + "buyable": false, + "symbol": "GEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000896, + "ccyValue": 0.003157, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2289, + "address": "0x5a08c1a3455e37ac6be0eae40f2a451d10529824", + "name": "Yearn Gold Finance ", + "buyable": false, + "symbol": "YGF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1993, + "address": "0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a", + "name": "BetProtocolToken", + "buyable": false, + "symbol": "BEPRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.322E-7, + "ccyValue": 0.000575, + "ethDayChange": -0.098995762353981118, + "ccyDayChange": -0.065041 + }, + "tokenlist": false + }, { + "id": 1936, + "address": "0x87047986e8e4961c11d2edcd94285e3a1331d97b", + "name": "Yakuza DFO", + "buyable": false, + "symbol": "YKZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006908, + "ccyValue": 0.083402, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1386, + "address": "0x2e41132dab88a9bad80740a1392d322bf023d494", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1769, + "address": "0x588fcc8306ffdf880e4aa21e615cc52c475d3ba4", + "name": "BNS-ETH Uniswap pool token", + "buyable": false, + "symbol": "BNS-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1727, + "address": "0x212dd60d4bf0da8372fe8116474602d429e5735f", + "name": "Stobox Token", + "buyable": false, + "symbol": "STBU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006929, + "ccyValue": 0.092096, + "ethDayChange": -0.052558295272807885, + "ccyDayChange": -0.017978 + }, + "tokenlist": false + }, { + "id": 3170, + "address": "0x86772b1409b61c639eaac9ba0acfbb6e238e5f83", + "name": "Indexed", + "buyable": false, + "symbol": "NDX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.004842323427114277, + "ccyValue": 6.462102, + "ethDayChange": 0.290918921407813503, + "ccyDayChange": 0.344335 + }, + "tokenlist": false + }, { + "id": 426, + "address": "0x493c8d6a973246a7b26aa8ef4b1494867a825de5", + "name": "NuLink", + "buyable": false, + "symbol": "NLINK", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.519E-7, + "ccyValue": 0.000175, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 311, + "address": "0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb", + "name": "CRYPTOPUNKS", + "buyable": false, + "symbol": "Ͼ", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1590, + "address": "0xade00c28244d5ce17d72e40330b1c318cd12b7c3", + "name": "AdEx Network", + "buyable": false, + "symbol": "ADX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00031136428515885, + "ccyValue": 0.414986, + "ethDayChange": -0.004908005244966443, + "ccyDayChange": 0.031021 + }, + "tokenlist": false + }, { + "id": 838, + "address": "0xbcdfe338d55c061c084d81fd793ded00a27f226d", + "name": "DML Token", + "buyable": false, + "symbol": "DML", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 7.89900000002E-7, + "ccyValue": 0.001053, + "ethDayChange": 0.012432709564214304, + "ccyDayChange": 0.048805 + }, + "tokenlist": false + }, { + "id": 1806, + "address": "0x23aeff664c1b2bba98422a0399586e96cc8a1c92", + "name": "Fee Active Collateral Token", + "buyable": false, + "symbol": "Fact", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001524, + "ccyValue": 0.011139, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2512, + "address": "0xdfc14d2af169b0d36c4eff567ada9b2e0cae044f", + "name": "AAVE-ETH Uniswap pool token", + "buyable": false, + "symbol": "AAVE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-36", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.037947770173392422, + "ccyValue": 1383.678028, + "ethDayChange": -0.016728831353745578, + "ccyDayChange": 0.019716 + }, + "tokenlist": false + }, { + "id": 1292, + "address": "0x0ffc70be6e2d841e109653ddb3034961591679d6", + "name": "ETH-ANJ Uniswap pool token", + "buyable": false, + "symbol": "ETH-ANJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 546, + "address": "0x6b466b0232640382950c45440ea5b630744eca99", + "name": "COVID19", + "buyable": false, + "symbol": "CVD", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.13E-8, + "ccyValue": 0.000006, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2051, + "address": "0xb177bd7919c399dde531744a20d5078baa1ecff2", + "name": "YUGE.WORKS", + "buyable": false, + "symbol": "$YUGE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 809, + "address": "0xa7c71d444bf9af4bfed2ade75595d7512eb4dd39", + "name": "Travel1Click", + "buyable": false, + "symbol": "T1C", + "decimals": 16, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 888, + "address": "0x3eb55d5b22ee0f9b03d59b4994c5ae7fe811be92", + "name": "Tratin", + "buyable": false, + "symbol": "TRAT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 7.37551947403E-7, + "ccyValue": 0.000983, + "ethDayChange": 0.01353847382575237, + "ccyDayChange": -0.033432 + }, + "tokenlist": false + }, { + "id": 2651, + "address": "0x469e66e06fec34839e5eb1273ba85a119b8d702f", + "name": "Degov", + "buyable": false, + "symbol": "DEGOV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.06418877793131807, + "ccyValue": 85.550788, + "ethDayChange": 0.117576123139960143, + "ccyDayChange": 0.161559 + }, + "tokenlist": false + }, { + "id": 316, + "address": "0x8da4d047966389cd028dfe7bfbc7d00eb7656fa4", + "name": "Crow Token", + "buyable": false, + "symbol": "CP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2237, + "address": "0xdd481ff3459a533fd401015137f029cb9f6fb6f2", + "name": "YEARN FINANCE VALUE", + "buyable": false, + "symbol": "YFIV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 535, + "address": "0xcbcc0f036ed4788f63fc0fee32873d6a7487b908", + "name": "Humaniq", + "buyable": false, + "symbol": "HMQ", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000004310066953492, + "ccyValue": 0.005743, + "ethDayChange": -0.156403446744290294, + "ccyDayChange": -0.123474 + }, + "tokenlist": false + }, { + "id": 427, + "address": "0x4162178b78d6985480a308b2190ee5517460406d", + "name": "Colu Local Network", + "buyable": false, + "symbol": "CLN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000999, + "ccyValue": 0.003935, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 569, + "address": "0x71fc860f7d3a592a4a98740e39db31d25db65ae8", + "name": "Aave Interest bearing USDT V1", + "buyable": false, + "symbol": "aUSDT V1", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/ausdt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-6", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000750617988808581, + "ccyValue": 1.001703, + "ethDayChange": -0.038073989877786704, + "ccyDayChange": 0.001729 + }, + "tokenlist": false + }, { + "id": 3011, + "address": "0x3d995510f8d82c2ea341845932b5ddde0bead9a3", + "name": "uGAS-JAN21 Token Expiring 31 Jan 2021", + "buyable": false, + "symbol": "uGAS-JAN21", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.08019686, + "ccyValue": 107.23, + "ethDayChange": -0.004249859136812238, + "ccyDayChange": 0.066435 + }, + "tokenlist": false + }, { + "id": 1109, + "address": "0xe3921259cdd8c7186e425dde2c31841cff3a7792", + "name": "P1SO PHP Stablecoin", + "buyable": false, + "symbol": "P1SO", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2912, + "address": "0x5ea3fe95e06c1dffffca7fb3389e4768621947f0", + "name": "IGI", + "buyable": false, + "symbol": "IGI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1748, + "address": "0x94939d55000b31b7808904a80aa7bab05ef59ed6", + "name": "JIAOZI.farm", + "buyable": false, + "symbol": "JIAOZI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 5.0262975017E-8, + "ccyValue": 0.000067, + "ethDayChange": 1.564437500867346939, + "ccyDayChange": 1.68 + }, + "tokenlist": false + }, { + "id": 2686, + "address": "0x3d3ee86a2127f4d20b1c533e2c1abd8040da1dd9", + "name": "VOX-ETH Uniswap pool token", + "buyable": false, + "symbol": "VOX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1342, + "address": "0x309013d55fb0e8c17363bcc79f25d92f711a5802", + "name": "Soft Bitcoin", + "buyable": false, + "symbol": "SBTC", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/softbtc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#383B57", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000065, + "ccyValue": 0.008697, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 530, + "address": "0x25e1ff63b53e326c12fe99a64cfd66e26da68b84", + "name": "Fantastic12 Squad Share", + "buyable": false, + "symbol": "F12-SHARE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2910, + "address": "0xb89ed43f45d1f870be815c7b53368a1cc5184474", + "name": "MRPH-ETH Uniswap pool token", + "buyable": false, + "symbol": "MRPH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2531, + "address": "0x35333cf3db8e334384ec6d2ea446da6e445701df", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1360, + "address": "0x16ce81cfc20ce5ae4ab57a012e29ac067deed501", + "name": "Mooniswap V1 (ETH-AMPL)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2817, + "address": "0x70da48f4b7e83c386ef983d4cef4e58c2c09d8ac", + "name": "Quras Token", + "buyable": false, + "symbol": "XQC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00002579765649386, + "ccyValue": 0.034383, + "ethDayChange": 0.009693013458317025, + "ccyDayChange": 0.052627 + }, + "tokenlist": false + }, { + "id": 200, + "address": "0x386cabc0b14a507a4e024dea15554342865b20de", + "name": "Dapp Token", + "buyable": false, + "symbol": "DAPPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 4.562E-7, + "ccyValue": 0.000607, + "ethDayChange": -0.087763077443779045, + "ccyDayChange": -0.053042 + }, + "tokenlist": false + }, { + "id": 1630, + "address": "0xaea5e11e22e447fa9837738a0cd2848857748adf", + "name": "SocialFinance", + "buyable": false, + "symbol": "SOFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00262354, + "ccyValue": 3.81, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 474, + "address": "0x9ba00d6856a4edf4665bca2c2309936572473b7e", + "name": "Aave Interest bearing USDC V1", + "buyable": false, + "symbol": "aUSDC V1", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/ausdc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-3", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000749101482352019, + "ccyValue": 0.999475, + "ethDayChange": -0.038953740003691644, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 2325, + "address": "0x47a60748de6dbd8dce3991adc5751ce0f32279dc", + "name": "ClbrToken", + "buyable": false, + "symbol": "CLBR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 8.0000000001E-8, + "ccyValue": 0.000107, + "ethDayChange": 5E-11, + "ccyDayChange": 0.038835 + }, + "tokenlist": false + }, { + "id": 2930, + "address": "0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68", + "name": "BoringDAO BTC", + "buyable": false, + "symbol": "oBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2449, + "address": "0xe79590c1d8cbf6f3217b734dae7abd1b06b68d48", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2615, + "address": "0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0", + "name": "Aave interest bearing LINK", + "buyable": false, + "symbol": "aLINK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/alink.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-13", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.01742299, + "ccyValue": 23.3, + "ethDayChange": 0.044628397346356976, + "ccyDayChange": 0.087355 + }, + "tokenlist": false + }, { + "id": 1056, + "address": "0x2cea0335e707e1e177636a68f73446d3ed88115a", + "name": "SNX Binary Option", + "buyable": false, + "symbol": "sOPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 650, + "address": "0x56e0b2c7694e6e10391e870774daa45cf6583486", + "name": "DUO Network Token", + "buyable": false, + "symbol": "DUO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "brandColor": "#333332", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001010632421295, + "ccyValue": 0.001347, + "ethDayChange": -0.028238056447115385, + "ccyDayChange": 0.013544 + }, + "tokenlist": false + }, { + "id": 1296, + "address": "0xc215ebfe68c15fcafcb848105ef5f5b1158313cb", + "name": "Fullerton UniSwap Pool", + "buyable": false, + "symbol": "RealT Fuller", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/uniswap.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#CC73DF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2107, + "address": "0x35a18000230da775cac24873d00ff85bccded550", + "name": "Compound Uniswap", + "buyable": false, + "symbol": "cUNI", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/cuni.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000220812022804798, + "ccyValue": 0.293594, + "ethDayChange": -0.07579096431944584, + "ccyDayChange": -0.037618 + }, + "tokenlist": false + }, { + "id": 2471, + "address": "0xdf27a38946a1ace50601ef4e10f07a9cc90d7231", + "name": "SYN-ETH Uniswap pool token", + "buyable": false, + "symbol": "SYN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1766, + "address": "0xeeb92d7e5c0341bc0325a959851c83db51df13a3", + "name": "burger.money", + "buyable": false, + "symbol": "BURGER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000452260334766297, + "ccyValue": 0.602642, + "ethDayChange": -0.037657849761648515, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 106, + "address": "0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a", + "name": "Sapien", + "buyable": false, + "symbol": "SPN", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000003839165042164, + "ccyValue": 0.005116, + "ethDayChange": -0.023415066283045722, + "ccyDayChange": 0.012067 + }, + "tokenlist": false + }, { + "id": 1923, + "address": "0x25e1474170c4c0aa64fa98123bdc8db49d7802fa", + "name": "Bidao", + "buyable": false, + "symbol": "BID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000008502774368347, + "ccyValue": 0.011347, + "ethDayChange": -0.00938053375364144, + "ccyDayChange": 0.030889 + }, + "tokenlist": false + }, { + "id": 2114, + "address": "0x32f3b9b5bd6c76f41ee3b389573f340468666861", + "name": "YFII Silver", + "buyable": false, + "symbol": "YFIIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1021, + "address": "0xcab5bbe12c8849dc755e0bb9b7d34123617c303b", + "name": "YamCoin", + "buyable": false, + "symbol": "YAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 973, + "address": "0xe44dce4f87c8f245dc688adb1fdec054938a984f", + "name": "ForceTransferTest", + "buyable": false, + "symbol": "FTT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2422, + "address": "0x0027449bf0887ca3e431d263ffdefb244d95b555", + "name": "Not", + "buyable": false, + "symbol": "NOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1026, + "address": "0xbf452277b8af4084fb8a0472ec808f2ded51f1c1", + "name": "SLP-ETH Uniswap pool token", + "buyable": false, + "symbol": "SLP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3016, + "address": "0xd81b1a8b1ad00baa2d6609e0bae28a38713872f7", + "name": "PoolTogether USDC Ticket (Compound)", + "buyable": false, + "symbol": "PcUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000749101482352019, + "ccyValue": 0.999475, + "ethDayChange": -0.038953740003691644, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 1479, + "address": "0x048fe49be32adfc9ed68c37d32b5ec9df17b3603", + "name": "Skrumble Network V2", + "buyable": false, + "symbol": "SKM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000154, + "ccyValue": 0.002056, + "ethDayChange": -0.066666666666666667, + "ccyDayChange": -0.031559 + }, + "tokenlist": false + }, { + "id": 963, + "address": "0xd18475521245a127a933a4fcaf99e8c45a416f7e", + "name": "Quantfury Data Token", + "buyable": false, + "symbol": "QDT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2547, + "address": "0x12c765e05146414fa948b9dcf934277247a59ef1", + "name": "baseprotocol.org", + "buyable": false, + "symbol": "BASE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2073, + "address": "0x026e62dded1a6ad07d93d39f96b9eabd59665e0d", + "name": "BirdCoin", + "buyable": false, + "symbol": "BIRD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001839705987729, + "ccyValue": 0.002451, + "ethDayChange": -0.051697944469587629, + "ccyDayChange": -0.002442 + }, + "tokenlist": false + }, { + "id": 680, + "address": "0xec2d2240d02a8cf63c3fa0b7d2c5a3169a319496", + "name": "REP-ETH Uniswap pool token", + "buyable": false, + "symbol": "REP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-7", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.265675513895628021, + "ccyValue": 354.14795, + "ethDayChange": -0.011618937310691416, + "ccyDayChange": 0.024952 + }, + "tokenlist": false + }, { + "id": 3073, + "address": "0x34ed9e71449529e034d0326cfbb3b5ccdca00cbc", + "name": "RealToken S 19317 Gable St Detroit MI", + "buyable": false, + "symbol": "19317 Gable ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 721, + "address": "0xa5e79baee540f000ef6f23d067cd3ac22c7d9fe6", + "name": "CEL-ETH Uniswap pool token", + "buyable": false, + "symbol": "CEL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-21", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1599546.822096495593807641, + "ccyValue": 2129826767.173473, + "ethDayChange": -0.01483984176301903, + "ccyDayChange": 0.024121 + }, + "tokenlist": false + }, { + "id": 3100, + "address": "0x7bce667ef12023dc5f8577d015a2f09d99a5ef58", + "name": "Block Duelers", + "buyable": false, + "symbol": "BDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.05528095632247132, + "ccyValue": 73.757584, + "ethDayChange": -0.021880005461530788, + "ccyDayChange": 0.017707 + }, + "tokenlist": false + }, { + "id": 2220, + "address": "0x816579230a4c61670eba15486c8357bf87ec307e", + "name": "ETH-xBTC Uniswap pool token", + "buyable": false, + "symbol": "ETH-xBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2133, + "address": "0x03042482d64577a7bdb282260e2ea4c8a89c064b", + "name": "Centaur Token", + "buyable": false, + "symbol": "CNTR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000479, + "ccyValue": 0.006376, + "ethDayChange": 0.225906995549220141, + "ccyDayChange": 0.272655 + }, + "tokenlist": false + }, { + "id": 3124, + "address": "0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6", + "name": "PolkaCover", + "buyable": false, + "symbol": "CVR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0003489, + "ccyValue": 0.465, + "ethDayChange": 0.232167223803691781, + "ccyDayChange": 0.280621 + }, + "tokenlist": false + }, { + "id": 1950, + "address": "0x6d0f5149c502faf215c89ab306ec3e50b15e2892", + "name": "Portion Token", + "buyable": false, + "symbol": "PRT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000010809981508334, + "ccyValue": 0.014404, + "ethDayChange": -0.19188430515987639, + "ccyDayChange": -0.160264 + }, + "tokenlist": false + }, { + "id": 3078, + "address": "0x038a68ff68c393373ec894015816e33ad41bd564", + "name": "Glitch", + "buyable": false, + "symbol": "GLCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00008306, + "ccyValue": 0.1107, + "ethDayChange": -0.126417911349885229, + "ccyDayChange": -0.091789 + }, + "tokenlist": false + }, { + "id": 1127, + "address": "0x539efe69bcdd21a83efd9122571a64cc25e0282b", + "name": "Ethereum Blue", + "buyable": false, + "symbol": "BLUE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000021200000000003, + "ccyValue": 0.028249, + "ethDayChange": 0.005215742057989569, + "ccyDayChange": 0.048434 + }, + "tokenlist": false + }, { + "id": 2119, + "address": "0x1df6f1bb7454e5e4ba3bca882d3148fbf9b5697a", + "name": "YFSCIENCE", + "buyable": false, + "symbol": "YFSI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00169494006043187, + "ccyValue": 2.258528, + "ethDayChange": -0.019713658432403059, + "ccyDayChange": 0.018647 + }, + "tokenlist": false + }, { + "id": 2139, + "address": "0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc", + "name": "Non-Fungible Yearn", + "buyable": false, + "symbol": "NFY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002490717951203505, + "ccyValue": 3.318911, + "ethDayChange": -0.041804333909634935, + "ccyDayChange": -0.003646 + }, + "tokenlist": false + }, { + "id": 1330, + "address": "0x04abeda201850ac0124161f037efd70c74ddc74c", + "name": "NEST", + "buyable": false, + "symbol": "NEST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00002995, + "ccyValue": 0.0399, + "ethDayChange": -0.075046324891908586, + "ccyDayChange": -0.034996 + }, + "tokenlist": false + }, { + "id": 2470, + "address": "0x322a1e2e18fffc8d19948581897b2c49b3455240", + "name": "Mooniswap V1 (ETH-WBTC)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2174, + "address": "0x7705c572d9cc824fba4e4efb40f00916534396d9", + "name": "KimchiSwap", + "buyable": false, + "symbol": "KSWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000999, + "ccyValue": 0.013522, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1507, + "address": "0xf9ab7776c7baeed1d65f0492fe2bb3951a1787ef", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-18", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.006536442390223825, + "ccyValue": 1341.658526, + "ethDayChange": 0.053556607386273418, + "ccyDayChange": 0.094066 + }, + "tokenlist": false + }, { + "id": 1799, + "address": "0xbd0001bb1a7ebdc64899161b48c60bcbef62004e", + "name": "YFFU.Finance 2.0", + "buyable": false, + "symbol": "YFFU2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 297, + "address": "0xcfbc9103362aec4ce3089f155c2da2eea1cb7602", + "name": "CryptoCrystal", + "buyable": false, + "symbol": "CC", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1789, + "address": "0x83e2be8d114f9661221384b3a50d24b96a5653f5", + "name": "0xcert Protocol Token", + "buyable": false, + "symbol": "ZXC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001682111410845, + "ccyValue": 0.002241, + "ethDayChange": -0.004667804233727811, + "ccyDayChange": 0.0375 + }, + "tokenlist": false + }, { + "id": 1883, + "address": "0xb983e01458529665007ff7e0cddecdb74b967eb6", + "name": "Fulcrum ETH iToken", + "buyable": false, + "symbol": "iETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 420, + "address": "0x77599d2c6db170224243e255e6669280f11f1473", + "name": "Opacity", + "buyable": false, + "symbol": "OPQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000009251003074528, + "ccyValue": 0.01233, + "ethDayChange": -0.043538311678143985, + "ccyDayChange": -0.005886 + }, + "tokenlist": false + }, { + "id": 1349, + "address": "0x00ee41dcc47045a85bcf7784264f23a6f8bad35c", + "name": "PITCH - v2", + "buyable": false, + "symbol": "PITCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1221, + "address": "0xa0008f510fe9ee696e7e320c9e5cbf61e27791ee", + "name": "GMB", + "buyable": false, + "symbol": "GMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.244E-7, + "ccyValue": 0.000165, + "ethDayChange": 0.053344623200677392, + "ccyDayChange": 0.092715 + }, + "tokenlist": false + }, { + "id": 2842, + "address": "0xae31b85bfe62747d0836b82608b4830361a3d37a", + "name": "Aergo", + "buyable": false, + "symbol": "AERGO", + "decimals": 18, + "sendable": false, + "dailyLimit": false, + "displayAddress": "0x91af0fbb28aba7e31403cb457106ce79397fd4e6", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003688, + "ccyValue": 0.049021, + "ethDayChange": 0.028730822873082287, + "ccyDayChange": 0.070328 + }, + "tokenlist": false + }, { + "id": 1840, + "address": "0xf784097f3a428878d2b512818b34f580b93776db", + "name": "null.finance", + "buyable": false, + "symbol": "NULL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2664, + "address": "0xbd3ae046cb14fd34c5b217f2c16b772016fec549", + "name": "Halo NFT", + "buyable": false, + "symbol": "HALO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1028, + "address": "0x6ad03307fd545a68a391f99efdd31cec86569a4c", + "name": "Stake Street", + "buyable": false, + "symbol": "STST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 645, + "address": "0xd218d75ba0fc45858a4e9ef57a257ed9977db5f4", + "name": "BTC TA Set", + "buyable": false, + "symbol": "BTCTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-25", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.189752985547768772, + "ccyValue": 253.17438, + "ethDayChange": -0.000590623028024242, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 2906, + "address": "0xa09d1afae21bda81c06fd6de9bbd7c7ed7b6dfb1", + "name": "1inch Liquidity Pool (1INCH-USDC)", + "buyable": false, + "symbol": "1LP-1INCH-US", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 802, + "address": "0x679131f591b4f369acb8cd8c51e68596806c3916", + "name": "Trustlines Network Token", + "buyable": false, + "symbol": "TLN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000574, + "ccyValue": 0.076994, + "ethDayChange": -0.107864470003108486, + "ccyDayChange": -0.061117 + }, + "tokenlist": false + }, { + "id": 2445, + "address": "0xe3f9cf7d44488715361581dd8b3a15379953eb4c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2041, + "address": "0x84679bc467dc6c2c40ab04538813aff3796351f1", + "name": "CHONK", + "buyable": false, + "symbol": "CHONK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.016351161116174563, + "ccyValue": 21.820696, + "ethDayChange": -0.389563531751181761, + "ccyDayChange": -0.364305 + }, + "tokenlist": false + }, { + "id": 544, + "address": "0xe0c6ce3e73029f201e5c0bedb97f67572a93711c", + "name": "ETHplode", + "buyable": false, + "symbol": "ETHPLO", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.819E-7, + "ccyValue": 0.001314, + "ethDayChange": -0.288478260869565217, + "ccyDayChange": -0.247423 + }, + "tokenlist": false + }, { + "id": 1500, + "address": "0x50a822bd521d20d1122ad41e32944570d4c66b4f", + "name": "The China Coin", + "buyable": false, + "symbol": "CHINA", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1303, + "address": "0x83daabd881ec43f3d657c8f9c13272df2501ab6b", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 812, + "address": "0x1fb6bccc7da51aa32e96118b8a33226d2ae16517", + "name": "Global Rental Token", + "buyable": false, + "symbol": "GRT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.332E-7, + "ccyValue": 0.000333, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2167, + "address": "0xce115f0944a835f66b0077e6c689d4efa2572920", + "name": "CorbV2", + "buyable": false, + "symbol": "CorbV2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1079, + "address": "0x5cd487ce4db7091292f2e914f7b31445bd4a5e1b", + "name": "Inverse ETH 20 SMA Crossover", + "buyable": false, + "symbol": "iETH20SMACO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-robo-19", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.286522, + "ccyValue": 382.054316, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2948, + "address": "0xa0446d8804611944f1b527ecd37d7dcbe442caba", + "name": "1INCH Token (Staked)", + "buyable": false, + "symbol": "st1INCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2879, + "address": "0x1de5e000c41c8d35b9f1f4985c23988f05831057", + "name": "BonFi", + "buyable": false, + "symbol": "BNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000156, + "ccyValue": 0.002067, + "ethDayChange": 0.073692543457188414, + "ccyDayChange": 0.109501 + }, + "tokenlist": false + }, { + "id": 1916, + "address": "0xfbd937d457cbd4b9354b20d44c6b7f7d1a22d22c", + "name": "Cope", + "buyable": false, + "symbol": "COPE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1559, + "address": "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e", + "name": "SwftCoin", + "buyable": false, + "symbol": "SWFTC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000107, + "ccyValue": 0.001429, + "ethDayChange": 0.702737110120942075, + "ccyDayChange": 0.781796 + }, + "tokenlist": false + }, { + "id": 2154, + "address": "0xa09ff006c652496e72d648cef2f4ee6777efdf6f", + "name": "decraft.finance", + "buyable": false, + "symbol": "CRAFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.01188210160456221, + "ccyValue": 15.833043, + "ethDayChange": 0.00065785866457784, + "ccyDayChange": 0.076346 + }, + "tokenlist": false + }, { + "id": 704, + "address": "0x39e743fee400a5d9b36f1167b70c10e8f06440e5", + "name": "Tokenn Coin", + "buyable": false, + "symbol": "TNC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tncc.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#EB3726", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002847, + "ccyValue": 0.037849, + "ethDayChange": -0.19621682665160926, + "ccyDayChange": -0.164278 + }, + "tokenlist": false + }, { + "id": 810, + "address": "0xefbd6d7def37ffae990503ecdb1291b2f7e38788", + "name": "Evolution", + "buyable": false, + "symbol": "EVO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.486E-7, + "ccyValue": 0.000486, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1558, + "address": "0xf7623a0a44045b907d81aad8479aa3c4a818211d", + "name": "SperaxToken", + "buyable": false, + "symbol": "SPA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000969, + "ccyValue": 0.012885, + "ethDayChange": -0.031, + "ccyDayChange": 0.00869 + }, + "tokenlist": false + }, { + "id": 539, + "address": "0x203393105fefe0192998070dd63005c2a4e9999d", + "name": "The HoloCoin", + "buyable": false, + "symbol": "JEWS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1105, + "address": "0xb72b31907c1c95f3650b64b2469e08edacee5e8f", + "name": "bZx Vesting Token", + "buyable": false, + "symbol": "vBZRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000073353873503584, + "ccyValue": 0.097766, + "ethDayChange": -0.017099376878145518, + "ccyDayChange": 0.001055 + }, + "tokenlist": false + }, { + "id": 107, + "address": "0x624d520bab2e4ad83935fa503fb130614374e850", + "name": "Smartshare Token", + "buyable": false, + "symbol": "SSP", + "decimals": 4, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0x624d520bab2e4ad83935fa503fb130614374e850.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#6059F3", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.11509162243E-7, + "ccyValue": 0.000149, + "ethDayChange": -0.077602021035163858, + "ccyDayChange": -0.03871 + }, + "tokenlist": false + }, { + "id": 870, + "address": "0x5ab55ec290beacae98f54c3eb70860460b167c3c", + "name": "RiverMount", + "buyable": false, + "symbol": "RM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000112, + "ccyValue": 0.0015, + "ethDayChange": -0.970886404990902002, + "ccyDayChange": -0.969992 + }, + "tokenlist": false + }, { + "id": 1274, + "address": "0x31a2bcf633d16dee21e3377c8e62070ef553b051", + "name": "MNET Token", + "buyable": false, + "symbol": "MNET", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1661, + "address": "0xf6c151ea50a4f1a50983eb98998a18be0a549ad5", + "name": "YEARN2.FINANCE", + "buyable": false, + "symbol": "YFI2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002708940321472831, + "ccyValue": 3.610475, + "ethDayChange": -0.002068265071058237, + "ccyDayChange": 0.037206 + }, + "tokenlist": false + }, { + "id": 2414, + "address": "0x7884f51dc1410387371ce61747cb6264e1daee0b", + "name": "Binance Wrapped DOT", + "buyable": false, + "symbol": "BDOT", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1208, + "address": "0x9b8e9f3dee8f07e503493a674eec059a9328b2fe", + "name": "Plutus Defi", + "buyable": false, + "symbol": "PLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 602, + "address": "0xca4b28b4cabdd1b45dc859443e466dd98d3cd2c2", + "name": "TBO Coin", + "buyable": false, + "symbol": "TBO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2072, + "address": "0x26cf82e4ae43d31ea51e72b663d26e26a75af729", + "name": "Moonbase", + "buyable": false, + "symbol": "mbBASED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00017757, + "ccyValue": 0.237815, + "ethDayChange": -0.006768094865197449, + "ccyDayChange": 0.028812 + }, + "tokenlist": false + }, { + "id": 1150, + "address": "0x2859021ee7f2cb10162e67f33af2d22764b31aff", + "name": "Silent Notary Token", + "buyable": false, + "symbol": "SNTR", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0.000003, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2693, + "address": "0x4e31f4ee7ee7dd58cca2be6b4934469e61a634d6", + "name": "Echo Finance", + "buyable": false, + "symbol": "ECHO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2801, + "address": "0x01ac08e821185b6d87e68c67f9dc79a8988688eb", + "name": "coreDAI-wCORE Uniswap pool token", + "buyable": false, + "symbol": "coreDAI-wCOR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1718, + "address": "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41", + "name": "Tixl Token", + "buyable": false, + "symbol": "TXL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000058818973414573, + "ccyValue": 0.078394, + "ethDayChange": 0.018317191042228776, + "ccyDayChange": 0.058391 + }, + "tokenlist": false + }, { + "id": 675, + "address": "0xee361ade8afdc9dfa049f72dd21af5f559da7422", + "name": "Compound cUSDC", + "buyable": false, + "symbol": "KEY", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2519, + "address": "0xf184d359c6ed0ecc4828cc058371c3419c2945bb", + "name": "TimeKeeper", + "buyable": false, + "symbol": "KEEP", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 457, + "address": "0xc30951ff31c04a47b26ce496b0510a3b2d709e92", + "name": "启动公链", + "buyable": false, + "symbol": "betbeb.com", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2849, + "address": "0x247551f2eb3362e222c742e9c788b8957d9bc87e", + "name": "GNY", + "buyable": false, + "symbol": "GNY", + "decimals": 18, + "sendable": false, + "dailyLimit": false, + "displayAddress": "0xb1f871ae9462f1b2c6826e88a7827e76f86751d4", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00195633, + "ccyValue": 2.61, + "ethDayChange": 0.817171041631834141, + "ccyDayChange": 0.891304 + }, + "tokenlist": false + }, { + "id": 1632, + "address": "0x09026430269b7b3b15f2d968077b811d780c9648", + "name": "Yearn Farm Finance", + "buyable": false, + "symbol": "YFF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2328, + "address": "0xaa9d866666c2a3748d6b23ff69e63e52f08d9ab4", + "name": "Fundamenta", + "buyable": false, + "symbol": "FMTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0001114, + "ccyValue": 0.148403, + "ethDayChange": 0.233392382639503986, + "ccyDayChange": 0.286289 + }, + "tokenlist": false + }, { + "id": 1334, + "address": "0x1e3a2446c729d34373b87fd2c9cbb39a93198658", + "name": "DeFi Nation Signals DAO", + "buyable": false, + "symbol": "DSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00107987, + "ccyValue": 1.45, + "ethDayChange": 0.038426402284813109, + "ccyDayChange": 0.090226 + }, + "tokenlist": false + }, { + "id": 155, + "address": "0xf7bd275f39802e7d4a9604547b6548150b63e440", + "name": "JAYZ token", + "buyable": false, + "symbol": "JAYZ", + "decimals": 5, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2639, + "address": "0x8798249c2e607446efb7ad49ec89dd1865ff4272", + "name": "SushiBar", + "buyable": false, + "symbol": "xSUSHI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3028, + "address": "0xa456b515303b2ce344e9d2601f91270f8c2fea5e", + "name": "Cornichon", + "buyable": false, + "symbol": "CORN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000052234468840755, + "ccyValue": 0.069618, + "ethDayChange": -0.030000578630362117, + "ccyDayChange": 0.029867 + }, + "tokenlist": false + }, { + "id": 2501, + "address": "0x531c3a8926e4c4b4cc50dc1de83e1e7fa0b2738e", + "name": "Tako", + "buyable": false, + "symbol": "TAKO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3059, + "address": "0x9081b50bad8beefac48cc616694c26b027c559bb", + "name": "ORAI-ETH Uniswap pool token", + "buyable": false, + "symbol": "ORAI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1877, + "address": "0x6be7e93e45740c314c89a3be52473a0ddf2450fe", + "name": "XCredit", + "buyable": false, + "symbol": "XFYI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000480491203269542, + "ccyValue": 0.64026, + "ethDayChange": -0.676733179119761265, + "ccyDayChange": -0.664083 + }, + "tokenlist": false + }, { + "id": 1202, + "address": "0x13339fd07934cd674269726edf3b5ccee9dd93de", + "name": "CurToken", + "buyable": false, + "symbol": "CUR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00023786, + "ccyValue": 0.316163, + "ethDayChange": -0.10037821482602118, + "ccyDayChange": -0.063917 + }, + "tokenlist": false + }, { + "id": 1289, + "address": "0xa9e8a9d9729e766a72763253f2afd1b1cf9053a0", + "name": "OLD RealToken 9309 Courville St Detroit MI", + "buyable": false, + "symbol": "9309 Courvil", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2369, + "address": "0xdacd69347de42babfaecd09dc88958378780fb62", + "name": "AtariToken", + "buyable": false, + "symbol": "ATRI", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000140352293039155, + "ccyValue": 0.187301, + "ethDayChange": 0.046390017439461716, + "ccyDayChange": 0.093614 + }, + "tokenlist": false + }, { + "id": 3040, + "address": "0x08389495d7456e1951ddf7c3a1314a4bfb646d8b", + "name": "CRPT", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000211147181300351, + "ccyValue": 0.281417, + "ethDayChange": 0.125518023989077825, + "ccyDayChange": 0.17062 + }, + "tokenlist": false + }, { + "id": 2213, + "address": "0xb178bc624ab45258c989f1739bced32e5a71e658", + "name": "Distant Universe Stardust Token", + "buyable": false, + "symbol": "DUST", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2143, + "address": "0x5a50b3d55e9a1089029824a26caaa8f2abfc4bb0", + "name": "xunii.finance", + "buyable": false, + "symbol": "XUNII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 834, + "address": "0x04bc0ab673d88ae9dbc9da2380cb6b79c4bca9ae", + "name": "Yearn BUSD v3", + "buyable": false, + "symbol": "yBUSD v3", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/ybusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2534, + "address": "0xa8006e3ac1bd94e54e3136b8e5dd75db0163e6f4", + "name": "EVERYONESCRYPTO", + "buyable": false, + "symbol": "EOC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00014877, + "ccyValue": 0.198173, + "ethDayChange": 0.589932670727797371, + "ccyDayChange": 0.637266 + }, + "tokenlist": false + }, { + "id": 27, + "address": "0x442bc47357919446eabc18c7211e57a13d983469", + "name": "Chatcoin", + "buyable": false, + "symbol": "CHAT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/chat.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.664E-7, + "ccyValue": 0.001287, + "ethDayChange": -0.053574152617954804, + "ccyDayChange": -0.019802 + }, + "tokenlist": false + }, { + "id": 2956, + "address": "0x75f06b482adbfb04b877d8ee683e2fcdf18ad153", + "name": "RealToken S 18481 Westphalia St Detroit MI", + "buyable": false, + "symbol": "18481 Westph", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1267, + "address": "0x17052a7a28dc713a81b40556341ed97e18d1e40b", + "name": "Bankless Apparel Season 0", + "buyable": false, + "symbol": "BAPS0", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2575, + "address": "0x5fd4f778575876a23b18ffc4d440e64ea91c3407", + "name": "Torro DAO Token", + "buyable": false, + "symbol": "TORRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 415, + "address": "0xf89ba2862dfae69bc2546568d56b087d7454c9c9", + "name": "BaoBoShiCoin", + "buyable": false, + "symbol": "BBSC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1012, + "address": "0x1c608235e6a946403f2a048a38550befe41e1b85", + "name": "ETH-PAMP Uniswap pool token", + "buyable": false, + "symbol": "ETH-PAMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2260, + "address": "0xe95e4440493e5b96e79d63e8dc43ab676dd44e4c", + "name": "AntiSeal", + "buyable": false, + "symbol": "ANTISEAL", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2039, + "address": "0x12fff190563b1d1ba73c5bf9b665895978e20b9a", + "name": "Wojak.FEEL", + "buyable": false, + "symbol": "FEEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1299, + "address": "0xeb9951021698b42e4399f9cbb6267aa35f82d59d", + "name": "Lif", + "buyable": false, + "symbol": "LIF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00007414, + "ccyValue": 0.1, + "ethDayChange": 0.040741803490092722, + "ccyDayChange": 0.094691 + }, + "tokenlist": false + }, { + "id": 2019, + "address": "0x51b5bb678e594536d394612f464f94dd87b5289f", + "name": "NekoToken", + "buyable": false, + "symbol": "NEKO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 974, + "address": "0xc5cea8292e514405967d958c2325106f2f48da77", + "name": "Proof", + "buyable": false, + "symbol": "PRFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00693151, + "ccyValue": 2.63, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 748, + "address": "0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7", + "name": "TEAM", + "buyable": false, + "symbol": "TEAM", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000807, + "ccyValue": 0.010727, + "ethDayChange": -0.168898043254376931, + "ccyDayChange": -0.140602 + }, + "tokenlist": false + }, { + "id": 1755, + "address": "0x87b008e57f640d94ee44fd893f0323af933f9195", + "name": "coin_artist", + "buyable": false, + "symbol": "COIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000455029370644069, + "ccyValue": 0.606463, + "ethDayChange": 0.011873447584044564, + "ccyDayChange": 0.055699 + }, + "tokenlist": false + }, { + "id": 1951, + "address": "0xc99d3815af645b67d292624bacbbee5f8e2038e3", + "name": "LECHON", + "buyable": false, + "symbol": "LECHN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1850, + "address": "0x062f90480551379791fbe2ed74c1fe69821b30d3", + "name": "YMAX", + "buyable": false, + "symbol": "YMAX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.006769093321756532, + "ccyValue": 9.019898, + "ethDayChange": 0.146334425927314356, + "ccyDayChange": 0.166869 + }, + "tokenlist": false + }, { + "id": 1677, + "address": "0xf6f70050f5104231810f185705baedfd7b577621", + "name": "TigerSwap.org", + "buyable": false, + "symbol": "TIGER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3033, + "address": "0x1f3f9d3068568f8040775be2e8c03c103c61f3af", + "name": "Archer DAO Governance Token", + "buyable": false, + "symbol": "ARCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001270214339228353, + "ccyValue": 1.692576, + "ethDayChange": 0.123049882611006684, + "ccyDayChange": 0.1754 + }, + "tokenlist": false + }, { + "id": 487, + "address": "0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0", + "name": "CanYaCoin", + "buyable": false, + "symbol": "CAN", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000012109263236684, + "ccyValue": 0.016139, + "ethDayChange": 0.13595339931369606, + "ccyDayChange": 0.177599 + }, + "tokenlist": false + }, { + "id": 903, + "address": "0xa70d458a4d9bc0e6571565faee18a48da5c0d593", + "name": "BAL-ETH Uniswap pool token", + "buyable": false, + "symbol": "BAL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1860, + "address": "0x4e03295deef7e03117f75ca284b5cecbb7f54a03", + "name": "YearnCash.Finance", + "buyable": false, + "symbol": "YEARN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 460, + "address": "0x14094949152eddbfcd073717200da82fed8dc960", + "name": "Fulcrum SAI iToken", + "buyable": false, + "symbol": "iSAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00392823, + "ccyValue": 1.87, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3013, + "address": "0xfdfe8b7ab6cf1bd1e3d14538ef40686296c42052", + "name": "Skraps", + "buyable": false, + "symbol": "SKRP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 7.124E-7, + "ccyValue": 0.000951, + "ethDayChange": -0.810026666666666667, + "ccyDayChange": -0.798773 + }, + "tokenlist": false + }, { + "id": 864, + "address": "0xe8ff5c9c75deb346acac493c463c8950be03dfba", + "name": "Vibe Coin", + "buyable": false, + "symbol": "VIBE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001591, + "ccyValue": 0.021153, + "ethDayChange": 0.003785488958990536, + "ccyDayChange": 0.038439 + }, + "tokenlist": false + }, { + "id": 1304, + "address": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3152, + "address": "0x683e683fbe6cf9b635539712c999f3b3edcb8664", + "name": "FARM_usdn3CRV", + "buyable": false, + "symbol": "fusdn3CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 942, + "address": "0xa632fe8d996ca5bf80e20f8d4ef38a156c619df1", + "name": "Uniswap: RealToken 15634 Liberal St, Detroit MI", + "buyable": false, + "symbol": "RealT Libera", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/uniswap.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#CC73DF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2562, + "address": "0x42600c4f6d84aa4d246a3957994da411fa8a4e1c", + "name": "interest-bearing DUSD", + "buyable": false, + "symbol": "ibDUSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 357, + "address": "0x9ec251401eafb7e98f37a1d911c0aea02cb63a80", + "name": "Bitcratic", + "buyable": false, + "symbol": "BCT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1E-9, + "ccyValue": 0.000001, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 705, + "address": "0x7cac16770dd5f2a59859a395a492224f05a846b6", + "name": "Opyn ETH Put $200 05/29/20", + "buyable": false, + "symbol": "oETH $200 Pu", + "decimals": 7, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2401, + "address": "0x649ebf73043ffcc70a59855ecd8a568fd996415a", + "name": "YFIII", + "buyable": false, + "symbol": "YFIII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02931549, + "ccyValue": 39.47, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2001, + "address": "0xed35197cadf01fcbfe6cfc11081f299cffb095bf", + "name": "Eminence YFI", + "buyable": false, + "symbol": "eYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 725, + "address": "0x9b208194acc0a8ccb2a8dcafeacfbb7dcc093f81", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1457, + "address": "0x28bc0c76a5f8f8461be181c0cbddf715bc1d96af", + "name": "TOB-XAMP Uniswap pool token", + "buyable": false, + "symbol": "TOB-XAMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2591, + "address": "0xe0e6b25b22173849668c85e06bc2ce1f69baff8c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-12", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 404.041454515797114061, + "ccyValue": 538542.914152, + "ethDayChange": -0.007241227806469967, + "ccyDayChange": 0.029458 + }, + "tokenlist": false + }, { + "id": 2364, + "address": "0xbc16da9df0a22f01a16bc0620a27e7d6d6488550", + "name": "Percent", + "buyable": false, + "symbol": "PCT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001268, + "ccyValue": 0.017083, + "ethDayChange": -0.006269592476489028, + "ccyDayChange": 0.089408 + }, + "tokenlist": false + }, { + "id": 2281, + "address": "0xac0fe6c0b239eedcc12bc3e997e5492b04cc61c3", + "name": "Uniswap V2 XETH-ETH", + "buyable": false, + "symbol": "XETH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1036, + "address": "0xca0e7269600d353f70b14ad118a49575455c0f2f", + "name": "AMLT", + "buyable": false, + "symbol": "AMLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000044, + "ccyValue": 0.005874, + "ethDayChange": 0.002277904328018223, + "ccyDayChange": 0.04112 + }, + "tokenlist": false + }, { + "id": 583, + "address": "0x88a3e4f35d64aad41a6d4030ac9afe4356cb84fa", + "name": "Presearch", + "buyable": false, + "symbol": "PRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000037723081206479, + "ccyValue": 0.050266, + "ethDayChange": 0.067498315497937461, + "ccyDayChange": 0.109257 + }, + "tokenlist": false + }, { + "id": 1200, + "address": "0x70258aa9830c2c84d855df1d61e12c256f6448b4", + "name": "TRB-ETH Uniswap pool token", + "buyable": false, + "symbol": "TRB-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 944, + "address": "0x34ac258ffc47ca4251cd7b5c10bffa6e9e3a2b57", + "name": "Insidual PLT Token", + "buyable": false, + "symbol": "DUAL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3142, + "address": "0x1337def16f9b486faed0293eb623dc8395dfe46a", + "name": "Armor", + "buyable": false, + "symbol": "ARMOR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004221, + "ccyValue": 0.5626, + "ethDayChange": -0.302871215459408182, + "ccyDayChange": -0.275191 + }, + "tokenlist": false + }, { + "id": 2777, + "address": "0x20c36f062a31865bed8a5b1e512d9a1a20aa333a", + "name": "DefiDollar DAO", + "buyable": false, + "symbol": "DFD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dfd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#272727", + "description": "DefiDollar DAO is the governance token of the DefiDollar protocol.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000267240893660101, + "ccyValue": 0.356634, + "ethDayChange": 0.017136976271504886, + "ccyDayChange": 0.059223 + }, + "tokenlist": false + }, { + "id": 362, + "address": "0xbe15c4ebb73a67ddd94b83b237d2bdde5a5079ba", + "name": "Complete New Commerce Chain", + "buyable": false, + "symbol": "CNCC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 523, + "address": "0x7e44aadc47a3ecdbf5f88463346460fa9d8875ca", + "name": "Pjoter", + "buyable": false, + "symbol": "PJO", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 766, + "address": "0x0ebb614204e47c09b6c3feb9aaecad8ee060e23e", + "name": "CPAY Token", + "buyable": false, + "symbol": "CPAY", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00004295, + "ccyValue": 0.05724, + "ethDayChange": -0.268898837387465951, + "ccyDayChange": -0.240174 + }, + "tokenlist": false + }, { + "id": 761, + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "name": "USDC-USDT Uniswap pool token", + "buyable": false, + "symbol": "USDC-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-13", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1702748438.673205650993212031, + "ccyValue": 2272093345975.544719, + "ethDayChange": -0.038147030424857211, + "ccyDayChange": 0.00027 + }, + "tokenlist": false + }, { + "id": 2034, + "address": "0x6c5ba91642f10282b576d91922ae6448c9d52f4e", + "name": "Phala", + "buyable": false, + "symbol": "PHA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000190454908568759, + "ccyValue": 0.253838, + "ethDayChange": -0.056306149453776447, + "ccyDayChange": -0.019166 + }, + "tokenlist": false + }, { + "id": 2492, + "address": "0xb2b9335791346e94245dcd316a9c9ed486e6dd7f", + "name": "Power Index Pool Token", + "buyable": false, + "symbol": "PIPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00170244, + "ccyValue": 2.4, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2026, + "address": "0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45", + "name": "DiFy.Finance", + "buyable": false, + "symbol": "YFIII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.10810961349411129, + "ccyValue": 144.057353, + "ethDayChange": -0.269566315263996459, + "ccyDayChange": -0.240983 + }, + "tokenlist": false + }, { + "id": 1520, + "address": "0xf9c36c7ad7fa0f0862589c919830268d1a2581a1", + "name": "Boa", + "buyable": false, + "symbol": "BOA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 1.153493105310977366, + "ccyValue": 1539.341615, + "ethDayChange": 0.147222387739592752, + "ccyDayChange": 0.134145 + }, + "tokenlist": false + }, { + "id": 3105, + "address": "0x4e98493920b16dd6642e9d48497c8d0a49150f6f", + "name": "RealToken S 13991 Warwick St Detroit MI", + "buyable": false, + "symbol": "13991 Warwic", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1990, + "address": "0x78175901e9b04090bf3b3d3cb7f91ca986fb1af6", + "name": "Antique Zombie Shards", + "buyable": false, + "symbol": "ZOMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.06003822, + "ccyValue": 85.14, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1516, + "address": "0x7f0c8b125040f707441cad9e5ed8a8408673b455", + "name": "CSP DAO", + "buyable": false, + "symbol": "NEBO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00360951, + "ccyValue": 4.8, + "ethDayChange": -0.195838022947508663, + "ccyDayChange": -0.166058 + }, + "tokenlist": false + }, { + "id": 1509, + "address": "0x0bf6261297198d91d4fa460242c69232146a5703", + "name": "Libera", + "buyable": false, + "symbol": "LIB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00032678, + "ccyValue": 0.412992, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2225, + "address": "0x05f21e62952566cefb77f5153ec6b83c14fb6b1d", + "name": "RFuel-ETH Uniswap pool token", + "buyable": false, + "symbol": "RFuel-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1075, + "address": "0x1aa95f4ca4a9bc258ba848db4355aeea6413e815", + "name": "Budget", + "buyable": false, + "symbol": "BUDGET", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1741, + "address": "0xb1a824a6caf1f789aa7ca1072e36e83cd62ba3ee", + "name": "LAYER-ETH Uniswap pool token", + "buyable": false, + "symbol": "LAYER-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1073, + "address": "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6", + "name": "QASH", + "buyable": false, + "symbol": "QASH", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000039512564482481, + "ccyValue": 0.052662, + "ethDayChange": 0.011880165046450978, + "ccyDayChange": 0.051705 + }, + "tokenlist": false + }, { + "id": 1302, + "address": "0x89cf2c569bc7dfb047083572794e560d0f668f70", + "name": "Lally", + "buyable": false, + "symbol": "LALLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 288, + "address": "0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd", + "name": "Free Coin", + "buyable": false, + "symbol": "FREE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 3E-10, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2353, + "address": "0x1c7bbadc81e18f7177a95eb1593e5f5f35861b10", + "name": "Auric Network", + "buyable": false, + "symbol": "AUSCM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00005605, + "ccyValue": 0.07469, + "ethDayChange": -0.028851750753111541, + "ccyDayChange": 0.009188 + }, + "tokenlist": false + }, { + "id": 3154, + "address": "0xc465c0a16228ef6fe1bf29c04fdb04bb797fd537", + "name": "SDT-ETH Uniswap pool token", + "buyable": false, + "symbol": "SDT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1885, + "address": "0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15", + "name": "Fulcrum USDC iToken", + "buyable": false, + "symbol": "iUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1312, + "address": "0x0461c4e4b916bfc9449f853c7a854033b43c3a6c", + "name": "Poof.eth", + "buyable": false, + "symbol": "POOF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 833, + "address": "0xc2cb1040220768554cf699b0d863a3cd4324ce32", + "name": "Yearn DAI v3", + "buyable": false, + "symbol": "yDAI v3", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/ydai.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2052, + "address": "0x1b7c4d4f226ccf3211b0f99c4fdfb84a2606bf8e", + "name": "OrbV2", + "buyable": false, + "symbol": "ORBV2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00074746, + "ccyValue": 1.02, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2976, + "address": "0xdef6093cbed73dea0d1da40317e37666964bd110", + "name": "Exposure Coin", + "buyable": false, + "symbol": "EXP", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2717, + "address": "0x86ed939b500e121c0c5f493f399084db596dad20", + "name": "SpaceChainV2", + "buyable": false, + "symbol": "SPC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000023575472755798, + "ccyValue": 0.031462, + "ethDayChange": -0.185085628904320774, + "ccyDayChange": -0.157102 + }, + "tokenlist": false + }, { + "id": 2998, + "address": "0x9e70240d2a8a30a592d3f076441c4f303b26de12", + "name": "Wrapped OCT", + "buyable": false, + "symbol": "OCT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2961, + "address": "0x9d3a2f281ec3af3b0fd4c05222cbe168f390b56b", + "name": "New Year Bull Defi", + "buyable": false, + "symbol": "NYBD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1041, + "address": "0x61cdb66e56fad942a7b5ce3f419ffe9375e31075", + "name": "RAIN Network", + "buyable": false, + "symbol": "RAIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.43E-8, + "ccyValue": 0.000018, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2047, + "address": "0x4fda00d490c1c05ff15d7313d1cebe9c711e434b", + "name": "WHALE-ETH Uniswap pool token", + "buyable": false, + "symbol": "WHALE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1270, + "address": "0x95172ccbe8344fecd73d0a30f54123652981bd6f", + "name": "Meridian Network", + "buyable": false, + "symbol": "LOCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.00010578786738713, + "ccyValue": 0.141174, + "ethDayChange": -0.242953052478820948, + "ccyDayChange": -0.212155 + }, + "tokenlist": false + }, { + "id": 2931, + "address": "0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31", + "name": "Yearn Ecosystem Pie", + "buyable": false, + "symbol": "YPIE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001123021140233677, + "ccyValue": 1.496762, + "ethDayChange": -0.072867491036084823, + "ccyDayChange": -0.036379 + }, + "tokenlist": false + }, { + "id": 2580, + "address": "0x0b38210ea11411557c13457d4da7dc6ea731b88a", + "name": "API3", + "buyable": true, + "symbol": "API3", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00398986, + "ccyValue": 5.31, + "ethDayChange": 0.091435901900396692, + "ccyDayChange": 0.132751 + }, + "onchainEthPrice": 0.004501, + "tokenlist": true + }, { + "id": 2795, + "address": "0xd037a81b22e7f814bc6f87d50e5bd67d8c329fa2", + "name": "EMO tokens", + "buyable": false, + "symbol": "EMO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3092, + "address": "0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03", + "name": "TRYfinance", + "buyable": false, + "symbol": "TRY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2124, + "address": "0xb944b46bbd4ccca90c962ef225e2804e46691ccf", + "name": "Dcore", + "buyable": false, + "symbol": "DCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00348637, + "ccyValue": 4.4, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 626, + "address": "0xe0a84699a583d467001fcfe1d52930cf6f3b0bfa", + "name": "WBTC USDC RSI Set", + "buyable": false, + "symbol": "WBTCCUSDCRSI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-15", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.114875161439610966, + "ccyValue": 153.193075, + "ethDayChange": -0.022086747332879131, + "ccyDayChange": 0.017976 + }, + "tokenlist": false + }, { + "id": 2556, + "address": "0x6e31ef0b62a8abe30d80d35476ca78897dffa769", + "name": "BOOB-ETH Uniswap pool token", + "buyable": false, + "symbol": "BOOB-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2483, + "address": "0x640704d106e79e105fda424f05467f005418f1b5", + "name": "FARM_tbtc/sbtcCrv", + "buyable": false, + "symbol": "ftbtc/sbtcCr", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2151, + "address": "0xa150db9b1fa65b44799d4dd949d922c0a33ee606", + "name": "Digital Reserve Currency", + "buyable": false, + "symbol": "DRC", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001868191138895, + "ccyValue": 0.00249, + "ethDayChange": 0.023843102177917113, + "ccyDayChange": 0.065013 + }, + "tokenlist": false + }, { + "id": 816, + "address": "0xaa1a039450123f8d55edea10e48bc8d44c87edde", + "name": "Jivinci", + "buyable": false, + "symbol": "JIV", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1973, + "address": "0x221f67c40cf2e0692a72f498a296c1100b4f753b", + "name": "BALST", + "buyable": false, + "symbol": "BLST", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1894, + "address": "0x67c5870b4a41d4ebef24d2456547a03f1f3e094b", + "name": "GoodDollar", + "buyable": false, + "symbol": "G$", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1889, + "address": "0xb48e0f69e6a3064f5498d495f77ad83e0874ab28", + "name": "CXN Network", + "buyable": false, + "symbol": "CXN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000265, + "ccyValue": 0.00356, + "ethDayChange": -0.005221733280703944, + "ccyDayChange": 0.042155 + }, + "tokenlist": false + }, { + "id": 517, + "address": "0x25ad82a28a538f786b68ace7bb036af19422ba65", + "name": "Janusz Coin Token", + "buyable": false, + "symbol": "CEBULA", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2404, + "address": "0xabc6787c1944661adba47bb24e0d12b898071814", + "name": "THICC-ETH Uniswap pool token", + "buyable": false, + "symbol": "THICC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2308, + "address": "0xe20303b4f80ef868f653d1fed3f797b5116c3a2e", + "name": "Debase", + "buyable": false, + "symbol": "DEBASE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2935, + "address": "0xc0748cf90e231b8f21f75b7ad69732f19c76b751", + "name": "dotc.pro token", + "buyable": false, + "symbol": "DOTC", + "decimals": 12, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2442, + "address": "0xbf4a9a37ecfc21825011285222c36ab35de51f14", + "name": "Nyan V2", + "buyable": false, + "symbol": "NYAN-2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00837853, + "ccyValue": 11.23, + "ethDayChange": -0.112450437337858724, + "ccyDayChange": -0.03273 + }, + "tokenlist": false + }, { + "id": 2331, + "address": "0x9def9511fec79f83afcbffe4776b1d817dc775ae", + "name": "ANT-ETH Uniswap pool token", + "buyable": false, + "symbol": "ANT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2594, + "address": "0x514906fc121c7878424a5c928cad1852cc545892", + "name": "FARM-USDC Uniswap pool token", + "buyable": false, + "symbol": "FARM-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1920, + "address": "0xcce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "name": "COIN-ETH Uniswap pool token", + "buyable": false, + "symbol": "COIN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1843, + "address": "0x49e833337ece7afe375e44f4e3e8481029218e5c", + "name": "Value Liquidity", + "buyable": false, + "symbol": "VALUE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00351, + "ccyValue": 4.678, + "ethDayChange": -0.029042522866990294, + "ccyDayChange": 0.009143 + }, + "tokenlist": false + }, { + "id": 2387, + "address": "0xe709b44ba2adfde8bb1a009d04dc419ec067d255", + "name": "YDMAN", + "buyable": false, + "symbol": "YDAMN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 164, + "address": "0x4df47b4969b2911c966506e3592c41389493953b", + "name": "FundRequest", + "buyable": false, + "symbol": "FND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000086508, + "ccyValue": 0.011502, + "ethDayChange": 0.000184988207001804, + "ccyDayChange": 0.035097 + }, + "tokenlist": false + }, { + "id": 3186, + "address": "0x6a11f3e5a01d129e566d783a7b6e8862bfd66cca", + "name": "1inch Liquidity Pool (ETH-WBTC)", + "buyable": false, + "symbol": "1LP-ETH-WBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3102, + "address": "0x4e977830ba4bd783c0bb7f15d3e243f73ff57121", + "name": "Aave stable debt bearing WETH", + "buyable": false, + "symbol": "stableDebtWE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 696, + "address": "0x9910bbbdbcda036f52e00387e06248947892fb45", + "name": "Aave Interest bearing ETH-777", + "buyable": false, + "symbol": "aETH777", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 801, + "address": "0x60c91df5e88084844beb7728cee36616a135c847", + "name": "Culture is Currency T-Shirt", + "buyable": false, + "symbol": "NEUE-001", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 185, + "address": "0xeeddaa78e0b2de769e969bd049c8faff3280df97", + "name": "Gold Pressed Latinum", + "buyable": false, + "symbol": "GPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 549, + "address": "0xc38b08612f5d4fe3f9dd81d2eec024e7cbee3a53", + "name": "BIG test", + "buyable": false, + "symbol": "BIG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 701, + "address": "0x755c1a8f71f4210cd7b60b9439451efcbeba33d1", + "name": "LPT-ETH Uniswap pool token", + "buyable": false, + "symbol": "LPT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2893, + "address": "0x3452a7f30a712e415a0674c0341d44ee9d9786f9", + "name": "INDEX-ETH Uniswap pool token", + "buyable": false, + "symbol": "INDEX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3130, + "address": "0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a", + "name": "Badger Sett Digg", + "buyable": false, + "symbol": "bDIGG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2782, + "address": "0x96dd2c778fb281294fa9c1d2b8af3b47369306f2", + "name": "theovorideA", + "buyable": false, + "symbol": "OvOa", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.273605215122468, + "ccyValue": 1697.094185, + "ethDayChange": -0.005414402028706525, + "ccyDayChange": 0.034193 + }, + "tokenlist": false + }, { + "id": 2230, + "address": "0x5506861bbb104baa8d8575e88e22084627b192d8", + "name": "Unicore", + "buyable": false, + "symbol": "UNICORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.6227021534549099, + "ccyValue": 829.937279, + "ethDayChange": -0.037865650015774286, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3015, + "address": "0xc7e70f53b08005a7adf3db97f6d54084737a28bb", + "name": "SuperDAO Token", + "buyable": false, + "symbol": "SDAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3006, + "address": "0xbba17b81ab4193455be10741512d0e71520f43cb", + "name": "1inch Liquidity Pool (ETH-USDT)", + "buyable": false, + "symbol": "1LP-ETH-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2919, + "address": "0x6f23d2fedb4ff4f1e9f8c521f66e5f2a1451b6f3", + "name": "MARK-ETH Uniswap pool token", + "buyable": false, + "symbol": "MARK-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 946, + "address": "0x57755f7dec33320bca83159c26e93751bfd30fbe", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-27", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000301382535472423, + "ccyValue": 0.402155, + "ethDayChange": -0.038311856269947174, + "ccyDayChange": -0.001281 + }, + "tokenlist": false + }, { + "id": 2188, + "address": "0xa46b7fdaee8fe0bd3a0778c3fcf003f6aa4899f7", + "name": "kCashBox AREIT", + "buyable": false, + "symbol": "kCB1", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2964, + "address": "0x03066da434e5264ef0b32f787923f974a5726fdc", + "name": "BCS", + "buyable": false, + "symbol": "BCS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00010477721887472, + "ccyValue": 0.139647, + "ethDayChange": -0.0389174566618969, + "ccyDayChange": -0.003639 + }, + "tokenlist": false + }, { + "id": 2086, + "address": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2270, + "address": "0xd2992c93bdb636f00f7756074dbfca0489271e0e", + "name": "ETHTurin", + "buyable": false, + "symbol": "TRN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2697, + "address": "0xd6055c0d88c17db6240d3c52dff5539d69a4aea8", + "name": "ReflectIV.finance", + "buyable": false, + "symbol": "RFIV", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2496, + "address": "0xb753428af26e81097e7fd17f40c88aaa3e04902c", + "name": "Spice", + "buyable": false, + "symbol": "SFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.516655077822712226, + "ccyValue": 689.47847, + "ethDayChange": -0.085697780185374345, + "ccyDayChange": -0.044832 + }, + "tokenlist": false + }, { + "id": 2092, + "address": "0xc57d533c50bc22247d49a368880fb49a1caa39f7", + "name": "PowerTrade Fuel Token", + "buyable": false, + "symbol": "PTF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000503297686700612, + "ccyValue": 0.67065, + "ethDayChange": 0.133607965051344087, + "ccyDayChange": 0.177968 + }, + "tokenlist": false + }, { + "id": 260, + "address": "0x2d6a9ac293feccadf7d86fcab31bfae082ac8cc9", + "name": "Art Money", + "buyable": false, + "symbol": "MFA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1832, + "address": "0x1d37986f252d0e349522ea6c3b98cb935495e63e", + "name": "ChartEx", + "buyable": false, + "symbol": "CHART", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000012301250266757, + "ccyValue": 0.016392, + "ethDayChange": 0.466180007956734207, + "ccyDayChange": 0.530246 + }, + "tokenlist": false + }, { + "id": 1859, + "address": "0x87645f94f6ea37f9f2f56d4521315e9c1ed89aa4", + "name": "OLD RealToken S 10974 Worden St Detroit MI", + "buyable": false, + "symbol": "10974 Worden", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 786, + "address": "0xf21d65979bd89b28f05ef19f3c65dd2a1d02946d", + "name": "BloodyPercent", + "buyable": false, + "symbol": "BPC", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 430, + "address": "0xbf52f2ab39e26e0951d2a02b49b7702abe30406a", + "name": "ODEM Token", + "buyable": false, + "symbol": "ODEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001105, + "ccyValue": 0.014804, + "ethDayChange": -0.042461005199306759, + "ccyDayChange": 0.008172 + }, + "tokenlist": false + }, { + "id": 1712, + "address": "0x86642d169db9f57a02c65052049cbbbfb3e3b08c", + "name": "dRAY", + "buyable": false, + "symbol": "DRAY", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000955890196546346, + "ccyValue": 1.27401, + "ethDayChange": 55.461322891101358535, + "ccyDayChange": 60.611858 + }, + "tokenlist": false + }, { + "id": 2415, + "address": "0x12b6de3d168e9a9a45d856dbb672fdeb2889f9c5", + "name": "text.finance", + "buyable": false, + "symbol": "TEXT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2557, + "address": "0x921c87490ccbef90a3b0fc1951bd9064f7220af6", + "name": "Ectoplasma", + "buyable": false, + "symbol": "ECTO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00011848, + "ccyValue": 0.158172, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1650, + "address": "0x96d62cdcd1cc49cb6ee99c867cb8812bea86b9fa", + "name": "Yearn Finance Protocol", + "buyable": false, + "symbol": "YFP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000163567192636575, + "ccyValue": 0.218002, + "ethDayChange": -0.000765351596533773, + "ccyDayChange": 0.039248 + }, + "tokenlist": false + }, { + "id": 495, + "address": "0x33493d18bac3649f00163d3f0e1e2d374a7dd4c6", + "name": "Multibot", + "buyable": false, + "symbol": "MBT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2907, + "address": "0x15a2b3cfafd696e1c783fe99eed168b78a3a371e", + "name": "Yearn Lido St. Ether Vault", + "buyable": false, + "symbol": "yvstETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 566, + "address": "0x810908b285f85af668f6348cd8b26d76b3ec12e1", + "name": "Swapcoinz", + "buyable": false, + "symbol": "SPAZ", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00009711, + "ccyValue": 0.129381, + "ethDayChange": 0.008306510227390717, + "ccyDayChange": 0.04465 + }, + "tokenlist": false + }, { + "id": 1245, + "address": "0xd7067192df19c415ee35cc86708020eaf924cd75", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 436, + "address": "0x6c158864d3b06113bfd9f5f2c219725fd5bc3923", + "name": "Mini Ethereum", + "buyable": false, + "symbol": "mETH", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2994, + "address": "0x7eaf9c89037e4814dc0d9952ac7f888c784548db", + "name": "Royale", + "buyable": false, + "symbol": "ROYA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000175044546876056, + "ccyValue": 0.233299, + "ethDayChange": 0.04597986846609333, + "ccyDayChange": 0.087144 + }, + "tokenlist": false + }, { + "id": 2892, + "address": "0x8a9f904b4ead6a97f3ab304d0d2196f5c602c807", + "name": "RealToken S 19311 Keystone St Detroit MI", + "buyable": false, + "symbol": "19311 Keysto", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2696, + "address": "0x6591c4bcd6d7a1eb4e537da8b78676c1576ba244", + "name": "BOND-USDC Uniswap pool token", + "buyable": false, + "symbol": "BOND-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 208, + "address": "0x5321b18277e3ca30eeaf58f1888f6b0f05b1557c", + "name": "Ham Token", + "buyable": false, + "symbol": "HAM", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1915, + "address": "0x0e9b56d2233ea2b5883861754435f9c51dbca141", + "name": "Rare Pepe", + "buyable": false, + "symbol": "rPepe", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000008195723135075, + "ccyValue": 0.010937, + "ethDayChange": -0.073929589257062147, + "ccyDayChange": -0.050443 + }, + "tokenlist": false + }, { + "id": 3087, + "address": "0x91d6f6e9026e43240ce6f06af6a4b33129ebde94", + "name": "RiveX Token", + "buyable": false, + "symbol": "RVX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005419, + "ccyValue": 0.071963, + "ethDayChange": -0.086480107889413351, + "ccyDayChange": -0.050332 + }, + "tokenlist": false + }, { + "id": 1645, + "address": "0x375155ead81193289f3af6170d4468bb18e74222", + "name": "Stakerium Finance", + "buyable": false, + "symbol": "STKF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2190, + "address": "0x9db640e18390d2408c71e9927d8518c79d5569c6", + "name": "Uniswap V2 PLOT-ETH", + "buyable": false, + "symbol": "PLOT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1921, + "address": "0xb03b41052d24e1b0f450c26b87a4edd4d30c1cc8", + "name": "GMR-ETH Uniswap pool token", + "buyable": false, + "symbol": "GMR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1808, + "address": "0xce4fe9b4b8ff61949dcfeb7e03bc9faca59d2eb3", + "name": "Cream Balancer", + "buyable": false, + "symbol": "crBAL", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2861, + "address": "0xfba9c7a8ea50e825b2f567cac91d8939a071ad48", + "name": "PWDR-ETH Uniswap pool token", + "buyable": false, + "symbol": "PWDR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1761, + "address": "0xaa19673aa1b483a5c4f73b446b4f851629a7e7d6", + "name": "Xplosive Ethereum", + "buyable": false, + "symbol": "xETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000052386038746547, + "ccyValue": 0.06982, + "ethDayChange": 0.751455658527148111, + "ccyDayChange": 2.955359 + }, + "tokenlist": false + }, { + "id": 271, + "address": "0xab95e915c123fded5bdfb6325e35ef5515f1ea69", + "name": "XENON", + "buyable": false, + "symbol": "XNN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000065, + "ccyValue": 0.008662, + "ethDayChange": 2.528114680482946494, + "ccyDayChange": 2.656395 + }, + "tokenlist": false + }, { + "id": 2055, + "address": "0xebfb684dd2b01e698ca6c14f10e4f289934a54d6", + "name": "UNI-USDC Uniswap pool token", + "buyable": false, + "symbol": "UNI-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2767, + "address": "0x01688e1a356c38a8ed7c565bf6c6bfd59543a560", + "name": "BFC-ETH Uniswap pool token", + "buyable": false, + "symbol": "BFC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3035, + "address": "0x3c0ffff15ea30c35d7a85b85c0782d6c94e1d238", + "name": "Curve.fi ETH/sETH Gauge Deposit", + "buyable": false, + "symbol": "eCRV-gauge", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2727, + "address": "0x41599149f1b52035392402f9e311b1edb0c9f699", + "name": "RealToken S 14319 Rosemary St Detroit MI", + "buyable": false, + "symbol": "14319 Rosema", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1492, + "address": "0x471eb7dcf6647abaf838a5aad94940ce6932198c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2634, + "address": "0x6c3c78838c761c6ac7be9f59fe808ea2a6e4379d", + "name": "Aave variable debt bearing DAI", + "buyable": false, + "symbol": "variableDebt", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2864, + "address": "0x478f9775dcfaabb03e0d313f7a592ee6c7c3e147", + "name": "FAT-ETH Uniswap pool token", + "buyable": false, + "symbol": "FAT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 131, + "address": "0xf5dce57282a584d2746faf1593d3121fcac444dc", + "name": "Compound Sai", + "buyable": false, + "symbol": "cSAI", + "decimals": 8, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0xf5dce57282a584d2746faf1593d3121fcac444dc.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000113527545519511, + "ccyValue": 0.150948, + "ethDayChange": 0.014247744027351459, + "ccyDayChange": 0.049635 + }, + "tokenlist": false + }, { + "id": 1486, + "address": "0xae9cbe6ebf72a51c9fcea3830485614486318fd4", + "name": "newtonium.org", + "buyable": false, + "symbol": "NEWTON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002329, + "ccyValue": 0.029156, + "ethDayChange": 0.009742706331721841, + "ccyDayChange": -0.014234 + }, + "tokenlist": false + }, { + "id": 3132, + "address": "0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a", + "name": "Interest Bearing ETH", + "buyable": false, + "symbol": "ibETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.0431805068044961, + "ccyValue": 1390.350726, + "ethDayChange": 0.026096650048814905, + "ccyDayChange": 0.06648 + }, + "tokenlist": false + }, { + "id": 1701, + "address": "0x63de5e8d274f8eef1c02d702f18f6ddba214cf2c", + "name": "YFVLite Protocol", + "buyable": false, + "symbol": "YFVL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2838, + "address": "0x57ab1e02fee23774580c119740129eac7081e9d3", + "name": "Synth sUSD", + "buyable": false, + "symbol": "sUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/susd.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#1E1A31", + "displayAddress": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", + "kyberAddress": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000752840662136439, + "ccyValue": 1.003853, + "ethDayChange": -0.043606894855490986, + "ccyDayChange": -0.007387 + }, + "tokenlist": false + }, { + "id": 2229, + "address": "0xcd760982e2e727b342323bff7348f4b90907d07e", + "name": "CounterCore", + "buyable": false, + "symbol": "COUNTERCORE", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3113, + "address": "0x9856c5ca15a4ac9c65aac090c38a9f39eb3b5eec", + "name": "RealToken S 18273 Monte Vista St Detroit MI", + "buyable": false, + "symbol": "18273 Monte ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 908, + "address": "0x3db6ba6ab6f95efed1a6e794cad492faaabf294d", + "name": "LTO Network Token", + "buyable": false, + "symbol": "LTO", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001578, + "ccyValue": 0.2105, + "ethDayChange": -0.011976144252984241, + "ccyDayChange": 0.02849 + }, + "tokenlist": false + }, { + "id": 2000, + "address": "0x91af0fbb28aba7e31403cb457106ce79397fd4e6", + "name": "Aergo", + "buyable": false, + "symbol": "AERGO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003688, + "ccyValue": 0.049021, + "ethDayChange": 0.028730822873082287, + "ccyDayChange": 0.070328 + }, + "tokenlist": false + }, { + "id": 44, + "address": "0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43", + "name": "Elementeum", + "buyable": false, + "symbol": "ELET", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/elet.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#CFA03B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000949, + "ccyValue": 0.011877, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1206, + "address": "0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06", + "name": "Patientory", + "buyable": false, + "symbol": "PTOY", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00000725648321127, + "ccyValue": 0.009671, + "ethDayChange": -0.001297126605788135, + "ccyDayChange": 0.037995 + }, + "tokenlist": false + }, { + "id": 294, + "address": "0xf53ad2c6851052a81b42133467480961b2321c09", + "name": "Pooled Ether", + "buyable": false, + "symbol": "PETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.175344, + "ccyValue": 240.93, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1879, + "address": "0xf0a0f3a6fa6bed75345171a5ea18abcadf6453ba", + "name": "Yearn Finance Bit", + "buyable": false, + "symbol": "YFBT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.03251283, + "ccyValue": 43.73, + "ethDayChange": -0.05509487572974759, + "ccyDayChange": -0.008912 + }, + "tokenlist": false + }, { + "id": 918, + "address": "0x2a5c5212f399aa04a0ce28dbe48c1a17fca78df4", + "name": "XDAC COIN", + "buyable": false, + "symbol": "XDAC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 446, + "address": "0xe03b4386b75e121e04d580d6b8376ceee0615ca8", + "name": "Digiverse", + "buyable": false, + "symbol": "DIGI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 1.2E-9, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1693, + "address": "0x34c3f50e408abac32436d7f744f89379e5c2b972", + "name": "CocktailToken", + "buyable": false, + "symbol": "COCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1652, + "address": "0x47632da9227e322eda59f9e7691eacc6430ac87c", + "name": "YFIBusiness.Finance", + "buyable": false, + "symbol": "YFIB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00179995, + "ccyValue": 2.3, + "ethDayChange": -0.048622049325031449, + "ccyDayChange": -0.053498 + }, + "tokenlist": false + }, { + "id": 2917, + "address": "0x96cf107e446a6e528ffd045f4eb6dff3cdb6a666", + "name": "3XT TOKEN", + "buyable": false, + "symbol": "3XT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.11325255754536766, + "ccyValue": 150.942981, + "ethDayChange": -0.002068265071058222, + "ccyDayChange": 0.037206 + }, + "tokenlist": false + }, { + "id": 1070, + "address": "0xf8e386eda857484f5a12e4b5daa9984e06e73705", + "name": "Indorse Token", + "buyable": false, + "symbol": "IND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000006577115747679, + "ccyValue": 0.008766, + "ethDayChange": 0.527878286082538394, + "ccyDayChange": 0.588043 + }, + "tokenlist": false + }, { + "id": 1044, + "address": "0xbdc5bac39dbe132b1e030e898ae3830017d7d969", + "name": "Snovio", + "buyable": false, + "symbol": "SNOV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 8.763E-7, + "ccyValue": 0.00118, + "ethDayChange": 0.005853994490358127, + "ccyDayChange": -0.030403 + }, + "tokenlist": false + }, { + "id": 1343, + "address": "0xf036ee5a0f68e928bb794730dfc8481a581d9c59", + "name": "ThibzEC20", + "buyable": false, + "symbol": "THI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1104, + "address": "0xbd9515ff22188ecebaac76946cc9c7afcb52b6b3", + "name": "Kitty Token", + "buyable": false, + "symbol": "KITT", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1085, + "address": "0x78481fb80caabb252909218164266ac83f815000", + "name": "Ethereum High Yield Set", + "buyable": false, + "symbol": "EHY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-45", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.317072922207148613, + "ccyValue": 422.774031, + "ethDayChange": -0.005171329765257522, + "ccyDayChange": 0.032838 + }, + "tokenlist": false + }, { + "id": 1689, + "address": "0xb1ec548f296270bc96b8a1b3b3c8f3f04b494215", + "name": "Foresight", + "buyable": false, + "symbol": "FORS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000015839854744337, + "ccyValue": 0.021111, + "ethDayChange": 0.174285531681363215, + "ccyDayChange": 0.220501 + }, + "tokenlist": false + }, { + "id": 2209, + "address": "0xa58a4f5c4bb043d2cc1e170613b74e767c94189b", + "name": "UTU Coin", + "buyable": false, + "symbol": "UTU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000042688340853407, + "ccyValue": 0.056968, + "ethDayChange": -0.077374214212636059, + "ccyDayChange": -0.039552 + }, + "tokenlist": false + }, { + "id": 1017, + "address": "0x15ab0333985fd1e289adf4fbbe19261454776642", + "name": "ETH-MLN Uniswap pool token", + "buyable": false, + "symbol": "ETH-MLN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1347, + "address": "0x1e97274ccb19109c10320b4dd2dd47154412265d", + "name": "PITCH-ETH Uniswap pool token", + "buyable": false, + "symbol": "PITCH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2285, + "address": "0x8ef59fe0cd68493ae684e69586b950710eddd61b", + "name": "Exchain Global", + "buyable": false, + "symbol": "EXG", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 750, + "address": "0xe44a021cbc34cb4124e0f5deb2a1c8a63acd1d07", + "name": "Bluenote World Token", + "buyable": false, + "symbol": "BNOW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000109, + "ccyValue": 0.000292, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 352, + "address": "0x08130635368aa28b217a4dfb68e1bf8dc525621c", + "name": "AfroDex", + "buyable": false, + "symbol": "AfroX", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 364, + "address": "0xe7d3e4413e29ae35b0893140f4500965c74365e5", + "name": "B2BCoin", + "buyable": false, + "symbol": "BBC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001273468154135, + "ccyValue": 0.001697, + "ethDayChange": 0.317608022902224521, + "ccyDayChange": 0.366345 + }, + "tokenlist": false + }, { + "id": 1659, + "address": "0x8be6a6158f6b8a19fe60569c757d16e546c2296d", + "name": "yff.finance", + "buyable": false, + "symbol": "YFF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000918524012712381, + "ccyValue": 1.223944, + "ethDayChange": 2.026637711586862396, + "ccyDayChange": 2.257527 + }, + "tokenlist": false + }, { + "id": 496, + "address": "0x5ecd84482176db90bb741ddc8c2f9ccc290e29ce", + "name": "BTL", + "buyable": false, + "symbol": "BTL", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 9.98E-7, + "ccyValue": 0.001222, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 414, + "address": "0xb351da6ffebd5dddd1da037929fcf334d6b4a8d5", + "name": "Flit Token", + "buyable": false, + "symbol": "FLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1E-8, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1328, + "address": "0x7bf878a25f7d34d392ebc8d14e33478966c7ca75", + "name": "Pornvisory", + "buyable": false, + "symbol": "PVY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1596, + "address": "0x47eb79217f42f92dbd741add1b1a6783a2c873cf", + "name": "Bast", + "buyable": false, + "symbol": "bast", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.01012412, + "ccyValue": 13.48, + "ethDayChange": 0.089870860109499566, + "ccyDayChange": 0.13239 + }, + "tokenlist": false + }, { + "id": 1279, + "address": "0x23f62df9756786f993eb7a49af1afbba73c23d84", + "name": "YFIDream", + "buyable": false, + "symbol": "YFID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1628, + "address": "0x0501e7a02c285b9b520fdbf1badc74ae931ad75d", + "name": "Walnut.Finance", + "buyable": false, + "symbol": "WTF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000362283452192407, + "ccyValue": 0.482747, + "ethDayChange": -0.000680075600896478, + "ccyDayChange": -0.060875 + }, + "tokenlist": false + }, { + "id": 1870, + "address": "0x646b41183bb0d18c01f75f630688d613a5774dc7", + "name": "BLUEKEY", + "buyable": false, + "symbol": "BKY", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2E-8, + "ccyValue": 0.000012, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 349, + "address": "0xcbf15fb8246f679f9df0135881cb29a3746f734b", + "name": "Bither Platform Token", + "buyable": false, + "symbol": "BTR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1822, + "address": "0x83f873388cd14b83a9f47fabde3c9850b5c74548", + "name": "ZeroUtility", + "buyable": false, + "symbol": "ZUT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.3746121421442274, + "ccyValue": 499.175161, + "ethDayChange": -0.093114688948838933, + "ccyDayChange": -0.057627 + }, + "tokenlist": false + }, { + "id": 842, + "address": "0x6059f55751603ead7dc6d280ad83a7b33d837c90", + "name": "Hybrid Block", + "buyable": false, + "symbol": "HYB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 8.098E-7, + "ccyValue": 0.000188, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1350, + "address": "0x25c5fb03fe893381d87ceda36ebaa57eea4ad74d", + "name": "Nugs Token", + "buyable": false, + "symbol": "NUGS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1377, + "address": "0x4599836c212cd988eaccc54c820ee9261cdaac71", + "name": "Cryptid", + "buyable": false, + "symbol": "CID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000494, + "ccyValue": 0.006622, + "ethDayChange": 0, + "ccyDayChange": 0.054459 + }, + "tokenlist": false + }, { + "id": 286, + "address": "0xbf4a2ddaa16148a9d0fa2093ffac450adb7cd4aa", + "name": "Ethereum Money", + "buyable": false, + "symbol": "ETHMNY", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ethmny.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#39ff14", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.3E-9, + "ccyValue": 0.000012, + "ethDayChange": 0.207792207792207792, + "ccyDayChange": 0.2 + }, + "tokenlist": false + }, { + "id": 939, + "address": "0x6b9887422e2a4ae11577f59ea9c01a6c998752e2", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1613, + "address": "0x897d0d3cc566684055729a3be7f9cf5212b27259", + "name": "syfi.finance", + "buyable": false, + "symbol": "SYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1599, + "address": "0x782a3e2ac6af3f592b2e8e1e37f54f99bcf202ad", + "name": "CEEK-ETH Uniswap pool token", + "buyable": false, + "symbol": "CEEK-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2548, + "address": "0x186af393bf9ceef31ce7eae2b468c46231163cc7", + "name": "Yearn Loans Finance", + "buyable": false, + "symbol": "YlFi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.004552262679147836, + "ccyValue": 6.065944, + "ethDayChange": -0.046233382917841401, + "ccyDayChange": -0.008911 + }, + "tokenlist": false + }, { + "id": 3029, + "address": "0xd850942ef8811f2a866692a623011bde52a462c1", + "name": "VeChain Token", + "buyable": false, + "symbol": "VEN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2643, + "address": "0x6e742e29395cf5736c358538f0f1372ab3dfe731", + "name": "TAMA EGG NiftyGotchi", + "buyable": false, + "symbol": "TME", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.76567694, + "ccyValue": 1020.63, + "ethDayChange": 0.000662127110788278, + "ccyDayChange": 0.034849 + }, + "tokenlist": false + }, { + "id": 381, + "address": "0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a", + "name": "BlocksquareToken", + "buyable": false, + "symbol": "BST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1015, + "address": "0xe56c60b5f9f7b5fc70de0eb79c6ee7d00efa2625", + "name": "ETH-ENJ Uniswap pool token", + "buyable": false, + "symbol": "ETH-ENJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 18, + "address": "0xb8c77482e45f1f44de1745f52c74426c631bdd52", + "name": "Binance Coin", + "buyable": false, + "symbol": "BNB", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bnb.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.03206186272921277, + "ccyValue": 42.722816, + "ethDayChange": 0.001396463140016542, + "ccyDayChange": 0.040583 + }, + "tokenlist": false + }, { + "id": 2330, + "address": "0x4f3748571224c5f4cb4c5b66446ba2fe1f2fb28c", + "name": "0x000000000000000000000000416c70686120556e6c6f636b6564204d656c6f6e", + "buyable": false, + "symbol": "MLNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 142, + "address": "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650", + "name": "Spiking", + "buyable": false, + "symbol": "SPIKE", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.965E-7, + "ccyValue": 0.000383, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2020, + "address": "0x3a75731f9e16244de01dd431636db7c07d42a166", + "name": "Bones", + "buyable": false, + "symbol": "BONES", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1960, + "address": "0x89e3ac6dd69c15e9223be7649025d6f68dab1d6a", + "name": "EVAN", + "buyable": false, + "symbol": "EVAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00021391, + "ccyValue": 0.251896, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2758, + "address": "0x70a6d0d1561ba98711e935a76b1c167c612978a2", + "name": "dragonflyprotocol.com", + "buyable": false, + "symbol": "DFLY", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00005754, + "ccyValue": 0.07581, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2701, + "address": "0x0721211926c9b07a92d5e6d9043d0291b4b6364a", + "name": "covToken", + "buyable": false, + "symbol": "COVER_HARVES", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2111, + "address": "0xe6793c9786a29bd80c6cbe35cfe5e47a8c4199d4", + "name": "xbast", + "buyable": false, + "symbol": "XBAST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2802, + "address": "0x3593d125a4f7849a1b059e64f4517a86dd60c95d", + "name": "MANTRA DAO", + "buyable": false, + "symbol": "OM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000098720739118412, + "ccyValue": 0.131743, + "ethDayChange": 0.237842612992899224, + "ccyDayChange": 0.288579 + }, + "tokenlist": false + }, { + "id": 1932, + "address": "0x0d9227f9c4ab3972f994fccc6eeba3213c0305c4", + "name": "Sergey Save Link", + "buyable": false, + "symbol": "SSL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.03583646506338456, + "ccyValue": 47.762832, + "ethDayChange": 0.045414130020504704, + "ccyDayChange": 0.086557 + }, + "tokenlist": false + }, { + "id": 669, + "address": "0xee85966b4974d3c6f71a2779cc3b6f53afbc2b68", + "name": "Rare Chest", + "buyable": false, + "symbol": "Rare Chest", + "decimals": 0, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/immutable.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#333332", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2953, + "address": "0xfe3e6a25e6b192a42a44ecddcd13796471735acf", + "name": "Reef.finance", + "buyable": false, + "symbol": "REEF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00001529983832941, + "ccyValue": 0.020392, + "ethDayChange": 0.02517380450563722, + "ccyDayChange": 0.065524 + }, + "tokenlist": false + }, { + "id": 2032, + "address": "0xdf801468a808a32656d2ed2d2d80b72a129739f4", + "name": "Somnium Space Cubes", + "buyable": false, + "symbol": "CUBE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00021283, + "ccyValue": 0.2737, + "ethDayChange": -0.067761717038983793, + "ccyDayChange": -0.085597 + }, + "tokenlist": false + }, { + "id": 314, + "address": "0xfab46e002bbf0b4509813474841e0716e6730136", + "name": "FaucetToken", + "buyable": false, + "symbol": "FAU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 111, + "address": "0x00000000441378008ea67f4284a57932b1c000a5", + "name": "TrueGBP", + "buyable": false, + "symbol": "TGBP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tgbp.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0010057, + "ccyValue": 1.31, + "ethDayChange": -0.007891881227187531, + "ccyDayChange": 0.007692 + }, + "tokenlist": false + }, { + "id": 2127, + "address": "0xe5d1fab0c5596ef846dcc0958d6d0b20e1ec4498", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 920, + "address": "0x821144518dfe9e7b44fcf4d0824e15e8390d4637", + "name": "ATIS Token", + "buyable": false, + "symbol": "ATIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004038, + "ccyValue": 0.053132, + "ethDayChange": -0.002042482411714337, + "ccyDayChange": 0.023994 + }, + "tokenlist": false + }, { + "id": 2625, + "address": "0x35f6b052c598d933d69a4eec4d04c73a191fe6c2", + "name": "Aave interest bearing SNX", + "buyable": false, + "symbol": "aSNX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/asnx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-17", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.013381675946530905, + "ccyValue": 17.843401, + "ethDayChange": 0.082802931830886986, + "ccyDayChange": 0.125942 + }, + "tokenlist": false + }, { + "id": 1107, + "address": "0x3b0f0aae0fbc53173db9e39f9fd46df805518f62", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 439, + "address": "0xfbc1473e245b8afbba3b46116e0b01f91a026633", + "name": "Crypto Unit Token", + "buyable": false, + "symbol": "CRU", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 552, + "address": "0xc92e74b131d7b1d46e60e07f3fae5d8877dd03f0", + "name": "Minereum", + "buyable": false, + "symbol": "MNE", + "decimals": 8, + "sendable": false, + "dailyLimit": false, + "displayAddress": "0x426ca1ea2406c07d75db9585f22781c096e3d0e0", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 749, + "address": "0xd31695a1d35e489252ce57b129fd4b1b05e6acac", + "name": "TOKPIE", + "buyable": false, + "symbol": "TKP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000486, + "ccyValue": 0.006477, + "ethDayChange": -0.04518664047151277, + "ccyDayChange": -0.00933 + }, + "tokenlist": false + }, { + "id": 23, + "address": "0x6123a0cbc95cb157995a0795187a60995b85e0a9", + "name": "BTC Range Bound High Volatility", + "buyable": false, + "symbol": "BTCHIVOL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/btchivol.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.44360903, + "ccyValue": 324.93, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1912, + "address": "0x11068577ae36897ffab0024f010247b9129459e6", + "name": "Hot Pot.finance", + "buyable": false, + "symbol": "HOTPOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 978, + "address": "0x5dbac24e98e2a4f43adc0dc82af403fca063ce2c", + "name": "EngagementToken", + "buyable": false, + "symbol": "EGT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1E-7, + "ccyValue": 0.000017, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2559, + "address": "0x7d91e637589ec3bb54d8213a9e92dc6e8d12da91", + "name": "FRIENDS WITH BENEFITS", + "buyable": false, + "symbol": "FWB", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00725777, + "ccyValue": 9.75, + "ethDayChange": 0.038236287064693698, + "ccyDayChange": 0.111745 + }, + "tokenlist": false + }, { + "id": 2079, + "address": "0xe4883bcb919386bb5f48ef59b7c31c1d93a51a57", + "name": "SATOPAY YIELD", + "buyable": false, + "symbol": "SPY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00009968, + "ccyValue": 0.132304, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1804, + "address": "0x15bcdfad12498de8a922e62442ae4cc4bd33bd25", + "name": "Walletreum", + "buyable": false, + "symbol": "WALT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.3E-9, + "ccyValue": 0.000001, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2324, + "address": "0xdb0387e8216d296fc053afda790d870212577004", + "name": "random.finance", + "buyable": false, + "symbol": "RAND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2728, + "address": "0x8cab3e311702acb64e250926d77134fde604bd4d", + "name": "USDC-DHT Uniswap pool token", + "buyable": false, + "symbol": "USDC-DHT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2106, + "address": "0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a", + "name": "ValorToken", + "buyable": false, + "symbol": "VALOR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00017005318865158, + "ccyValue": 0.226647, + "ethDayChange": -0.043032140396285875, + "ccyDayChange": -0.007858 + }, + "tokenlist": false + }, { + "id": 1039, + "address": "0x7fc95945eaa14e7a2954052a4c9bfbaa79d170ae", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3066, + "address": "0xc40d16476380e4037e6b1a2594caf6a6cc8da967", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 731, + "address": "0x622dffcc4e83c64ba959530a5a5580687a57581b", + "name": "CUBE", + "buyable": false, + "symbol": "AUTO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 2E-7, + "ccyValue": 0.000261, + "ethDayChange": 0.050972149238045192, + "ccyDayChange": 0.078512 + }, + "tokenlist": false + }, { + "id": 1425, + "address": "0x075aa48c07887a81f6127b4ed04f7ed24cf60ac0", + "name": "Topcoin Official", + "buyable": false, + "symbol": "TPC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2574, + "address": "0x0def8d8adde14c9ef7c2a986df3ea4bd65826767", + "name": "Cliq", + "buyable": false, + "symbol": "CLIQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00014865, + "ccyValue": 0.197604, + "ethDayChange": 0.2610498912274459, + "ccyDayChange": 0.307259 + }, + "tokenlist": false + }, { + "id": 1273, + "address": "0xabbbb6447b68ffd6141da77c18c7b5876ed6c5ab", + "name": "DATx", + "buyable": false, + "symbol": "DATx", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.34270103056E-7, + "ccyValue": 0.000179, + "ethDayChange": -0.038179777535816619, + "ccyDayChange": 0.005618 + }, + "tokenlist": false + }, { + "id": 3179, + "address": "0x2ec08e59ed827be587897edcdbff59215e785496", + "name": "Wrapped Gamestop", + "buyable": false, + "symbol": "GME", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611791108, + "ethValue": 0.004263517691147063, + "ccyValue": 5.29615, + "ethDayChange": 0.032004160113675913, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2528, + "address": "0x43b1243e9045cda9cfdc3d3bf191bb88e3fc34d9", + "name": "$HONK", + "buyable": false, + "symbol": "$HONK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 31, + "address": "0x3136ef851592acf49ca4c825131e364170fa32b3", + "name": "CoinFi", + "buyable": false, + "symbol": "COFI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cofi.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 6.33253129718E-7, + "ccyValue": 0.000844, + "ethDayChange": -0.010077958858840081, + "ccyDayChange": 0.026764 + }, + "tokenlist": false + }, { + "id": 1187, + "address": "0x3aeee5ba053ef8406420dbc5801fc95ec57b0e0a", + "name": "DEC-ETH Uniswap pool token", + "buyable": false, + "symbol": "DEC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 6, + "address": "0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d", + "name": "Aeternity", + "buyable": false, + "symbol": "AE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ae.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000610413, + "ccyValue": 0.081161, + "ethDayChange": 0.01515549642441377, + "ccyDayChange": 0.057087 + }, + "tokenlist": false + }, { + "id": 2486, + "address": "0xe7689b2c21242e07870aaa0ffee1ec11833d5e24", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1566, + "address": "0x9a7a4c141a3bcce4a31e42c1192ac6add35069b4", + "name": "Momentum", + "buyable": false, + "symbol": "XMM", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000134, + "ccyValue": 0.00175, + "ethDayChange": -0.012477757710682214, + "ccyDayChange": 0.005747 + }, + "tokenlist": false + }, { + "id": 2684, + "address": "0x9dc696f1067a6b9929986283f6d316be9c9198fd", + "name": "ETH-BONDLY Uniswap pool token", + "buyable": false, + "symbol": "ETH-BONDLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1829, + "address": "0x1e326fe946c0e3a33fc2bf47883e8ce3168d7795", + "name": "YZeroUtility", + "buyable": false, + "symbol": "YZUT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1410, + "address": "0x3e7acd19db4b2ff6ce7f57a8165cd2da82737db1", + "name": "0x0000000000000000000000000054686520566973696f6e2046756e6420322e30", + "buyable": false, + "symbol": "MLNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1160, + "address": "0xe7cb355e54ade5392f69101c691fe605d0c9b2cf", + "name": "SNX Binary Option", + "buyable": false, + "symbol": "sOPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2080, + "address": "0x05d3606d5c81eb9b7b18530995ec9b29da05faba", + "name": "TomoChain", + "buyable": false, + "symbol": "TOMOE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000915666088302763, + "ccyValue": 1.22196, + "ethDayChange": -0.04764011646652819, + "ccyDayChange": -0.008604 + }, + "tokenlist": false + }, { + "id": 2926, + "address": "0x242d289b3eeb6842ce0fcc0d87932402299ae5b3", + "name": "ETH-YLD Uniswap pool token", + "buyable": false, + "symbol": "ETH-YLD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2149, + "address": "0x1865fa1e115157f555fdbe931ce35df4611991ee", + "name": "ASCEND", + "buyable": false, + "symbol": "ASC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1946, + "address": "0x5a698f3163f5cc88db16290e87c3753832e74f3b", + "name": "PUD-ETH Uniswap pool token", + "buyable": false, + "symbol": "PUD-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1919, + "address": "0xa9402793f40b8e4a2cb79555bbabd45e40fae0e3", + "name": "Super Yin Yang", + "buyable": false, + "symbol": "SYYF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2048, + "address": "0xe75d3b39d017985caf20fac7134ed55b8b47cc26", + "name": "heavensgate.finance", + "buyable": false, + "symbol": "HATE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 437, + "address": "0x08fbe97ac1f609d87ab31d07fb13740fb882f2b8", + "name": "JILT", + "buyable": false, + "symbol": "JLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1361, + "address": "0x4485561db76614ff727f8e0a3ea95690b8b16022", + "name": "Invox Finance Token", + "buyable": false, + "symbol": "INVOX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 987, + "address": "0xc1af55156b64da1d484fb13b1afdb1da8efa7733", + "name": "OLD RealToken S 9165 Kensington Ave Detroit MI", + "buyable": false, + "symbol": "9165 Kensing", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2187, + "address": "0x1abbac88b8f47d46a3d822efa75f64a15c25966f", + "name": "YBET.NETWORK", + "buyable": false, + "symbol": "YBET", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1131, + "address": "0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2", + "name": "renZEC", + "buyable": false, + "symbol": "renZEC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.064901110267956543, + "ccyValue": 86.610817, + "ethDayChange": 0.026355379005786126, + "ccyDayChange": 0.069137 + }, + "tokenlist": false + }, { + "id": 2367, + "address": "0xf12ec0d3dab64ddefbdc96474bde25af3fe1b327", + "name": "Stacy", + "buyable": false, + "symbol": "STACY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001415577566478, + "ccyValue": 0.001886, + "ethDayChange": -0.021831725940117543, + "ccyDayChange": 0.016164 + }, + "tokenlist": false + }, { + "id": 3039, + "address": "0xb38be7fd90669abcdfb314dbddf6143aa88d3110", + "name": "ETH-GTH Uniswap pool token", + "buyable": false, + "symbol": "ETH-GTH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2200, + "address": "0x0202be363b8a4820f3f4de7faf5224ff05943ab1", + "name": "UniLend Finance Token", + "buyable": false, + "symbol": "UFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00036671, + "ccyValue": 0.487471, + "ethDayChange": 0.101860412742042215, + "ccyDayChange": 0.142225 + }, + "tokenlist": false + }, { + "id": 2560, + "address": "0x2a7e79b5f3d8efb718943191a6daf19955a501f4", + "name": "YFI.Name", + "buyable": false, + "symbol": "YFIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611791108, + "ethValue": 0.002111461678982268, + "ccyValue": 2.622862, + "ethDayChange": 0.032004160113676007, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3184, + "address": "0xedf6568618a00c6f0908bf7758a16f76b6e04af9", + "name": "ARIANEE", + "buyable": false, + "symbol": "ARIA20", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000516828805269666, + "ccyValue": 0.688681, + "ethDayChange": -0.022083622952382214, + "ccyDayChange": 0.025971 + }, + "tokenlist": false + }, { + "id": 511, + "address": "0xed0849bf46cfb9845a2d900a0a4e593f2dd3673c", + "name": "Saga", + "buyable": false, + "symbol": "SGA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00107094358084782, + "ccyValue": 1.427353, + "ethDayChange": -0.037774251845310015, + "ccyDayChange": 0.000095 + }, + "tokenlist": false + }, { + "id": 2753, + "address": "0x0f5a2eb364d8b722cba4e1e30e2cf57b6f515b2a", + "name": "ETH-TVK Uniswap pool token", + "buyable": false, + "symbol": "ETH-TVK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2744, + "address": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 468, + "address": "0xba5f00a28f732f23ba946c594716496ebdc9aef5", + "name": "BKEX.COM Token", + "buyable": false, + "symbol": "bkex.com", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1497, + "address": "0xb7d7697c0a15cc798eacf1445b05bb0a3aa5cc96", + "name": "Uniswap V2 PITCH-USDC", + "buyable": false, + "symbol": "PITCH-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1597, + "address": "0x86965a86539e2446f9e72634cefca7983cc21a81", + "name": "YFISCURITY", + "buyable": false, + "symbol": "YFIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000531207942655118, + "ccyValue": 0.707994, + "ethDayChange": -0.199300690871504153, + "ccyDayChange": -0.169885 + }, + "tokenlist": false + }, { + "id": 697, + "address": "0xa06b79b41bc24a83c350ff3f74c7beaf96574d71", + "name": "Cunning Token", + "buyable": false, + "symbol": "CUNT", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2712, + "address": "0xe8b251822d003a2b2466ee0e38391c2db2048739", + "name": "rbase.finance", + "buyable": false, + "symbol": "RBASE", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00024022, + "ccyValue": 0.287566, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1136, + "address": "0xf091cf09c51811819db705710e9634b8bf18f164", + "name": "Couchain", + "buyable": false, + "symbol": "COU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 8.5604464982E-8, + "ccyValue": 0.000114, + "ethDayChange": 0.005298697075717753, + "ccyDayChange": 0.045872 + }, + "tokenlist": false + }, { + "id": 1000, + "address": "0xb8550a4a7abcb6fa3c23ef9007d4f4aeeadff596", + "name": "Ima Goy", + "buyable": false, + "symbol": "GOY", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2733, + "address": "0x19db8e1a8553955757e87bc2620b76cca4262577", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2855, + "address": "0xcaeaf8381d4b20b43afa42061d6f80319a8881f6", + "name": "R34P", + "buyable": false, + "symbol": "R34P", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.003298311954101194, + "ccyValue": 4.39504, + "ethDayChange": -0.004472521723809811, + "ccyDayChange": 0.061604 + }, + "tokenlist": false + }, { + "id": 307, + "address": "0xfa05a73ffe78ef8f1a739473e462c54bae6567d9", + "name": "Lunyr Token", + "buyable": false, + "symbol": "LUN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000076689180113861, + "ccyValue": 0.102189, + "ethDayChange": -0.008768138398238983, + "ccyDayChange": 0.02719 + }, + "tokenlist": false + }, { + "id": 2656, + "address": "0x082de14a8ff75d3b72b8267e2dcb6326cc43a5f2", + "name": "hypedash.farm", + "buyable": false, + "symbol": "HDash", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1816, + "address": "0x0c4a68cf6857cc76fe946d04fe85fac5fae9625e", + "name": "Uniswap V2 QNT-ETH", + "buyable": false, + "symbol": "QNT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1708, + "address": "0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577", + "name": "YfDAI.finance", + "buyable": false, + "symbol": "Yf-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 2.564, + "ccyValue": 3420.2, + "ethDayChange": -0.017693395443920982, + "ccyDayChange": 0.019264 + }, + "tokenlist": false + }, { + "id": 1010, + "address": "0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa", + "name": "Orbs", + "buyable": false, + "symbol": "ORBS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000011325546228278, + "ccyValue": 0.015091, + "ethDayChange": -0.007401732841542507, + "ccyDayChange": 0.034551 + }, + "tokenlist": false + }, { + "id": 2553, + "address": "0xa249e650737af19a294ef4b5ace26394b8287a24", + "name": "cZRX-ETH Uniswap pool token", + "buyable": false, + "symbol": "cZRX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1674, + "address": "0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4", + "name": "Sylo", + "buyable": false, + "symbol": "SYLO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 6.14553252709E-7, + "ccyValue": 0.000819, + "ethDayChange": -0.017654535122746586, + "ccyDayChange": 0.021197 + }, + "tokenlist": false + }, { + "id": 839, + "address": "0x73fa7742f15e4349677c0bc3968067878e741145", + "name": "EMI", + "buyable": false, + "symbol": "EMI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 823, + "address": "0xdd85f02e149f26dbd3678227ebdc355445d0eaf6", + "name": "Semi Deflationary Token", + "buyable": false, + "symbol": "SDT", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2540, + "address": "0x69e8b9528cabda89fe846c67675b5d73d463a916", + "name": "OPEN Governance Token", + "buyable": false, + "symbol": "OPEN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0007083, + "ccyValue": 0.9437, + "ethDayChange": 0.032268474818835091, + "ccyDayChange": 0.072842 + }, + "tokenlist": false + }, { + "id": 2841, + "address": "0x7afebbb46fdb47ed17b22ed075cde2447694fb9e", + "name": "Ocean Token", + "buyable": false, + "symbol": "OCEAN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ocean.png", + "sendable": false, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#332B63", + "displayAddress": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000421205845357813, + "ccyValue": 0.561383, + "ethDayChange": -0.003293097195764291, + "ccyDayChange": 0.03395 + }, + "tokenlist": false + }, { + "id": 1234, + "address": "0x221657776846890989a759ba2973e427dff5c9bb", + "name": "Augur Reputation", + "buyable": false, + "symbol": "REPv2", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rep.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#1D1D44", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.014172171756134905, + "ccyValue": 18.897465, + "ethDayChange": 0.004462544375896512, + "ccyDayChange": 0.045176 + }, + "tokenlist": false + }, { + "id": 2606, + "address": "0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1", + "name": "Aave interest bearing BAT", + "buyable": false, + "symbol": "aBAT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/abat.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-8", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000228394299695633, + "ccyValue": 0.304354, + "ethDayChange": -0.052991049117787658, + "ccyDayChange": -0.018583 + }, + "tokenlist": false + }, { + "id": 632, + "address": "0x654424f4b3ed6de828c9ca30484dc1a626bb5fba", + "name": "Flex ETH Set", + "buyable": false, + "symbol": "FLEXETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-23", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.3163632, + "ccyValue": 421.845184, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2650, + "address": "0xf63b34710400cad3e044cffdcab00a0f32e33ecf", + "name": "Aave variable debt bearing WETH", + "buyable": false, + "symbol": "variableDebt", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 35, + "address": "0xffa93aacf49297d51e211817452839052fdfb961", + "name": "Distributed Credit Chain", + "buyable": false, + "symbol": "DCC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dcc.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#5E6EE8", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.000003, + "ccyValue": 0.003998, + "ethDayChange": 0, + "ccyDayChange": 0.036557 + }, + "tokenlist": false + }, { + "id": 1844, + "address": "0xd5c9c2ff663cb619edc70c49c743404ab6512184", + "name": "Rooster.Finance", + "buyable": false, + "symbol": "ROOSTER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1161, + "address": "0xdba8e8021fe321af91fc3a08e223ef15908cb2bb", + "name": "SilverDollar", + "buyable": false, + "symbol": "SLVD", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1115, + "address": "0x96c645d3d3706f793ef52c19bbace441900ed47d", + "name": "MtPelerin Shares", + "buyable": false, + "symbol": "MPS", + "decimals": 0, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mps.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#59C6F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00210639, + "ccyValue": 2.84, + "ethDayChange": -0.236735019259269996, + "ccyDayChange": -0.162242 + }, + "tokenlist": false + }, { + "id": 2468, + "address": "0x8a41b6b6177f35bfa6d677447d3fe0d5a0cec45e", + "name": "OLD RealToken S 581-587 Jefferson Ave Rochester NY", + "buyable": false, + "symbol": "581-587 Jeff", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2524, + "address": "0xc84ed03607dbb3c0280f2691f8b361f08b7a1e94", + "name": "Dividend Token", + "buyable": false, + "symbol": "DIV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 741, + "address": "0x60f5b1cd801c53de5cfcbde6b5989c323e4b34cb", + "name": "Monarch Token Promo", + "buyable": false, + "symbol": "MTP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1531, + "address": "0x98c9275898621d65b2a84bcda2266098060d1cd4", + "name": "LIT-ETH Uniswap pool token", + "buyable": false, + "symbol": "LIT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 334, + "address": "0x286ae10228c274a9396a05a56b9e3b8f42d1ce14", + "name": "Sparkle!", + "buyable": false, + "symbol": "SPRK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1929, + "address": "0x87c00817abe35ed4c093e59043fae488238d2f74", + "name": "YOINK", + "buyable": false, + "symbol": "YNK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000201, + "ccyValue": 0.002712, + "ethDayChange": -0.034660600961013538, + "ccyDayChange": 0.01573 + }, + "tokenlist": false + }, { + "id": 1774, + "address": "0xc3771d47e2ab5a519e2917e61e23078d0c05ed7f", + "name": "Gather", + "buyable": false, + "symbol": "GTH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005476, + "ccyValue": 0.072781, + "ethDayChange": -0.098006918135397793, + "ccyDayChange": -0.062403 + }, + "tokenlist": false + }, { + "id": 26, + "address": "0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af", + "name": "CoinDash", + "buyable": false, + "symbol": "CDT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cdt.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000006738800249929, + "ccyValue": 0.00898, + "ethDayChange": 0.096440322655849661, + "ccyDayChange": 0.136277 + }, + "tokenlist": false + }, { + "id": 2437, + "address": "0xe46b5cb8d9ff50195bfbcbc38731f82ab4ff4e00", + "name": "BRAP-ETH Uniswap pool token", + "buyable": false, + "symbol": "BRAP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 465, + "address": "0x845838df265dcd2c412a1dc9e959c7d08537f8a2", + "name": "Curve.fi cDAI/cUSDC", + "buyable": false, + "symbol": "cDAI+cUSDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000787853888544143, + "ccyValue": 1.05127, + "ethDayChange": -0.03831029409482016, + "ccyDayChange": -0.001276 + }, + "tokenlist": false + }, { + "id": 2702, + "address": "0x47c4a126bc45739c9087af3968c8e0d2354c5cf5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2268, + "address": "0x334cbb5858417aee161b53ee0d5349ccf54514cf", + "name": "PoolTogether Dai Ticket", + "buyable": false, + "symbol": "PcDAI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/pool-together.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#27125F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000748885528516212, + "ccyValue": 0.999391, + "ethDayChange": -0.037669585561279877, + "ccyDayChange": -0.000609 + }, + "tokenlist": false + }, { + "id": 2784, + "address": "0x619beb58998ed2278e08620f97007e1116d5d25b", + "name": "Aave variable debt bearing USDC", + "buyable": false, + "symbol": "variableDebt", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 372, + "address": "0xaf4dce16da2877f8c9e00544c93b62ac40631f16", + "name": "Monetha", + "buyable": false, + "symbol": "MTH", + "decimals": 5, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000006841608227016, + "ccyValue": 0.009117, + "ethDayChange": 0.043578262361359252, + "ccyDayChange": 0.081495 + }, + "tokenlist": false + }, { + "id": 3005, + "address": "0x224db5e6180761df4c3d8936585f6b8b83879770", + "name": "OM Lira", + "buyable": false, + "symbol": "OML", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 988, + "address": "0xeeee2a622330e6d2036691e983dee87330588603", + "name": "Askobar Network", + "buyable": false, + "symbol": "ASKO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000381, + "ccyValue": 0.005066, + "ethDayChange": 0.127218934911242604, + "ccyDayChange": 0.174861 + }, + "tokenlist": false + }, { + "id": 73, + "address": "0x23ccc43365d9dd3882eab88f43d515208f832430", + "name": "MidasProtocol", + "buyable": false, + "symbol": "MAS", + "decimals": 18, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0x23ccc43365d9dd3882eab88f43d515208f832430.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.791E-7, + "ccyValue": 0.000638, + "ethDayChange": -0.165028158307934858, + "ccyDayChange": -0.133152 + }, + "tokenlist": false + }, { + "id": 455, + "address": "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63", + "name": "SONM Token", + "buyable": false, + "symbol": "SNM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000011784164222045, + "ccyValue": 0.015706, + "ethDayChange": 0.556810490563587508, + "ccyDayChange": 0.618008 + }, + "tokenlist": false + }, { + "id": 3122, + "address": "0xb088b2c7ce300f3fe679d471c2ce49dfe312ce75", + "name": "xKNC", + "buyable": false, + "symbol": "xKNCa", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1783, + "address": "0xf5d0fefaab749d8b14c27f0de60cc6e9e7f848d1", + "name": "YFarmToken", + "buyable": false, + "symbol": "YFARM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.9E-8, + "ccyValue": 0.000063, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2347, + "address": "0xc55292b9c883a8abaf91f3620944e8c7606fc715", + "name": "AISwap", + "buyable": false, + "symbol": "AIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2995, + "address": "0xb987d48ed8f2c468d52d6405624eadba5e76d723", + "name": "Stabilize Token", + "buyable": false, + "symbol": "STBZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.004032769627925563, + "ccyValue": 5.381749, + "ethDayChange": 0.052498812860683686, + "ccyDayChange": 0.09564 + }, + "tokenlist": false + }, { + "id": 2731, + "address": "0x32c868f6318d6334b2250f323d914bc2239e4eee", + "name": "N3RD.FINANCE", + "buyable": false, + "symbol": "N3RDz", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.16426376020145486, + "ccyValue": 218.883426, + "ethDayChange": -0.013042903643174689, + "ccyDayChange": 0.029458 + }, + "tokenlist": false + }, { + "id": 1984, + "address": "0x6bffa07a1b0cebc474ce6833eaf2be6326252449", + "name": "BAEPAY", + "buyable": false, + "symbol": "BAEPAY", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000753, + "ccyValue": 0.101359, + "ethDayChange": 0.000664451827242525, + "ccyDayChange": 0.048939 + }, + "tokenlist": false + }, { + "id": 1443, + "address": "0x378e79e4e536c1012b1b0852f4d70b35e4023458", + "name": "Defi Index Funds", + "buyable": false, + "symbol": "DEFX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1525, + "address": "0x99b1db3318aa3040f336fb65c55400e164ddcd7f", + "name": "OM-ETH Uniswap pool token", + "buyable": false, + "symbol": "OM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3192, + "address": "0x0ccd5dd52dee42b171a623478e5261c1eaae092a", + "name": "DeFi on MCW", + "buyable": false, + "symbol": "DFM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000049906045330631, + "ccyValue": 0.066546, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2109, + "address": "0xe4101d014443af2b7f6f9f603e904adc9faf0de5", + "name": "CLR7", + "buyable": false, + "symbol": "CLR7", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1450, + "address": "0x8a6f3bf52a26a21531514e23016eeae8ba7e7018", + "name": "Multiplier", + "buyable": false, + "symbol": "MXX", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000032496924658921, + "ccyValue": 0.043312, + "ethDayChange": -0.327246123474216545, + "ccyDayChange": -0.300765 + }, + "tokenlist": false + }, { + "id": 2987, + "address": "0x54f7cd0b73d2a55815f2e35a7e2cd223ea7d3ca1", + "name": "TEN-ETH Uniswap pool token", + "buyable": false, + "symbol": "TEN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2027, + "address": "0x441d91f7aaee51c7ae8cab84333d6383a8a8c175", + "name": "Speculative Resistance RTC", + "buyable": false, + "symbol": "SPECTRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 723, + "address": "0xe5caef4af8780e59df925470b050fb23c43ca68c", + "name": "Ferrum Network Token", + "buyable": false, + "symbol": "FRM", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0001975, + "ccyValue": 0.262535, + "ethDayChange": 0.06785617734522844, + "ccyDayChange": 0.111673 + }, + "tokenlist": false + }, { + "id": 667, + "address": "0x87611ca3403a3878dfef0da2a786e209abfc1eff", + "name": "eUSD", + "buyable": false, + "symbol": "eUSD", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.296E-7, + "ccyValue": 0.000014, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1927, + "address": "0x48e313460dd00100e22230e56e0a87b394066844", + "name": "Uniswap V2 ETH-OMG", + "buyable": false, + "symbol": "ETH-OMG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2661, + "address": "0x4a3a6d97776c7b7c162991eab6c77c972d2436b7", + "name": "colony.io", + "buyable": false, + "symbol": "CLNY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1624, + "address": "0x8ffe65b72e8ad216c9e17253deafdd72ca419d94", + "name": "wearn.finance", + "buyable": false, + "symbol": "WYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2844, + "address": "0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221", + "name": "Orion Protocol", + "buyable": false, + "symbol": "ORN", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/orn.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#464672", + "displayAddress": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002293938107464292, + "ccyValue": 3.05736, + "ethDayChange": 0.058110827375345613, + "ccyDayChange": 0.099754 + }, + "tokenlist": false + }, { + "id": 384, + "address": "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6", + "name": "Bread Token", + "buyable": false, + "symbol": "BRD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000567982, + "ccyValue": 0.07552, + "ethDayChange": -0.01791583668233854, + "ccyDayChange": 0.015504 + }, + "tokenlist": false + }, { + "id": 2763, + "address": "0x881b06da56bb5675c54e4ed311c21e54c5025298", + "name": "yearn ChainLink Token", + "buyable": false, + "symbol": "yLINK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2090, + "address": "0xbe38a889d67467b665e30e20ee5604a6f5696e38", + "name": "ETH-PTF Uniswap pool token", + "buyable": false, + "symbol": "ETH-PTF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1069, + "address": "0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e", + "name": "ABX Token", + "buyable": false, + "symbol": "ABX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000010096557431549, + "ccyValue": 0.013454, + "ethDayChange": 0.015750244622635815, + "ccyDayChange": 0.057455 + }, + "tokenlist": false + }, { + "id": 1101, + "address": "0xed8306f10a5aa548d09c1d9c622f3f58dd9f2144", + "name": "CLR6", + "buyable": false, + "symbol": "CLR6", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 996, + "address": "0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec", + "name": "Relevant", + "buyable": false, + "symbol": "REL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000606206280932391, + "ccyValue": 0.807952, + "ethDayChange": -0.024984268452422234, + "ccyDayChange": 0.017714 + }, + "tokenlist": false + }, { + "id": 246, + "address": "0x8619c9194bf7212bcab69b8d58ad6ab872decd5c", + "name": "betbeb", + "buyable": false, + "symbol": "BEB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1637, + "address": "0x1e18821e69b9faa8e6e75dffe54e7e25754beda0", + "name": "KIMCHI.finance", + "buyable": false, + "symbol": "KIMCHI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00000244208493823, + "ccyValue": 0.003255, + "ethDayChange": 12.358749406815210431, + "ccyDayChange": 12.910256 + }, + "tokenlist": false + }, { + "id": 2060, + "address": "0x3d56b44d1eccdeadffd5be1282762317455cda32", + "name": "FOMO World", + "buyable": false, + "symbol": "FOMO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 609, + "address": "0x9af839687f6c94542ac5ece2e317daae355493a1", + "name": "Hydro Protocol Token", + "buyable": false, + "symbol": "HOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00000476122886135, + "ccyValue": 0.006346, + "ethDayChange": -0.006006500762004175, + "ccyDayChange": 0.037606 + }, + "tokenlist": false + }, { + "id": 143, + "address": "0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098", + "name": "SANtiment network token", + "buyable": false, + "symbol": "SAN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/san.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#2B77B3", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000052169819559015, + "ccyValue": 0.069517, + "ethDayChange": 0.010395583269585958, + "ccyDayChange": 0.047053 + }, + "tokenlist": false + }, { + "id": 1095, + "address": "0xf8ad7dfe656188a23e89da09506adf7ad9290d5d", + "name": "Blocery Token", + "buyable": false, + "symbol": "BLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000636, + "ccyValue": 0.084716, + "ethDayChange": 0.064439071904513281, + "ccyDayChange": 0.105679 + }, + "tokenlist": false + }, { + "id": 2568, + "address": "0xc497e6fe501a327c8eb5db50a3c6b110b9ac7d9e", + "name": "ForrestFarm.org", + "buyable": false, + "symbol": "FRT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 397, + "address": "0xd668dab892f1b702a6b9ee01342508b14d4e62c5", + "name": "AnthemGold", + "buyable": false, + "symbol": "AGLD", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1854, + "address": "0x1da01e84f3d4e6716f274c987ae4bee5dc3c8288", + "name": "DefiBids", + "buyable": false, + "symbol": "BID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002512, + "ccyValue": 0.032783, + "ethDayChange": -0.001398627430006295, + "ccyDayChange": 0.016307 + }, + "tokenlist": false + }, { + "id": 120, + "address": "0x286bda1413a2df81731d4930ce2f862a35a609fe", + "name": "Tael", + "buyable": false, + "symbol": "WABI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/wabi.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000064775779373451, + "ccyValue": 0.086319, + "ethDayChange": 0.013466040127869675, + "ccyDayChange": 0.050288 + }, + "tokenlist": false + }, { + "id": 440, + "address": "0x1f6321308df0f437133d2c083f6583b2fcf8125b", + "name": "ETH Trending Alpha ST", + "buyable": false, + "symbol": "ETAS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.26516263, + "ccyValue": 102.7, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 343, + "address": "0x71e4b8de109428f999391eb3424d2cc87192e8ba", + "name": "0xETH Classic", + "buyable": false, + "symbol": "0xETC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2074, + "address": "0xbb92a53f1a4dfd300a27662b2054bdc17348b534", + "name": "CorbV1", + "buyable": false, + "symbol": "CORBV1", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 505, + "address": "0x064af935c8c26f124adafbdad6f6f1747f564617", + "name": "420X.Life", + "buyable": false, + "symbol": "420X", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 509, + "address": "0x71010a9d003445ac60c4e6a7017c1e89a477b438", + "name": "Aave Interest bearing REP", + "buyable": false, + "symbol": "aREP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/arep.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-14", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.014600668087745685, + "ccyValue": 19.456579, + "ethDayChange": -0.022832623449969055, + "ccyDayChange": 0.012671 + }, + "tokenlist": false + }, { + "id": 1501, + "address": "0x4f9dde745bf54f207dfc1fe34896d6752c63ad07", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2196, + "address": "0xa4f9cec920ca520a7feb2c3a63050e08967bc111", + "name": "Doom", + "buyable": false, + "symbol": "DOOM", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1862, + "address": "0xd360131b77ead72f1f23fb185b4896fe01dc8cb5", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1379, + "address": "0xb0db5618fe22a1c2220b4563bb2ab094769903cc", + "name": "Sonergy", + "buyable": false, + "symbol": "SNGY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2718, + "address": "0xef7a985e4ff9b5dccd6eddf58577486887288711", + "name": "HOM Token", + "buyable": false, + "symbol": "HOMT", + "decimals": 15, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000179, + "ccyValue": 0.002399, + "ethDayChange": -0.376306620209059233, + "ccyDayChange": -0.331941 + }, + "tokenlist": false + }, { + "id": 75, + "address": "0x66186008c1050627f979d464eabb258860563dbe", + "name": "MediShares V2", + "buyable": false, + "symbol": "MDS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mds.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000002031395576454, + "ccyValue": 0.002707, + "ethDayChange": -0.043188794637338924, + "ccyDayChange": -0.008425 + }, + "tokenlist": false + }, { + "id": 2222, + "address": "0x2367012ab9c3da91290f71590d5ce217721eefe4", + "name": "xSNX", + "buyable": false, + "symbol": "xSNXa", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00145394, + "ccyValue": 1.9, + "ethDayChange": 0.004969759806462761, + "ccyDayChange": 0.027027 + }, + "tokenlist": false + }, { + "id": 1697, + "address": "0x33c23d44679433a88b89ca38d3311a9a3d160699", + "name": "RainbowToken", + "buyable": false, + "symbol": "RAINBOW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 3.36127303235E-7, + "ccyValue": 0.000448, + "ethDayChange": -0.037865650016185956, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2076, + "address": "0xb1f66997a5760428d3a87d68b90bfe0ae64121cc", + "name": "LuaToken", + "buyable": false, + "symbol": "LUA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000023323674519506, + "ccyValue": 0.031086, + "ethDayChange": 0.016473633794628104, + "ccyDayChange": 0.056485 + }, + "tokenlist": false + }, { + "id": 2054, + "address": "0x6049d4815012263c4a2104c428ff844f0b7b1a52", + "name": "INKACOIN", + "buyable": false, + "symbol": "INKA", + "decimals": 15, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3055, + "address": "0x175cbd54d38f58b530785e01471a2ec0d4596eb5", + "name": "RealToken S 15770 Prest St Detroit MI", + "buyable": false, + "symbol": "15770 Prest ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1704, + "address": "0xe5c5227d8105d8d5f26ff3634eb52e2d7cc15b50", + "name": "ALBT-ETH Uniswap pool token", + "buyable": false, + "symbol": "ALBT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 975, + "address": "0xb110ec7b1dcb8fab8dedbf28f53bc63ea5bedd84", + "name": "Sphre AIR", + "buyable": false, + "symbol": "XID", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.04E-8, + "ccyValue": 0.000002, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2499, + "address": "0x34a01c0a95b0592cc818cd846c3cf285d6c85a31", + "name": "SEED Pool Token", + "buyable": false, + "symbol": "pSEED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3027, + "address": "0xde157688a36ac94b6e5f52e99c196f79ac71cea3", + "name": "interest-bearing DFD", + "buyable": false, + "symbol": "ibDFD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 916, + "address": "0x8993db1795b9a7b317b98ebfa4c971f225bf1248", + "name": "Enkidu", + "buyable": false, + "symbol": "ENK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000519, + "ccyValue": 0.001069, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 945, + "address": "0x042193437bec347c32fa689c1a0bb49acb696b99", + "name": "TRYB-USDT Uniswap pool token", + "buyable": false, + "symbol": "TRYB-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2925, + "address": "0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c", + "name": "Neos Credits", + "buyable": false, + "symbol": "NCR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1020, + "address": "0x94b86c1f3682d6e87a84bcd9e2d281286cb7a904", + "name": "MoonCoin V1", + "buyable": false, + "symbol": "MOON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 373, + "address": "0x4cc19356f2d37338b9802aa8e8fc58b0373296e7", + "name": "SelfKey", + "buyable": false, + "symbol": "KEY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000214, + "ccyValue": 0.002854, + "ethDayChange": 0.094568378376585727, + "ccyDayChange": 0.135243 + }, + "tokenlist": false + }, { + "id": 227, + "address": "0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e", + "name": "Dragon", + "buyable": false, + "symbol": "DRGN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000032467897753827, + "ccyValue": 0.043273, + "ethDayChange": -0.037703089690960285, + "ccyDayChange": -0.006817 + }, + "tokenlist": false + }, { + "id": 663, + "address": "0x15abbceb05be919df1b4894b01945a8264222de7", + "name": "Dai Stablecoin-777", + "buyable": false, + "symbol": "DAI777", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1813, + "address": "0xc34ef872a751a10e2a80243ef826ec0942fe3f14", + "name": "Bitcoin Uniswap", + "buyable": false, + "symbol": "BTCu", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.089545788200814265, + "ccyValue": 119.499248, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 301, + "address": "0x9d583b32aeadd01b3b1c942795f76aa5f7ee769a", + "name": "Merklizer", + "buyable": false, + "symbol": "MERK", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2722, + "address": "0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28", + "name": "Badger Sett Badger", + "buyable": false, + "symbol": "bBADGER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2070, + "address": "0x2ad95483ac838e2884563ad278e933fba96bc242", + "name": "SakeSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3063, + "address": "0x814f67fa286f7572b041d041b1d99b432c9155ee", + "name": "DRAGON", + "buyable": false, + "symbol": "DRG", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000863, + "ccyValue": 0.011517, + "ethDayChange": -0.062975027144408252, + "ccyDayChange": 0.015429 + }, + "tokenlist": false + }, { + "id": 2309, + "address": "0xa117000000f279d81a1d3cc75430faa017fa5a2e", + "name": "Aragon Network Token", + "buyable": false, + "symbol": "ANT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.002906817030958824, + "ccyValue": 3.87916, + "ethDayChange": 0.017646309585393401, + "ccyDayChange": 0.059049 + }, + "tokenlist": false + }, { + "id": 702, + "address": "0x4922a015c4407f87432b179bb209e125432e4a2a", + "name": "Gold Tether", + "buyable": false, + "symbol": "XAUt", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.3830190646452047, + "ccyValue": 1842.889449, + "ethDayChange": -0.039247666089663451, + "ccyDayChange": -0.001652 + }, + "tokenlist": false + }, { + "id": 1694, + "address": "0x03e4bdce611104289333f35c8177558b04cc99ff", + "name": "YI12 STFinance", + "buyable": false, + "symbol": "YI12", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00200717, + "ccyValue": 2.69, + "ethDayChange": -0.053007284668226768, + "ccyDayChange": -0.003704 + }, + "tokenlist": false + }, { + "id": 1705, + "address": "0x270d09cb4be817c98e84feffde03d5cd45e30a27", + "name": "MAKI FINANCE", + "buyable": false, + "symbol": "MAKI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000419048551158282, + "ccyValue": 0.558508, + "ethDayChange": -0.001528387242293121, + "ccyDayChange": 0.173511 + }, + "tokenlist": false + }, { + "id": 653, + "address": "0x05bbed16620b352a7f889e23e3cf427d1d379ffe", + "name": "Naira Token", + "buyable": false, + "symbol": "NGNT", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 478, + "address": "0x22a39c2dd54b71ac884657bb3e37308abe2d02e1", + "name": "USD", + "buyable": false, + "symbol": "USD", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3043, + "address": "0x0379da7a5895d13037b6937b109fa8607a659adf", + "name": "DAI-BAS Uniswap pool token", + "buyable": false, + "symbol": "DAI-BAS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-40", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.01522311464067789, + "ccyValue": 20.315313, + "ethDayChange": -0.147064356205897219, + "ccyDayChange": -0.113287 + }, + "tokenlist": false + }, { + "id": 976, + "address": "0x1829aa045e21e0d59580024a951db48096e01782", + "name": "FuzeX Token", + "buyable": false, + "symbol": "FXT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 5.0501630341E-8, + "ccyValue": 0.000067, + "ethDayChange": -0.006068257280268137, + "ccyDayChange": 0.030769 + }, + "tokenlist": false + }, { + "id": 2294, + "address": "0xc3f1cc7a647a121adb7aade62e8b8b941739d618", + "name": "ypria.finance", + "buyable": false, + "symbol": "yPRIA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2085, + "address": "0x1712aad2c773ee04bdc9114b32163c058321cd85", + "name": "LimitSwap", + "buyable": false, + "symbol": "LIMIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.006029721869860131, + "ccyValue": 8.034677, + "ethDayChange": 0.007404997136387042, + "ccyDayChange": 0.07129 + }, + "tokenlist": false + }, { + "id": 2936, + "address": "0xbbc455cb4f1b9e4bfc4b73970d360c8f032efee6", + "name": "Synth sLINK", + "buyable": false, + "symbol": "sLINK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.01752192, + "ccyValue": 23.27, + "ethDayChange": 0.0232441343643296, + "ccyDayChange": 0.066942 + }, + "tokenlist": false + }, { + "id": 2694, + "address": "0xe1c7e30c42c24582888c758984f6e382096786bd", + "name": "Curate", + "buyable": false, + "symbol": "XCUR", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000064516389475778, + "ccyValue": 0.085969, + "ethDayChange": 0.305207151037386203, + "ccyDayChange": 0.362015 + }, + "tokenlist": false + }, { + "id": 2799, + "address": "0x9e15ad979919bb4db331bfe864475ae3bffeba93", + "name": "Staked OM", + "buyable": false, + "symbol": "sOM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 393, + "address": "0x2baac9330cf9ac479d819195794d79ad0c7616e3", + "name": "AdBank", + "buyable": false, + "symbol": "ADB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 5.267E-7, + "ccyValue": 0.0007, + "ethDayChange": -0.10348936170212766, + "ccyDayChange": -0.067909 + }, + "tokenlist": false + }, { + "id": 3060, + "address": "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f", + "name": "Must", + "buyable": false, + "symbol": "MUST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.350951035150660172, + "ccyValue": 468.249869, + "ethDayChange": 0.040882091827355447, + "ccyDayChange": 0.08373 + }, + "tokenlist": false + }, { + "id": 203, + "address": "0x87ab739464881af0011052d4ca0b0d657e8c3b48", + "name": "MikeTangoBravo19", + "buyable": false, + "symbol": "MTB19", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3081, + "address": "0xcaa6361e4ad457b8f2e78a44662b0de3df646fd3", + "name": "1inch Liquidity Pool (1INCH-WBTC)", + "buyable": false, + "symbol": "1LP-1INCH-WB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2113, + "address": "0xedfbd6c48c3ddff5612ade14b45bb19f916809ba", + "name": "pulltherug.finance", + "buyable": false, + "symbol": "RUGZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002812623819150644, + "ccyValue": 3.748664, + "ethDayChange": -0.042119736011087423, + "ccyDayChange": 0.005004 + }, + "tokenlist": false + }, { + "id": 547, + "address": "0x30680ac0a8a993088223925265fd7a76beb87e7f", + "name": "ARAW", + "buyable": false, + "symbol": "ARAW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 2E-8, + "ccyValue": 0.000027, + "ethDayChange": 0, + "ccyDayChange": 0.038462 + }, + "tokenlist": false + }, { + "id": 1186, + "address": "0x065ec7d50bf7e9400f469423a23a28e7f2fa6996", + "name": "Polkadot", + "buyable": false, + "symbol": "DOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1581, + "address": "0x3aef8e803bd9be47e69b9f36487748d30d940b96", + "name": "vesta", + "buyable": false, + "symbol": "vesta", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.03E-8, + "ccyValue": 0.000119, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 499, + "address": "0x94ffb55ce68231c5966ea8dab16a8f066846513f", + "name": "Vio", + "buyable": false, + "symbol": "VIO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1586, + "address": "0x9b8d5f3402f74c7a61d9f09c32d3ca07b45c1466", + "name": "GimmerToken", + "buyable": false, + "symbol": "GMR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001042, + "ccyValue": 0.014014, + "ethDayChange": -0.564745196324143693, + "ccyDayChange": -0.536819 + }, + "tokenlist": false + }, { + "id": 3003, + "address": "0x07479f4dcc427057381cac10d01211f00fd489aa", + "name": "WISE", + "buyable": false, + "symbol": "WISE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 350, + "address": "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8", + "name": "Tierion Network Token", + "buyable": false, + "symbol": "TNT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000004711156789427, + "ccyValue": 0.006278, + "ethDayChange": -0.011409907738353543, + "ccyDayChange": 0.027328 + }, + "tokenlist": false + }, { + "id": 1819, + "address": "0x1efb2286bf89f01488c6b2a22b2556c0f45e972b", + "name": "Moon YFI", + "buyable": false, + "symbol": "MYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.004145422201795543, + "ccyValue": 5.525018, + "ethDayChange": -0.00281631755669344, + "ccyDayChange": 0.072819 + }, + "tokenlist": false + }, { + "id": 879, + "address": "0x75231f58b43240c9718dd58b4967c5114342a86c", + "name": "OKB", + "buyable": false, + "symbol": "OKB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00411940266209914, + "ccyValue": 5.490339, + "ethDayChange": -0.005695712744595704, + "ccyDayChange": 0.031825 + }, + "tokenlist": false + }, { + "id": 1174, + "address": "0x8d66df717faf06c07b5d3e53ffd3ea66d612e150", + "name": "FlexETH Set", + "buyable": false, + "symbol": "FLEXETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.20700268, + "ccyValue": 105.27, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2077, + "address": "0x838ce8f4da8b49ea72378427485cf827c08a0abf", + "name": "SakeSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2785, + "address": "0x9d942bd31169ed25a1ca78c776dab92de104e50e", + "name": "DeFI Socks 2020", + "buyable": false, + "symbol": "DEFISOCKS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1207, + "address": "0xc6ecc714b8e50a34314244a8165a4aa0f7d16308", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1638, + "address": "0xce25b4271cc4d937a7d9bf75b2068a7892b9961d", + "name": "Unipump", + "buyable": false, + "symbol": "UPP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 9.36824675093E-7, + "ccyValue": 0.001249, + "ethDayChange": -0.391672288900649351, + "ccyDayChange": -0.3245 + }, + "tokenlist": false + }, { + "id": 479, + "address": "0xcee4019fd41ecdc8bae9efdd20510f4b6faa6197", + "name": "Nollya Coin", + "buyable": false, + "symbol": "NLYA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2447, + "address": "0xec7269c26844b05271c552d64dc2f01f2213c85e", + "name": "Uniswap V2 UNCL-ORAI", + "buyable": false, + "symbol": "UNCL-ORAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1702, + "address": "0x4bbbd966ea913545ad556045b7af18f52a0ae91c", + "name": "NAZAR", + "buyable": false, + "symbol": "NAZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2322, + "address": "0xb8a1a865e4405281311c5bc0f90c240498472d3e", + "name": "NOIA-ETH Uniswap pool token", + "buyable": false, + "symbol": "NOIA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1600, + "address": "0x63e7aa05b78144013cfa4b23c9b61599d0a29023", + "name": "Uniswap V2 ETH-2KEY", + "buyable": false, + "symbol": "ETH-2KEY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 534, + "address": "0x95012835d927235d8bdfb653e2d425bffeaa7fa2", + "name": "HodlToken", + "buyable": false, + "symbol": "HODL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3069, + "address": "0xf0939011a9bb95c3b791f0cb546377ed2693a574", + "name": "Zero.Exchange Token", + "buyable": false, + "symbol": "ZERO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000041789581430755, + "ccyValue": 0.055768, + "ethDayChange": -0.128539609182102311, + "ccyDayChange": -0.09282 + }, + "tokenlist": false + }, { + "id": 1295, + "address": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", + "name": "Offshift", + "buyable": false, + "symbol": "XFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001417469071063742, + "ccyValue": 1.888794, + "ethDayChange": 0.011399962150538234, + "ccyDayChange": 0.050977 + }, + "tokenlist": false + }, { + "id": 2490, + "address": "0x7ef1081ecc8b5b5b130656a41d4ce4f89dbbcc8c", + "name": "CP3RToken", + "buyable": false, + "symbol": "CP3R", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00014896, + "ccyValue": 0.190499, + "ethDayChange": -0.092426734905258027, + "ccyDayChange": -0.132194 + }, + "tokenlist": false + }, { + "id": 29, + "address": "0xd4c435f5b09f855c3317c8524cb1f586e42795fa", + "name": "Cindicator", + "buyable": false, + "symbol": "CND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cnd.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000685, + "ccyValue": 0.009112, + "ethDayChange": 0.041033434650455927, + "ccyDayChange": 0.076687 + }, + "tokenlist": false + }, { + "id": 378, + "address": "0x0902077c90a7ab86d729d74124873b527cd9085b", + "name": "USDDex Stablecoin", + "buyable": false, + "symbol": "USDDex", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1040, + "address": "0x92cdc6ca2bf8b8daf93cf6e1ccf8bee9fff8acdb", + "name": "Medallion Project", + "buyable": false, + "symbol": "MDP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 515, + "address": "0x88f400f6a26465c9ac6ae5c1c8c14cf12b515c96", + "name": "Virus Token", + "buyable": false, + "symbol": "VIRUS", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2416, + "address": "0x4efe8665e564bf454ccf5c90ee16817f7485d5cf", + "name": "BlackDragon Token", + "buyable": false, + "symbol": "BDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.002931085429377608, + "ccyValue": 3.911546, + "ethDayChange": -0.027878645626483961, + "ccyDayChange": 0.011672 + }, + "tokenlist": false + }, { + "id": 3145, + "address": "0xb908c9d7cae7764cc0ef2e9a3ebb959ea556e32e", + "name": "norse.finance", + "buyable": false, + "symbol": "NFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.003820753467625168, + "ccyValue": 5.098812, + "ethDayChange": 0.007531367577287745, + "ccyDayChange": 0.048829 + }, + "tokenlist": false + }, { + "id": 1627, + "address": "0x10afaecb4419fa035e3ed940cae74e03ad2ec213", + "name": "Manual Wrapped KLP", + "buyable": false, + "symbol": "xKLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 178, + "address": "0x8c9952fb855346a752190234261f74dad13c26fa", + "name": "ALAN", + "buyable": false, + "symbol": "ALAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3144, + "address": "0x0d6ae2a429df13e44a07cd2969e085e4833f64a0", + "name": "PolkaBridge", + "buyable": false, + "symbol": "PBR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000529, + "ccyValue": 0.0705, + "ethDayChange": -0.235274276005936369, + "ccyDayChange": -0.20524 + }, + "tokenlist": false + }, { + "id": 1913, + "address": "0x7e9997a38a439b2be7ed9c9c4628391d3e055d48", + "name": "Fulcrum USDT iToken", + "buyable": false, + "symbol": "iUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2443, + "address": "0xbdaf764b64d6d81eb6aa83c070f44d1c9c7929f1", + "name": "FRIEZA", + "buyable": false, + "symbol": "FRZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2990, + "address": "0xb11773ea2c7b9586d9efa1438ce95aba22595a7e", + "name": "1inch Liquidity Pool (1INCH-USDT)", + "buyable": false, + "symbol": "1LP-1INCH-US", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3026, + "address": "0xd75ea151a61d06868e31f8988d28dfe5e9df57b4", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1546, + "address": "0xd583d0824ed78767e0e35b9bf7a636c81c665aa8", + "name": "LYXE-ETH Uniswap pool token", + "buyable": false, + "symbol": "LYXE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 500, + "address": "0xe2fe5e7e206e7b46cad6a5146320e5b4b9a18e97", + "name": "BITCOMO", + "buyable": false, + "symbol": "BM", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00000333, + "ccyValue": 0.004293, + "ethDayChange": 0.466960352422907489, + "ccyDayChange": 0.436266 + }, + "tokenlist": false + }, { + "id": 434, + "address": "0x9c23d67aea7b95d80942e3836bcdf7e708a747c2", + "name": "LOCIcoin", + "buyable": false, + "symbol": "LOCI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001756042103421, + "ccyValue": 0.00234, + "ethDayChange": -0.163789474561428571, + "ccyDayChange": -0.207854 + }, + "tokenlist": false + }, { + "id": 893, + "address": "0x265ba42daf2d20f3f358a7361d9f69cb4e28f0e6", + "name": "UniBombV3", + "buyable": false, + "symbol": "UBOMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000008346174210652, + "ccyValue": 0.011121, + "ethDayChange": -0.037657849761687499, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2198, + "address": "0x25a17a5a907941aaf6d6d1c7aae9c9cc3a38680c", + "name": "USDC-LUA Uniswap pool token", + "buyable": false, + "symbol": "USDC-LUA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1734, + "address": "0xea004e8fa3701b8e58e41b78d50996e0f7176cbd", + "name": "yffc.finance", + "buyable": false, + "symbol": "YFFC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1046, + "address": "0x8e4dbf540bf814c044785218b58c930b20a56be1", + "name": "Holistic ETH", + "buyable": false, + "symbol": "TCapETHDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-50", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.300695311349439647, + "ccyValue": 400.835413, + "ethDayChange": -0.028302405115843667, + "ccyDayChange": 0.012083 + }, + "tokenlist": false + }, { + "id": 280, + "address": "0xe86a746330b0b691323d2cbb5c140f77d7f198a4", + "name": "CAMO", + "buyable": false, + "symbol": "CAMO", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1053, + "address": "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7", + "name": "PhoenixDAO", + "buyable": false, + "symbol": "PHNX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000020039751399138, + "ccyValue": 0.026709, + "ethDayChange": 0.065502518865614588, + "ccyDayChange": 0.10743 + }, + "tokenlist": false + }, { + "id": 1255, + "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "name": "SHIBA INU", + "buyable": false, + "symbol": "SHIB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2989, + "address": "0x4ca0654f4fc1025cf1a17b7459c20ac0479522ad", + "name": "Rigel Finance", + "buyable": false, + "symbol": "RIGEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.20326555494082157, + "ccyValue": 270.912282, + "ethDayChange": -0.050210839826327358, + "ccyDayChange": -0.012831 + }, + "tokenlist": false + }, { + "id": 1043, + "address": "0x2b6ff53fc2493ccd5202d80a6c439741414c5ff2", + "name": "Tweebaa", + "buyable": false, + "symbol": "TWEE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.08486542, + "ccyValue": 45.74, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1979, + "address": "0x5d762f76b9e91f71cc4f94391bdfe6333db8519c", + "name": "IYF.finance", + "buyable": false, + "symbol": "IYF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.063661248782704833, + "ccyValue": 84.938833, + "ethDayChange": -0.104928865553647534, + "ccyDayChange": -0.068703 + }, + "tokenlist": false + }, { + "id": 1008, + "address": "0xf80d589b3dbe130c270a69f1a69d050f268786df", + "name": "Datamine", + "buyable": false, + "symbol": "DAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00007175, + "ccyValue": 0.0956, + "ethDayChange": -0.013704127273528295, + "ccyDayChange": 0.025487 + }, + "tokenlist": false + }, { + "id": 463, + "address": "0x73a052500105205d34daf004eab301916da8190f", + "name": "Yearn TUSD v2", + "buyable": false, + "symbol": "yTUSD v2", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/ytusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2394, + "address": "0xb19059ebb43466c323583928285a49f558e572fd", + "name": "Curve.fi hBTC/wBTC", + "buyable": false, + "symbol": "hCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 880, + "address": "0x5b3e41eaf2538ec394af8f1baae6f00fd6eab8d2", + "name": "Mauerv", + "buyable": false, + "symbol": "MAU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2857, + "address": "0x4cc53ee5ef306a95d407321d4b4acc30814c04ee", + "name": "RealToken S 19163 Mitchell St Detroit MI", + "buyable": false, + "symbol": "19163 Mitche", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1749, + "address": "0x4c1911a80474991be7ae8bcb7e100ede8e3de657", + "name": "RubySwap.exchange", + "buyable": false, + "symbol": "RUBY", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 407, + "address": "0xdf85afd8a99c5d54987bb7fbd37ba9e1aedd942c", + "name": "Jacek Kołodziejczak Token", + "buyable": false, + "symbol": "JKCOIN", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 475, + "address": "0x3145b48981afc4424692493243f80f78816ed339", + "name": "Omega PLN", + "buyable": false, + "symbol": "oPLN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1715, + "address": "0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa", + "name": "KittenFinance", + "buyable": false, + "symbol": "KIF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.13726996, + "ccyValue": 182.85, + "ethDayChange": 0.347582853532154063, + "ccyDayChange": 0.399827 + }, + "tokenlist": false + }, { + "id": 969, + "address": "0xb28f9c9b71b0c3885ae441a3c0f51027b760a991", + "name": "MADCAP", + "buyable": false, + "symbol": "MADCAP", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2123, + "address": "0xc22b30e4cce6b78aaaadae91e44e73593929a3e9", + "name": "RAC", + "buyable": false, + "symbol": "RAC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00121253, + "ccyValue": 1.53, + "ethDayChange": 0.011410935479834842, + "ccyDayChange": 0.02 + }, + "tokenlist": false + }, { + "id": 758, + "address": "0xb977ee318010a5252774171494a1bcb98e7fab65", + "name": "Aave Interest bearing UniUSDT", + "buyable": false, + "symbol": "aUniUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 497, + "address": "0xe177ccb051621687bee98bfc4bdea6d479bac83e", + "name": "IcToken", + "buyable": false, + "symbol": "ICT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1025, + "address": "0x167ac1668175a5fd5c6191daa18c8f9c46228153", + "name": "LOOM-PARETO Uniswap pool token", + "buyable": false, + "symbol": "LOOM-PARETO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2425, + "address": "0x4168cef0fca0774176632d86ba26553e3b9cf59d", + "name": "DEV-ETH Uniswap pool token", + "buyable": false, + "symbol": "DEV-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2690, + "address": "0xe4f726adc8e89c6a6017f01eada77865db22da14", + "name": "PieDAO Balanced Crypto Pie", + "buyable": false, + "symbol": "BCP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001633048513186324, + "ccyValue": 2.176527, + "ethDayChange": 0.028027282015240699, + "ccyDayChange": 0.068486 + }, + "tokenlist": false + }, { + "id": 670, + "address": "0x7b22938ca841aa392c93dbb7f4c42178e3d65e88", + "name": "AstroTokens", + "buyable": false, + "symbol": "ASTRO", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00069, + "ccyValue": 0.9195, + "ethDayChange": 0.110270809532238081, + "ccyDayChange": 0.039875 + }, + "tokenlist": false + }, { + "id": 614, + "address": "0x67ab11058ef23d0a19178f61a050d3c38f81ae21", + "name": "SELF TOKEN", + "buyable": false, + "symbol": "SELF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 929, + "address": "0x44b6e3e85561ce054ab13affa0773358d795d36d", + "name": "ethArt", + "buyable": false, + "symbol": "ARTE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3111, + "address": "0x235c9e24d3fb2fafd58a2e49d454fdcd2dbf7ff1", + "name": "Badger Sett Uniswap V2", + "buyable": false, + "symbol": "bUNI-V2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1957, + "address": "0x371a47394006224e38c9da28c17738e4f9a7900e", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2537, + "address": "0x15523305289969a36f41baa6070039974406c105", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2984, + "address": "0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7", + "name": "Shopping.io", + "buyable": false, + "symbol": "SPI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00793504, + "ccyValue": 10.57, + "ethDayChange": -0.078927990500474535, + "ccyDayChange": -0.043205 + }, + "tokenlist": false + }, { + "id": 2709, + "address": "0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc", + "name": "CryptalDash", + "buyable": false, + "symbol": "CRD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000035038429170307, + "ccyValue": 0.046689, + "ethDayChange": 0.093070856768249653, + "ccyDayChange": 0.136179 + }, + "tokenlist": false + }, { + "id": 1636, + "address": "0x912b38134f395d1bfab4c6f9db632c31667acf98", + "name": "DeFi Bids", + "buyable": false, + "symbol": "BIDS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002512, + "ccyValue": 0.032783, + "ethDayChange": 0.003996802557953637, + "ccyDayChange": 0.019213 + }, + "tokenlist": false + }, { + "id": 2478, + "address": "0xd0f77ae86d382d1f6384a425815e4c1b7a4dec2b", + "name": "Uniswap V2 PICKLE-DAI", + "buyable": false, + "symbol": "PICKLE-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 537, + "address": "0x7e96ecc14fa5c77e1eab08eb175b434b47470760", + "name": "Join iExec RLC airdrop on Telegram (@iExecRLCBot)", + "buyable": false, + "symbol": "Join iExec R", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1817, + "address": "0x3e9bc21c9b189c09df3ef1b824798658d5011937", + "name": "Linear Token", + "buyable": false, + "symbol": "LINA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000027719482967474, + "ccyValue": 0.036992, + "ethDayChange": -0.012487247329034556, + "ccyDayChange": 0.026985 + }, + "tokenlist": false + }, { + "id": 1393, + "address": "0x2b6dd33b57579d93f0fb799abbc47e16d589a024", + "name": "Views", + "buyable": false, + "symbol": "VIEWS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1225, + "address": "0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4", + "name": "J8T Token", + "buyable": false, + "symbol": "J8T", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.672E-7, + "ccyValue": 0.000199, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1242, + "address": "0xddd460bbd9f79847ea08681563e8a9696867210c", + "name": "Spendcoin", + "buyable": false, + "symbol": "SPND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000044, + "ccyValue": 0.005874, + "ethDayChange": 0.023255813953488372, + "ccyDayChange": 0.069556 + }, + "tokenlist": false + }, { + "id": 2491, + "address": "0x3e7ac3dfe933d3027a5968be23c624f1309b1b02", + "name": "Uniswap V2 KRL-ETH", + "buyable": false, + "symbol": "KRL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1622, + "address": "0x5020a6b6487f3d01f664d862227fc9460cc4e008", + "name": "CoinMetro", + "buyable": false, + "symbol": "XCM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 403, + "address": "0x83f798e925bcd4017eb265844fddabb448f1707d", + "name": "Yearn USDT v2", + "buyable": false, + "symbol": "yUSDT v2", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/yusdt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 406, + "address": "0x738505a5f31bf72e0b70298bca81150eb1b7c751", + "name": "433 Token", + "buyable": false, + "symbol": "433", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 682, + "address": "0x20d4cec36528e1c4563c1bfbe3de06aba70b22b4", + "name": "Legendary Chest", + "buyable": false, + "symbol": "Legend Chest", + "decimals": 0, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/immutable.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#333332", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3093, + "address": "0x980a07e4f64d21a0cb2ef8d4af362a79b9f5c0da", + "name": "DAI-BSGS Uniswap pool token", + "buyable": false, + "symbol": "DAI-BSGS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 243, + "address": "0xa3b5fdeb5dbc592ffc5e222223376464b9c56fb8", + "name": "Fake Doge Token", + "buyable": false, + "symbol": "FDGT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1190, + "address": "0x6d6506e6f438ede269877a0a720026559110b7d5", + "name": "BONKTOKEN", + "buyable": false, + "symbol": "BONK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00013374, + "ccyValue": 0.178066, + "ethDayChange": 0.358982659521475484, + "ccyDayChange": 0.411016 + }, + "tokenlist": false + }, { + "id": 302, + "address": "0xe5f7ef61443fc36ae040650aa585b0395aef77c8", + "name": "OLD RealToken 9943 Marlowe Street Detroit MI", + "buyable": false, + "symbol": "9943 Marlowe", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "A spacious, 3BR / 1 bathroom brownstone bungalow located in Detroit’s Fiskhorn neighborhood.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.05581774, + "ccyValue": 74.8, + "ethDayChange": -0.017208353750297781, + "ccyDayChange": 0.062651 + }, + "tokenlist": false + }, { + "id": 462, + "address": "0x5228a22e72ccc52d415ecfd199f99d0665e7733b", + "name": "pTokens BTC", + "buyable": false, + "symbol": "pBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 24.3757607667579557, + "ccyValue": 32529.559791, + "ethDayChange": 0.009335482819884589, + "ccyDayChange": 0.047381 + }, + "tokenlist": false + }, { + "id": 713, + "address": "0xc0829421c1d260bd3cb3e0f06cfe2d52db2ce315", + "name": "Ether Token", + "buyable": false, + "symbol": "ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2825, + "address": "0xf2375ec44934fe96ee5ffb8ed597c6f9349771fd", + "name": "DiBi Token", + "buyable": false, + "symbol": "DIBI", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 724, + "address": "0x5b2e4a700dfbc560061e957edec8f6eeeb74a320", + "name": "INS Token", + "buyable": false, + "symbol": "INS", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00008352, + "ccyValue": 0.2017, + "ethDayChange": -0.370610399397136398, + "ccyDayChange": 0.041301 + }, + "tokenlist": false + }, { + "id": 1827, + "address": "0xffa7d07dc79072dfb9b86c27c8072410975a443f", + "name": "ZeroUtilityV2", + "buyable": false, + "symbol": "ZUT2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2282, + "address": "0x68f1b730614216e4e7c5205fe4862096796aac38", + "name": "UPCORE", + "buyable": false, + "symbol": "upCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2770, + "address": "0x4bae380b5d762d543d426331b8437926443ae9ec", + "name": "XVIX", + "buyable": false, + "symbol": "XVIX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.040952485019372285, + "ccyValue": 54.651271, + "ethDayChange": -0.139201930676171466, + "ccyDayChange": -0.10418 + }, + "tokenlist": false + }, { + "id": 1801, + "address": "0x2b78c26973545f9fd7ebdb01922966628382e6ba", + "name": "yefam.finance", + "buyable": false, + "symbol": "YEFAM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002103973218502942, + "ccyValue": 2.804175, + "ethDayChange": -0.037865650015774591, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2558, + "address": "0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8", + "name": "KIRA Network", + "buyable": false, + "symbol": "KEX", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000436804576001531, + "ccyValue": 0.582918, + "ethDayChange": 0.337581775469993243, + "ccyDayChange": 0.392003 + }, + "tokenlist": false + }, { + "id": 2663, + "address": "0xbd8adc576200e131de7320e7e1a0f2ac386c0ff3", + "name": "hathor.network", + "buyable": false, + "symbol": "HTR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2269, + "address": "0x1cb3209d45b2a60b7fbca1ccdbf87f674237a4aa", + "name": "ThoreCoin", + "buyable": false, + "symbol": "THR", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2284, + "address": "0x65ece136b89ebaa72a7f7aa815674946e44ca3f9", + "name": "Matter Labs Trial Token", + "buyable": false, + "symbol": "MLTT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1111, + "address": "0x88277055df2ee38da159863da2f56ee0a6909d62", + "name": "ANALYSX", + "buyable": false, + "symbol": "XYS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 170, + "address": "0x966889549fe7b3b950063151f6e2ad7651becdb9", + "name": "Droid", + "buyable": false, + "symbol": "Droid", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2374, + "address": "0xe523442a6c083016e2f430ab0780250ef4438536", + "name": "Yield Dai - 2021-06-30", + "buyable": false, + "symbol": "fyDai21Jun", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2152, + "address": "0x18bfe544b09587b7f942ae2d3b106889a3c72f3e", + "name": "Simpson Finance", + "buyable": false, + "symbol": "SIMF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 649, + "address": "0x7a6aab486a2bed37c7cd523eb60b3a42533f8906", + "name": "Hydro Pool USDT", + "buyable": false, + "symbol": "pUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2171, + "address": "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e", + "name": "Unistake", + "buyable": false, + "symbol": "UNISTAKE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000010846930281334, + "ccyValue": 0.014454, + "ethDayChange": -0.003769302053839491, + "ccyDayChange": 0.035239 + }, + "tokenlist": false + }, { + "id": 2172, + "address": "0x24692791bc444c5cd0b81e3cbcaba4b04acd1f3b", + "name": "UnikoinGold", + "buyable": false, + "symbol": "UKG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000009821004043636, + "ccyValue": 0.013089, + "ethDayChange": -0.037865650015786351, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 65, + "address": "0xfe5f141bf94fe84bc28ded0ab966c16b17490657", + "name": "Libra Credit", + "buyable": false, + "symbol": "LBA", + "decimals": 18, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0xfe5f141bf94fe84bc28ded0ab966c16b17490657.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001341756664462, + "ccyValue": 0.001788, + "ethDayChange": -0.027712561984057971, + "ccyDayChange": -0.032991 + }, + "tokenlist": false + }, { + "id": 2489, + "address": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1099, + "address": "0xedaedd22e653c504ff6806bf61664292848eb26e", + "name": "ETH-HEX2T Uniswap pool token", + "buyable": false, + "symbol": "ETH-HEX2T", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1611, + "address": "0x8620c5bdc97a6117eea3ae79af285fe13f7453b4", + "name": "Yearn Finance Junior", + "buyable": false, + "symbol": "YFIJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1408, + "address": "0x43fd7c3427a274fa96a76289dbb7bdd37ba8ec57", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 369, + "address": "0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374", + "name": "Veritaseum", + "buyable": false, + "symbol": "VERI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.008642787685258994, + "ccyValue": 11.519105, + "ethDayChange": -0.010614301497939242, + "ccyDayChange": 0.025501 + }, + "tokenlist": false + }, { + "id": 1354, + "address": "0x9b9087756eca997c5d595c840263001c9a26646d", + "name": "DOGEFI", + "buyable": false, + "symbol": "DOGEFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00003271870135014, + "ccyValue": 0.043598, + "ethDayChange": 0.477142273144018059, + "ccyDayChange": 0.5066 + }, + "tokenlist": false + }, { + "id": 923, + "address": "0x8175362afbeee32afb22d05adc0bbd08de32f5ae", + "name": "ETH-DMG Uniswap pool token", + "buyable": false, + "symbol": "ETH-DMG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2365, + "address": "0xdd44780c66f74b856c32f2ba4095ecc4ef143a57", + "name": "Bitcoin Bless", + "buyable": false, + "symbol": "BTCB", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2056, + "address": "0xf4b0e73ee56ab24f21e6be9f7cbb03eaff80adcd", + "name": "OrangeJuice", + "buyable": false, + "symbol": "OJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1038, + "address": "0x8888889213dd4da823ebdd1e235b09590633c150", + "name": "Marblecoin", + "buyable": false, + "symbol": "MBC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004738, + "ccyValue": 0.060993, + "ethDayChange": -0.051641313050440352, + "ccyDayChange": -0.049228 + }, + "tokenlist": false + }, { + "id": 2064, + "address": "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da", + "name": "DarkToken", + "buyable": false, + "symbol": "DARK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.01158929344173991, + "ccyValue": 15.442872, + "ethDayChange": -0.063939235392853681, + "ccyDayChange": -0.023221 + }, + "tokenlist": false + }, { + "id": 915, + "address": "0x5e888b83b7287eed4fb7da7b7d0a0d4c735d94b3", + "name": "Acorn Collective Token", + "buyable": false, + "symbol": "OAK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 7.1E-7, + "ccyValue": 0.00095, + "ethDayChange": 0, + "ccyDayChange": 0.035987 + }, + "tokenlist": false + }, { + "id": 1759, + "address": "0x23b7f3a35bda036e3b59a945e441e041e6b11101", + "name": "darkNYAN", + "buyable": false, + "symbol": "dNYAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1739, + "address": "0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce", + "name": "Lead Token", + "buyable": false, + "symbol": "LEAD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 8.63387197122E-7, + "ccyValue": 0.001151, + "ethDayChange": -0.000587816617448662, + "ccyDayChange": 0.039747 + }, + "tokenlist": false + }, { + "id": 1364, + "address": "0xf36d4e6a35e2c950c3f9122f4c16f39349a82772", + "name": "REAL GAME", + "buyable": false, + "symbol": "RGAME", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1493, + "address": "0xc19e3035a4f6f69b981c7dc2f533e862aa3af496", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1421, + "address": "0x957a688d23a00f196b2da8e2531702c67de167cf", + "name": "Chasyr token", + "buyable": false, + "symbol": "MPH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mph.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#450041", + "description": "The Chasyr Token, MPH is a rewards & utility token to be earned for participation via gamification in the Chasyr app and used for peer-to-peer transactions between users for delivery.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 567, + "address": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "name": "Aave Interest bearing LEND", + "buyable": false, + "symbol": "aLEND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/alend.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-10", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00220387788578194, + "ccyValue": 2.941085, + "ethDayChange": -0.037058285938316405, + "ccyDayChange": 0.000222 + }, + "tokenlist": false + }, { + "id": 4, + "address": "0x06147110022b768ba8f99a8f385df11a151a9cc8", + "name": "TokenStars", + "buyable": false, + "symbol": "ACE", + "decimals": 0, + "iconUrl": "https://s2.coinmarketcap.com/static/img/coins/64x64/2311.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000004147155658278, + "ccyValue": 0.005527, + "ethDayChange": -0.365878339712844037, + "ccyDayChange": -0.216695 + }, + "tokenlist": false + }, { + "id": 896, + "address": "0xed553a10c42033ee2db82e189ed29ac7770b8576", + "name": "TUT", + "buyable": false, + "symbol": "TUT", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1485, + "address": "0xf82e56abe7d39493e603403e012928da11057688", + "name": "VortEx Token", + "buyable": false, + "symbol": "VRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1083, + "address": "0x48ac44f4e29e602f851b84c271c22b85b9447251", + "name": "Bitcoin High Yield Set", + "buyable": false, + "symbol": "BHY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-42", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.080702777843245052, + "ccyValue": 107.561764, + "ethDayChange": -0.045009667094197748, + "ccyDayChange": -0.003384 + }, + "tokenlist": false + }, { + "id": 2283, + "address": "0xb1c5f18a9bc08131ca32d73528d1bb5823a0f2aa", + "name": "eXRD", + "buyable": false, + "symbol": "eXRD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1538, + "address": "0x66b3037aa8dd64c3ef1aee13a4d1f2509f672d1c", + "name": "NAP", + "buyable": false, + "symbol": "NAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1372, + "address": "0x2129ff6000b95a973236020bcd2b2006b0d8e019", + "name": "MYX Network", + "buyable": false, + "symbol": "MYX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 5.46243284888E-7, + "ccyValue": 0.000728, + "ethDayChange": 0.002097385595303614, + "ccyDayChange": 0.064327 + }, + "tokenlist": false + }, { + "id": 3076, + "address": "0xba429f7011c9fa04cdd46a2da24dc0ff0ac6099c", + "name": "Aave variable debt bearing BUSD", + "buyable": false, + "symbol": "variableDebt", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2816, + "address": "0x73bde888664df8ddfd156b52e6999eeabab57c94", + "name": "RealToken S 9717 Everts St Detroit MI", + "buyable": false, + "symbol": "9717 Everts ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 259, + "address": "0x1fcdce58959f536621d76f5b7ffb955baa5a672f", + "name": "The Force Token", + "buyable": false, + "symbol": "FOR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001621, + "ccyValue": 0.021587, + "ethDayChange": 0.039295766520699361, + "ccyDayChange": 0.077249 + }, + "tokenlist": false + }, { + "id": 1210, + "address": "0xa03c34ee9fa0e8db36dd9bf8d46631bb25f66302", + "name": "Living Without Borders Token", + "buyable": false, + "symbol": "LWBT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1892, + "address": "0x05d27cdd23e22ca63e7f9c7c6d1b79ede9c4fcf5", + "name": "Yearn Finance Passive Income", + "buyable": false, + "symbol": "YFPI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.012, + "ccyValue": 15.993597, + "ethDayChange": 10.675991243006567745, + "ccyDayChange": 10.342977 + }, + "tokenlist": false + }, { + "id": 2633, + "address": "0x4d96369002fc5b9687ee924d458a7e5baa5df34e", + "name": "MPH-ETH Uniswap pool token", + "buyable": false, + "symbol": "MPH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 154, + "address": "0xfbd620311fc84bb4888a10d61a87c52ebb070d18", + "name": "BitEth5050CollateralSet", + "buyable": false, + "symbol": "BTCETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 284, + "address": "0x50709cb68eac2a5a2517c7645d02c1ca37655349", + "name": "Argent Coin", + "buyable": false, + "symbol": "ARGNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2658, + "address": "0x7703c35cffdc5cda8d27aa3df2f9ba6964544b6e", + "name": "Pylon Token", + "buyable": false, + "symbol": "PYLNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000691674339934458, + "ccyValue": 0.921863, + "ethDayChange": 0.01928165745804978, + "ccyDayChange": 0.067007 + }, + "tokenlist": false + }, { + "id": 683, + "address": "0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d", + "name": "Fuse Token", + "buyable": false, + "symbol": "FUSE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/fuse.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0A2336", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004788, + "ccyValue": 0.063774, + "ethDayChange": 0.962611946252627878, + "ccyDayChange": 1.039919 + }, + "tokenlist": false + }, { + "id": 507, + "address": "0x3e3aafa44d6e122b07d329b992f0df62cf82b1e7", + "name": "BEB公有链VPOW投票官方负责兜底回购", + "buyable": false, + "symbol": "uxtw.com$0.0", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1391, + "address": "0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b", + "name": "Havens Nook", + "buyable": false, + "symbol": "HXN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 124, + "address": "0x667088b212ce3d06a1b553a7221e1fd19000d9af", + "name": "Wings", + "buyable": false, + "symbol": "WINGS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/wings.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#5DC7F3", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000019489240678274, + "ccyValue": 0.025971, + "ethDayChange": 0.040717443111075404, + "ccyDayChange": 0.07853 + }, + "tokenlist": false + }, { + "id": 907, + "address": "0x5aa485e6b794bcf5f834bf5c7ff43b9b83322764", + "name": "Mandi", + "buyable": false, + "symbol": "Mandi", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002242, + "ccyValue": 0.030047, + "ethDayChange": 1.813048933500627353, + "ccyDayChange": 1.868449 + }, + "tokenlist": false + }, { + "id": 2453, + "address": "0x62ce08aa2c7c528c44efa2ef3d358ed2a43a0b04", + "name": "PowerToken2", + "buyable": false, + "symbol": "POWAH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 992, + "address": "0x63804d757b5b7c43509fded8f7ce10cc0bac2ae0", + "name": "ETH-ASKO Uniswap pool token", + "buyable": false, + "symbol": "ETH-ASKO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1327, + "address": "0xbe6c8f2810ef39420d2dc2901b8414c8c45fee6d", + "name": "MICROMINES", + "buyable": false, + "symbol": "MICRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.5E-9, + "ccyValue": 0.000002, + "ethDayChange": 0.25, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1318, + "address": "0x6aeebc2f5c979fd5c4361c2d288e55ac6b7e39bb", + "name": "PAR-ETH Uniswap pool token", + "buyable": false, + "symbol": "PAR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2098, + "address": "0xe0e4839e0c7b2773c58764f9ec3b9622d01a0428", + "name": "EnCore", + "buyable": false, + "symbol": "ENCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00166815, + "ccyValue": 2.33, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 524, + "address": "0x6b1c47db15d4499b51043891a8e29585c29a6a2a", + "name": "Toilet Paper Token", + "buyable": false, + "symbol": "TPT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 442, + "address": "0x8c7c047051f37746bb1dcd16ae37851a3891635c", + "name": "BullBearEthereum Set", + "buyable": false, + "symbol": "BBE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.2494501, + "ccyValue": 148.02, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 445, + "address": "0x3740fb63ab7a09891d7c0d4299442a551d06f5fd", + "name": "Stablecoins.exchange cDAI/cUSDC", + "buyable": false, + "symbol": "cDAIUSDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1535, + "address": "0xfab5a05c933f1a2463e334e011992e897d56ef0a", + "name": "DeFi Of Thrones", + "buyable": false, + "symbol": "DoTx", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000029189368737918, + "ccyValue": 0.038904, + "ethDayChange": -0.00275474076125726, + "ccyDayChange": 0.018136 + }, + "tokenlist": false + }, { + "id": 746, + "address": "0x12fcd6463e66974cf7bbc24ffc4d40d6be458283", + "name": "Globitex Token", + "buyable": false, + "symbol": "GBX", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002296, + "ccyValue": 0.008703, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 347, + "address": "0x4234f63b1d202f6c016ca3b6a0d41d7d85f17716", + "name": "QNTU Token", + "buyable": false, + "symbol": "QNTU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.45582098941E-7, + "ccyValue": 0.000194, + "ethDayChange": -0.035059257242096985, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1313, + "address": "0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20", + "name": "AGA Token", + "buyable": false, + "symbol": "AGA", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001259139433897813, + "ccyValue": 1.677818, + "ethDayChange": -0.010487088882055117, + "ccyDayChange": 0.028234 + }, + "tokenlist": false + }, { + "id": 982, + "address": "0x3cf37518ca5762c76827f1e8e0b5b24fdacf42ac", + "name": "Art Coin", + "buyable": false, + "symbol": "ART", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00079421, + "ccyValue": 0.15373, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2350, + "address": "0x871bdcaa05c307ee43512d72f1789336c0b987ca", + "name": "Pytos", + "buyable": false, + "symbol": "PTOS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2094, + "address": "0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0", + "name": "Fulcrum DAI iToken", + "buyable": false, + "symbol": "iDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3168, + "address": "0x46f8a600337dec5cab03aa9b8f67f1d5b788ce28", + "name": "RealToken S 18433 Faust Ave Detroit MI", + "buyable": false, + "symbol": "REALTOKEN-S-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 625, + "address": "0x4da9b813057d04baef4e5800e36083717b4a0341", + "name": "Aave Interest bearing TUSD V1", + "buyable": false, + "symbol": "aTUSD V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/atusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-5", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000749921791672143, + "ccyValue": 0.999496, + "ethDayChange": -0.036183967271237464, + "ccyDayChange": -0.001002 + }, + "tokenlist": false + }, { + "id": 1671, + "address": "0x9aeb50f542050172359a0e1a25a9933bc8c01259", + "name": "oinfinance", + "buyable": false, + "symbol": "OIN", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000184418249456443, + "ccyValue": 0.24574, + "ethDayChange": 0.179446466209024047, + "ccyDayChange": 0.230244 + }, + "tokenlist": false + }, { + "id": 853, + "address": "0x075b1bb99792c9e1041ba13afef80c91a1e70fb3", + "name": "Curve.fi renBTC/wBTC/sBTC", + "buyable": false, + "symbol": "crvRenWSBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 24.640923131921910509, + "ccyValue": 32872.495938, + "ethDayChange": -0.000196739059060726, + "ccyDayChange": 0.039225 + }, + "tokenlist": false + }, { + "id": 3098, + "address": "0xf55bbe0255f7f4e70f63837ff72a577fbddbe924", + "name": "Cream BarnBridge Governance Token", + "buyable": false, + "symbol": "crBOND", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 5, + "address": "0x4470bb87d77b963a013db939be332f927f2b992e", + "name": "AdEx", + "buyable": false, + "symbol": "ADX", + "decimals": 4, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/adx.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000310842545203362, + "ccyValue": 0.414223, + "ethDayChange": -0.011840981667317623, + "ccyDayChange": 0.02688 + }, + "tokenlist": false + }, { + "id": 2087, + "address": "0x4dfd069f5ac19656b6e199733f0491eea2489285", + "name": "unfuddable.finance", + "buyable": false, + "symbol": "UNFUD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2005, + "address": "0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca", + "name": "NOIA Token", + "buyable": false, + "symbol": "NOIA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/noia.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#223AFF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000181321796887636, + "ccyValue": 0.241666, + "ethDayChange": -0.033622971097013036, + "ccyDayChange": 0.00441 + }, + "tokenlist": false + }, { + "id": 1217, + "address": "0xc1fb6c015fc535abd331d3029de76a62e412fb23", + "name": "Forcer", + "buyable": false, + "symbol": "FORCER", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000326, + "ccyValue": 0.001978, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1022, + "address": "0x6d002a834480367fb1a1dc5f47e82fde39ec2c42", + "name": "ETH/BTC Synthetic Token Expiring 1 August 2020", + "buyable": false, + "symbol": "ETHBTC-AUG20", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 339, + "address": "0x8e9c3d1f30904e91764b7b8bbfda3a429b886874", + "name": "0xETH SV", + "buyable": false, + "symbol": "0xESV", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1093, + "address": "0xd8cf532a29fd435b8e13afed228bbf2764a91003", + "name": "DAI-H4KR Uniswap pool token", + "buyable": false, + "symbol": "DAI-H4KR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1439, + "address": "0x646707246d7d5c2a86d7206f41ca8199ea9ced69", + "name": "Porkchop", + "buyable": false, + "symbol": "CHOP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000489, + "ccyValue": 0.006564, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2952, + "address": "0xfb931d41a744be590e8b51e2e343bbe030ac4f93", + "name": "Sperax", + "buyable": false, + "symbol": "SPA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000009637148998909, + "ccyValue": 0.012844, + "ethDayChange": -0.028756686393857101, + "ccyDayChange": 0.009431 + }, + "tokenlist": false + }, { + "id": 1390, + "address": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", + "name": "DSLA", + "buyable": false, + "symbol": "DSLA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dsla.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#2196F3", + "description": "DSLA Protocol is a decentralized alternative to SLA contracts. It enables anyone to vouch for the reliability of a service, earn rewards when the service performs as expected, and claim financial compensation when the service doesn’t meet expectations.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001025485962256, + "ccyValue": 0.001367, + "ethDayChange": -0.001145202602181755, + "ccyDayChange": 0.037965 + }, + "tokenlist": false + }, { + "id": 3030, + "address": "0xa8b12cc90abf65191532a12bb5394a714a46d358", + "name": "POW BTC-35W/T", + "buyable": false, + "symbol": "pBTC35A", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.07475751, + "ccyValue": 99.37, + "ethDayChange": 0.029113609443667817, + "ccyDayChange": 0.067063 + }, + "tokenlist": false + }, { + "id": 1072, + "address": "0xc3eb65c18902357f0c3577ced27b1fa914cd0e57", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 353, + "address": "0xde06a39dd3b682338878c4fbab12c38d5e684f69", + "name": "Kowalski Token", + "buyable": false, + "symbol": "KOWAL", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3008, + "address": "0x7566126f2fd0f2dddae01bb8a6ea49b760383d5a", + "name": "1inch Liquidity Pool (ETH-DAI)", + "buyable": false, + "symbol": "1LP-ETH-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2908, + "address": "0xe7c9c188138f7d70945d420d75f8ca7d8ab9c700", + "name": "Basis Dollar Share", + "buyable": false, + "symbol": "BSDS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00572856, + "ccyValue": 7.61, + "ethDayChange": -0.046725519398936657, + "ccyDayChange": -0.010403 + }, + "tokenlist": false + }, { + "id": 533, + "address": "0xf230b790e05390fc8295f4d3f60332c93bed42e2", + "name": "Tronix", + "buyable": false, + "symbol": "TRX", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2807, + "address": "0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304", + "name": "MMToken", + "buyable": false, + "symbol": "MM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.001708876555202633, + "ccyValue": 2.280503, + "ethDayChange": -0.087628820013890671, + "ccyDayChange": -0.050509 + }, + "tokenlist": false + }, { + "id": 2787, + "address": "0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a", + "name": "BT.Finance", + "buyable": false, + "symbol": "BT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.006634188201464462, + "ccyValue": 8.853353, + "ethDayChange": 0.003506818492599928, + "ccyDayChange": 0.04464 + }, + "tokenlist": false + }, { + "id": 1151, + "address": "0x04a020325024f130988782bd5276e53595e8d16e", + "name": "Herbalist Token", + "buyable": false, + "symbol": "HERB", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.2E-9, + "ccyValue": 0.000006, + "ethDayChange": 0.909090909090909091, + "ccyDayChange": 1 + }, + "tokenlist": false + }, { + "id": 692, + "address": "0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090", + "name": "CPChain", + "buyable": false, + "symbol": "CPC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00000621074143729, + "ccyValue": 0.008278, + "ethDayChange": 0.019826180178981938, + "ccyDayChange": 0.062781 + }, + "tokenlist": false + }, { + "id": 598, + "address": "0xb6957bf56805faed7f1bae30eaebe918b8baff71", + "name": "JILT ", + "buyable": false, + "symbol": "JLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.054E-7, + "ccyValue": 0.000138, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 7, + "address": "0x4ceda7906a5ed2179785cd3a40a69ee8bc99c466", + "name": "AION", + "buyable": false, + "symbol": "AION", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aion.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000055403990866419, + "ccyValue": 0.073826, + "ethDayChange": 0.061785949912207742, + "ccyDayChange": 0.100566 + }, + "tokenlist": false + }, { + "id": 1580, + "address": "0x05860d453c7974cbf46508c06cba14e211c629ce", + "name": "Eden Coin", + "buyable": false, + "symbol": "EDN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001187999539538, + "ccyValue": 0.001583, + "ethDayChange": 0.024971259164736707, + "ccyDayChange": 0.065276 + }, + "tokenlist": false + }, { + "id": 771, + "address": "0x048930eec73c91b44b0844aeacdebadc2f2b6efb", + "name": "Aave Interest bearing UniDAI", + "buyable": false, + "symbol": "aUniDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1554, + "address": "0xebbdf302c940c6bfd49c6b165f457fdb324649bc", + "name": "Hydro", + "buyable": false, + "symbol": "HYDRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.098E-7, + "ccyValue": 0.000146, + "ethDayChange": 0.003656307129798903, + "ccyDayChange": 0.035461 + }, + "tokenlist": false + }, { + "id": 2361, + "address": "0x55d5c232d921b9eaa6b37b5845e439acd04b4dba", + "name": "HEX-ETH Uniswap pool token", + "buyable": false, + "symbol": "HEX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1527, + "address": "0x00a6d3e564f82acecb445f57138c6c14f0d05ccb", + "name": "MechYield", + "buyable": false, + "symbol": "MECH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1156, + "address": "0x9393fdc77090f31c7db989390d43f454b1a6e7f3", + "name": "DarkEnergyCrystals", + "buyable": false, + "symbol": "DEC", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1631, + "address": "0x15b72cb18d0633bdd52c902ef7164aef256df01b", + "name": "smoothyearn.finance", + "buyable": false, + "symbol": "YFIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1781, + "address": "0x4086692d53262b2be0b13909d804f0491ff6ec3e", + "name": "Yield Farming Known as Ash", + "buyable": false, + "symbol": "YFKA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.006978557545127142, + "ccyValue": 9.312916, + "ethDayChange": 0.112484165365121992, + "ccyDayChange": 0.158323 + }, + "tokenlist": false + }, { + "id": 912, + "address": "0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d", + "name": "Carboneum", + "buyable": false, + "symbol": "C8", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000314, + "ccyValue": 0.004087, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 883, + "address": "0x30eb5e15476e6a80f4f3cd8479749b4881dab1b8", + "name": "cUSDC-cDAI Uniswap pool token", + "buyable": false, + "symbol": "cUSDC-cDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 391, + "address": "0xc770eefad204b5180df6a14ee197d99d808ee52d", + "name": "FOX", + "buyable": false, + "symbol": "FOX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000260294500213789, + "ccyValue": 0.346846, + "ethDayChange": -0.034470313847819542, + "ccyDayChange": 0.00398 + }, + "tokenlist": false + }, { + "id": 1260, + "address": "0xb140bc28db29fc4c19079ebb6374044d3002ebb4", + "name": "Antishiba", + "buyable": false, + "symbol": "XSHIB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1719, + "address": "0x01da76dea59703578040012357b81ffe62015c2d", + "name": "Cream yETH", + "buyable": false, + "symbol": "crYETH", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 970, + "address": "0x5aec4cff7fc3880ade1582e5e37cf89152e70ace", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3183, + "address": "0x99fe3b1391503a1bc1788051347a1324bff41452", + "name": "SportX", + "buyable": false, + "symbol": "SX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002193, + "ccyValue": 0.2922, + "ethDayChange": -0.062720310112575521, + "ccyDayChange": -0.025825 + }, + "tokenlist": false + }, { + "id": 3054, + "address": "0xdf6b861b4fbcfaffb62dd1906fcd3a863955704b", + "name": "BUILD-ETH Uniswap pool token", + "buyable": false, + "symbol": "BUILD-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2024, + "address": "0x9fc689ccada600b6df723d9e47d84d76664a1f23", + "name": "Curve.fi cDAI/cUSDC/USDT", + "buyable": false, + "symbol": "cDAI+cUSDC+U", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2227, + "address": "0xf0bc1ae4ef7ffb126a8347d06ac6f8add770e1ce", + "name": "1Million Token", + "buyable": false, + "symbol": "1MT", + "decimals": 7, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008433, + "ccyValue": 0.113102, + "ethDayChange": -0.187259059367771781, + "ccyDayChange": -0.146677 + }, + "tokenlist": false + }, { + "id": 2794, + "address": "0xb4d930279552397bba2ee473229f89ec245bc365", + "name": "MahaDAO", + "buyable": false, + "symbol": "MAHA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.008483901000251159, + "ccyValue": 11.3049, + "ethDayChange": -0.034507414931121253, + "ccyDayChange": 0.003567 + }, + "tokenlist": false + }, { + "id": 2312, + "address": "0x2f6081e3552b1c86ce4479b80062a1dda8ef23e3", + "name": "Dollars", + "buyable": false, + "symbol": "USD", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000570818490912028, + "ccyValue": 0.76176, + "ethDayChange": -0.064900570442556668, + "ccyDayChange": -0.026207 + }, + "tokenlist": false + }, { + "id": 2913, + "address": "0x119ed29ff7209ae155ca695c6f29640157690a25", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 722, + "address": "0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8", + "name": "Everex", + "buyable": false, + "symbol": "EVX", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00022169417921997, + "ccyValue": 0.29541, + "ethDayChange": 0.032551521111469683, + "ccyDayChange": 0.072958 + }, + "tokenlist": false + }, { + "id": 2882, + "address": "0xf3a231bf11a0ef1a3074cf5a1f5620bc85d975fb", + "name": "Yearn Finance Global", + "buyable": false, + "symbol": "YFIG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 998, + "address": "0x21378671ddf000dff37e74ef028f30357642f0fc", + "name": "Igluu Party Token", + "buyable": false, + "symbol": "IGP", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2789, + "address": "0x15e4132dcd932e8990e794d1300011a472819cbd", + "name": "GRPL", + "buyable": false, + "symbol": "GRPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000834693384082, + "ccyValue": 1.112239, + "ethDayChange": 0.043919021150773592, + "ccyDayChange": 0.084769 + }, + "tokenlist": false + }, { + "id": 1953, + "address": "0x8b6c3b7c01d9db4393f9aa734750f36df1543e9a", + "name": "VI", + "buyable": false, + "symbol": "VI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000048630285156553, + "ccyValue": 0.064897, + "ethDayChange": -0.063850265694419127, + "ccyDayChange": -0.025761 + }, + "tokenlist": false + }, { + "id": 467, + "address": "0x0f8b6440a1f7be3354fe072638a5c0f500b044be", + "name": "Katerium.com", + "buyable": false, + "symbol": "KTH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.983E-7, + "ccyValue": 0.000374, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1119, + "address": "0x2615b89ad032ccda6d67e1d511f0e4c9e3a5dc13", + "name": "NEXO-ETH Uniswap pool token", + "buyable": false, + "symbol": "NEXO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2585, + "address": "0x41284a88d970d3552a26fae680692ed40b34010c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-25", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.931563375180365351, + "ccyValue": 1241.875275, + "ethDayChange": 0.008437249662768895, + "ccyDayChange": 0.047257 + }, + "tokenlist": false + }, { + "id": 773, + "address": "0x6a22e5e94388464181578aa7a6b869e00fe27846", + "name": "Synth sXAG", + "buyable": false, + "symbol": "sXAG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.019475941184651267, + "ccyValue": 25.95753, + "ethDayChange": -0.008261902718566884, + "ccyDayChange": 0.027207 + }, + "tokenlist": false + }, { + "id": 1567, + "address": "0x8634f0689a502b3659f2b3c9e5650d365067b48a", + "name": "Motion", + "buyable": false, + "symbol": "MOTION", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2508, + "address": "0xf0b47ee3d3bdbef94999b2b8f4b81a52fbe2e3ed", + "name": "TWERK", + "buyable": false, + "symbol": "TWERK", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 616, + "address": "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84", + "name": "Aave Interest bearing LINK V1", + "buyable": false, + "symbol": "aLINK V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/alink.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-11", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.01742299, + "ccyValue": 23.3, + "ethDayChange": 0.044628397346356976, + "ccyDayChange": 0.087355 + }, + "tokenlist": false + }, { + "id": 1591, + "address": "0x12e51e77daaa58aa0e9247db7510ea4b46f9bead", + "name": "Aave Interest bearing YFI V1", + "buyable": false, + "symbol": "aYFI V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/ayfi.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-20", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 22.61253633641482, + "ccyValue": 30137.98293, + "ethDayChange": 0.017851592652049751, + "ccyDayChange": 0.05791 + }, + "tokenlist": false + }, { + "id": 1139, + "address": "0x4eeea7b48b9c3ac8f70a9c932a8b1e8a5cb624c7", + "name": "Membrana", + "buyable": false, + "symbol": "MBN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000108, + "ccyValue": 0.001436, + "ethDayChange": 0, + "ccyDayChange": 0.037572 + }, + "tokenlist": false + }, { + "id": 3002, + "address": "0x71f85b2e46976bd21302b64329868fd15eb0d127", + "name": "Axion", + "buyable": false, + "symbol": "AXN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.268E-7, + "ccyValue": 0.000301, + "ethDayChange": 0.008000840596540994, + "ccyDayChange": 0.041522 + }, + "tokenlist": false + }, { + "id": 1142, + "address": "0xb9eefc4b0d472a44be93970254df4f4016569d27", + "name": "digitalbits", + "buyable": false, + "symbol": "XDB", + "decimals": 7, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00001460147646501, + "ccyValue": 0.019461, + "ethDayChange": -0.011409853418415708, + "ccyDayChange": 0.031538 + }, + "tokenlist": false + }, { + "id": 323, + "address": "0xfc858154c0b2c4a3323046fb505811f110ebda57", + "name": "NOIA Token", + "buyable": false, + "symbol": "NOIA", + "decimals": 18, + "sendable": false, + "dailyLimit": false, + "brandColor": "", + "displayAddress": "0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000181321796887636, + "ccyValue": 0.241666, + "ethDayChange": -0.033622971097013036, + "ccyDayChange": 0.00441 + }, + "tokenlist": false + }, { + "id": 2197, + "address": "0xd848f9b61affaaa2e5a7402e87d27eaa0cc27b6f", + "name": "aesthetics.finance", + "buyable": false, + "symbol": "VAPE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3195, + "address": "0xa323fc62c71b210e54171887445d7fca569d8430", + "name": "Uniswap V2", + "buyable": false, + "symbol": "UNI-V2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2302, + "address": "0x537a9095b78517597b5f2058edcd6e1978095909", + "name": "Design", + "buyable": false, + "symbol": "DSGN", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002373, + "ccyValue": 0.03191, + "ethDayChange": -0.012073272273105745, + "ccyDayChange": -0.007928 + }, + "tokenlist": false + }, { + "id": 2729, + "address": "0xe3a64a3c4216b83255b53ec7ea078b13f21a7dad", + "name": "DEFI GOLD", + "buyable": false, + "symbol": "DFGL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00108978, + "ccyValue": 1.45, + "ethDayChange": -0.093790798040862486, + "ccyDayChange": -0.058442 + }, + "tokenlist": false + }, { + "id": 1466, + "address": "0x73fce158aa84d2584096d23d4eb5721c5b08781d", + "name": "PolkaCoin.io", + "buyable": false, + "symbol": "PKC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1541, + "address": "0xecb460d1994b1c1716656595e25e1271433b1727", + "name": "TenHourRugTelegram", + "buyable": false, + "symbol": "TENH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1714, + "address": "0xb38b0c480a451db976837a1a464af95bb0f3f5e2", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1331, + "address": "0x97af10d3fc7c70f67711bf715d8397c6da79c1ab", + "name": "Dipper Network", + "buyable": false, + "symbol": "DIP", + "decimals": 12, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001115, + "ccyValue": 0.007092, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1204, + "address": "0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8", + "name": "MachiX Token", + "buyable": false, + "symbol": "MCX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000306, + "ccyValue": 0.004067, + "ethDayChange": 0.006578947368421053, + "ccyDayChange": -0.011665 + }, + "tokenlist": false + }, { + "id": 2102, + "address": "0xf8db8ad0aa9b8b435ff3ab5aaa3b8db77b0b7c0b", + "name": "Fox Token", + "buyable": false, + "symbol": "FOX", + "decimals": 7, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3115, + "address": "0x9fef44fc4c571010bccd5b63e1cdc807d3b347bf", + "name": "RealToken S 15095 Hartwell St Detroit MI", + "buyable": false, + "symbol": "15095 Hartwe", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1339, + "address": "0xf0b0a13d908253d954ba031a425dfd54f94a2e3d", + "name": "FlashX Advance", + "buyable": false, + "symbol": "FSXA", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 2.0051555174E-8, + "ccyValue": 0.000027, + "ethDayChange": 0.007615837889447236, + "ccyDayChange": 0.08 + }, + "tokenlist": false + }, { + "id": 3166, + "address": "0x50d2de5397d7c657c3d424634a2ddf4e0d73d789", + "name": "Bliss", + "buyable": false, + "symbol": "BLISS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00068531, + "ccyValue": 0.913273, + "ethDayChange": -0.10034788316376764, + "ccyDayChange": -0.061443 + }, + "tokenlist": false + }, { + "id": 1321, + "address": "0xea610b1153477720748dc13ed378003941d84fab", + "name": "AlisToken", + "buyable": false, + "symbol": "ALIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001594, + "ccyValue": 0.021019, + "ethDayChange": 0.055629139072847682, + "ccyDayChange": 0.080668 + }, + "tokenlist": false + }, { + "id": 2301, + "address": "0xa1d6df714f91debf4e0802a542e13067f31b8262", + "name": "RFOX", + "buyable": false, + "symbol": "RFOX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000016727711522574, + "ccyValue": 0.022295, + "ethDayChange": -0.007257476405103858, + "ccyDayChange": 0.036254 + }, + "tokenlist": false + }, { + "id": 3062, + "address": "0x854056fd40c1b52037166285b2e54fee774d33f6", + "name": "TBTC-ETH Uniswap pool token", + "buyable": false, + "symbol": "TBTC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1237, + "address": "0x56687cf29ac9751ce2a4e764680b6ad7e668942e", + "name": "FlynnJamm", + "buyable": false, + "symbol": "JAMM", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006982, + "ccyValue": 0.089092, + "ethDayChange": 0.009835117153601388, + "ccyDayChange": -0.031724 + }, + "tokenlist": false + }, { + "id": 2695, + "address": "0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7", + "name": "SKALE", + "buyable": false, + "symbol": "SKL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00010681282255204, + "ccyValue": 0.14236, + "ethDayChange": 0.015331012852091255, + "ccyDayChange": 0.053738 + }, + "tokenlist": false + }, { + "id": 3083, + "address": "0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3", + "name": "Cryptocurrency Top 10 Tokens Index", + "buyable": false, + "symbol": "CC10", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.036320305480274873, + "ccyValue": 48.469607, + "ethDayChange": 0.006473587997474176, + "ccyDayChange": 0.047728 + }, + "tokenlist": false + }, { + "id": 249, + "address": "0x017e50ff65eb91d527dd60fe09af9b713bafffcf", + "name": "IndiePlugMediaIncTokens", + "buyable": false, + "symbol": "IPMXX", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2867, + "address": "0x80ab141f324c3d6f2b18b030f1c4e95d4d658778", + "name": "DEA", + "buyable": false, + "symbol": "DEA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.07240968, + "ccyValue": 96.25, + "ethDayChange": 0.097125843179470893, + "ccyDayChange": 0.137593 + }, + "tokenlist": false + }, { + "id": 2711, + "address": "0xce1298ef635326d9f197963e49e1e67422761897", + "name": "PiSwap Token", + "buyable": false, + "symbol": "PIS", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000280277496091298, + "ccyValue": 0.373554, + "ethDayChange": -0.038421636271237227, + "ccyDayChange": -0.000578 + }, + "tokenlist": false + }, { + "id": 1482, + "address": "0x44e2ca91cea1147f1b503e669f06cd11fb0c5490", + "name": "CoinMetro Token", + "buyable": false, + "symbol": "XCM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00013623, + "ccyValue": 0.181465, + "ethDayChange": -0.014468639224480938, + "ccyDayChange": 0.020148 + }, + "tokenlist": false + }, { + "id": 2969, + "address": "0x7be00ed6796b21656732e8f739fc1b8f1c53da0d", + "name": "AC eXchange Token", + "buyable": false, + "symbol": "ACXT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00027794, + "ccyValue": 0.370298, + "ethDayChange": -0.089944664549294391, + "ccyDayChange": -0.056873 + }, + "tokenlist": false + }, { + "id": 2455, + "address": "0x14d10003807ac60d07bb0ba82caeac8d2087c157", + "name": "Synth iDEFI", + "buyable": false, + "symbol": "iDEFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.1265569414583245, + "ccyValue": 1501.474818, + "ethDayChange": -0.226851539350118351, + "ccyDayChange": 0.013928 + }, + "tokenlist": false + }, { + "id": 2921, + "address": "0x26d8151e631608570f3c28bec769c3afee0d73a3", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1997, + "address": "0xd6014ea05bde904448b743833ddf07c3c7837481", + "name": "Synth iBTC", + "buyable": false, + "symbol": "iBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 36.248917, + "ccyValue": 48286, + "ethDayChange": -0.075210138306009377, + "ccyDayChange": -0.035245 + }, + "tokenlist": false + }, { + "id": 219, + "address": "0x22c8ecf727c23422f47093b562ec53c139805301", + "name": "OLD RealToken 16200 Fullerton Ave Detroit MI", + "buyable": false, + "symbol": "16200 Fuller", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "Right in the heart of the revitalization of Detroit, 16200 Fullerton is a 15-unit apartment building that has undergone comprehensive renovations in 2019, and now is a stabilized, income-producing asset with vetted tenants. 16200 Fullerton is a high income-producing property, and due to its recent renovations, is positioned to be a low-maintenance property, with minimal vacancy rates.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.12772075, + "ccyValue": 179.41, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3135, + "address": "0x8626b38267e4fc0d8c92e0bb86f97acab3f6aa05", + "name": "RealToken S 10604 Somerset Ave MI", + "buyable": false, + "symbol": "10604 Somers", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 925, + "address": "0x6b785a0322126826d8226d77e173d75dafb84d11", + "name": "Bankroll Vault", + "buyable": false, + "symbol": "VLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00012038, + "ccyValue": 0.154071, + "ethDayChange": -0.006191694873276645, + "ccyDayChange": -0.106047 + }, + "tokenlist": false + }, { + "id": 428, + "address": "0x7e43581b19ab509bcf9397a2efd1ab10233f27de", + "name": "BitGuild PLAT", + "buyable": false, + "symbol": "PLAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2800, + "address": "0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53", + "name": "Deflect Protocol", + "buyable": false, + "symbol": "DEFLCT", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.002249394529799195, + "ccyValue": 3.001827, + "ethDayChange": -0.107964888837254972, + "ccyDayChange": -0.071401 + }, + "tokenlist": false + }, { + "id": 264, + "address": "0xbddab785b306bcd9fb056da189615cc8ece1d823", + "name": "Ebakus", + "buyable": false, + "symbol": "EBK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 6.0000000001E-8, + "ccyValue": 0.00008, + "ethDayChange": 3.3333333E-11, + "ccyDayChange": 0.038961 + }, + "tokenlist": false + }, { + "id": 836, + "address": "0x915044526758533dfb918eceb6e44bc21632060d", + "name": "Chroma", + "buyable": false, + "symbol": "CHR", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000025094066348254, + "ccyValue": 0.033445, + "ethDayChange": -0.082623030222304888, + "ccyDayChange": -0.046526 + }, + "tokenlist": false + }, { + "id": 1194, + "address": "0xd4203d4f0f2c3ae21ce93f04ab00517262f65aa9", + "name": "OLD RealToken 10612 Somerset Ave Detroit-MI", + "buyable": false, + "symbol": "10612 Somers", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1896, + "address": "0xec81c9eb83e464499b09b38510f967d97363745b", + "name": "CHADS-ETH Uniswap pool token", + "buyable": false, + "symbol": "CHADS-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2163, + "address": "0x674c6ad92fd080e4004b2312b45f796a192d27a0", + "name": "Neutrino USD", + "buyable": false, + "symbol": "USDN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000749683197042861, + "ccyValue": 1.000456, + "ethDayChange": -0.037250771111917451, + "ccyDayChange": 0.005731 + }, + "tokenlist": false + }, { + "id": 989, + "address": "0x0bb7db697567178c590efa64a7dcb2ce6213768c", + "name": "Camouflage.eth", + "buyable": false, + "symbol": "CAMO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.667E-7, + "ccyValue": 0.000278, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 876, + "address": "0x454c1d458f9082252750ba42d60fae0887868a3b", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-8", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 203.5768965609091339, + "ccyValue": 271299.609641, + "ethDayChange": 0.047728037604983044, + "ccyDayChange": 0.088614 + }, + "tokenlist": false + }, { + "id": 2991, + "address": "0xd7936052d1e096d48c81ef3918f9fd6384108480", + "name": "Farming: 1inch Liquidity Pool (1INCH-USDT)", + "buyable": false, + "symbol": "farm-1LP-1IN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 108, + "address": "0xd0a4b8946cb52f0661273bfbc6fd0e0c75fc6433", + "name": "Storm", + "buyable": false, + "symbol": "STORM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/storm.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#6B38DF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000002377340667235, + "ccyValue": 0.003168, + "ethDayChange": -0.022719861556918829, + "ccyDayChange": 0.012788 + }, + "tokenlist": false + }, { + "id": 2590, + "address": "0x5b18df96d3c8b9f1d1b9e38752498f92d1e2d490", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-24", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.20482024720273911, + "ccyValue": 272.943953, + "ethDayChange": -0.01637915689995473, + "ccyDayChange": 0.019194 + }, + "tokenlist": false + }, { + "id": 258, + "address": "0xd194e4f96d102d834b617226e90f89b83b17ba9d", + "name": "Token Factory Switzerland Ltd | 7H3M-9XPG-T", + "buyable": false, + "symbol": "TOKENFACTORY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3071, + "address": "0xa29ae272bc89e5f315b2793925f700045f845d82", + "name": "RealToken S 581-587 Jefferson Ave Rochester NY", + "buyable": false, + "symbol": "581-587 Jeff", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2271, + "address": "0x49f2beff98ce62999792ec98d0ee4ad790e7786f", + "name": "Balancer Rebasing Smart Pool Token V1 (AMPL-USDC)", + "buyable": false, + "symbol": "BAL-REBASING", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2894, + "address": "0x0e552307659e70bf61f918f96aa880cdec40d7e2", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 895, + "address": "0xe94327d07fc17907b4db788e5adf2ed424addff6", + "name": "Reputation", + "buyable": false, + "symbol": "REP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 78, + "address": "0x865ec58b06bf6305b886793aa20a2da31d034e68", + "name": "Moss Land", + "buyable": false, + "symbol": "MOC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/moc.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000204311, + "ccyValue": 0.027165, + "ethDayChange": 0.044698514386442887, + "ccyDayChange": 0.08322 + }, + "tokenlist": false + }, { + "id": 1668, + "address": "0x064e5d7533c59915a1c481b7a5309189f061cc04", + "name": "ColombiaCOCO", + "buyable": false, + "symbol": "COCO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2344, + "address": "0xc01e75afbedd5f9b9b8bcc619852d839b182cd38", + "name": "BLOODY-ETH Uniswap pool token", + "buyable": false, + "symbol": "BLOODY-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 327, + "address": "0x8eb38715604b938812dec25a0a1bc05b4becb9ca", + "name": "Gric Coin", + "buyable": false, + "symbol": "GC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00001001, + "ccyValue": 0.00421, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2403, + "address": "0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea", + "name": "IG Gold", + "buyable": false, + "symbol": "IGG", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.302E-7, + "ccyValue": 0.000174, + "ethDayChange": -0.040530582166543847, + "ccyDayChange": 0.023529 + }, + "tokenlist": false + }, { + "id": 2013, + "address": "0xf6537fe0df7f0cc0985cf00792cc98249e73efa0", + "name": "GIVToken", + "buyable": false, + "symbol": "GIV", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000138, + "ccyValue": 0.001852, + "ethDayChange": 0.007299270072992701, + "ccyDayChange": 0.074869 + }, + "tokenlist": false + }, { + "id": 2708, + "address": "0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532", + "name": "Freedom Reserve", + "buyable": false, + "symbol": "FR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001830021328665, + "ccyValue": 0.002439, + "ethDayChange": 0.001651041748108206, + "ccyDayChange": 0.040973 + }, + "tokenlist": false + }, { + "id": 2132, + "address": "0xfe9a29ab92522d14fc65880d817214261d8479ae", + "name": "SnowSwap", + "buyable": false, + "symbol": "SNOW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.03418311, + "ccyValue": 45.53, + "ethDayChange": 0.064717064903246225, + "ccyDayChange": 0.10591 + }, + "tokenlist": false + }, { + "id": 2792, + "address": "0x7b3d36eb606f873a75a6ab68f8c999848b04f935", + "name": "NFTLootBox.com", + "buyable": false, + "symbol": "LOOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.06861401291954403, + "ccyValue": 91.428993, + "ethDayChange": 0.017724661841946399, + "ccyDayChange": 0.05755 + }, + "tokenlist": false + }, { + "id": 1891, + "address": "0x3fe7940616e5bc47b0775a0dccf6237893353bb4", + "name": "IdleDAI v4 [Best yield]", + "buyable": false, + "symbol": "idleDAIYield", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2504, + "address": "0x8d5db0c1f0681071cb38a382ae6704588d9da587", + "name": "prophet.finance", + "buyable": false, + "symbol": "PROPHET", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000193784218722655, + "ccyValue": 0.25822, + "ethDayChange": 0.006066061758375276, + "ccyDayChange": 0.045438 + }, + "tokenlist": false + }, { + "id": 977, + "address": "0x64cdf819d3e75ac8ec217b3496d7ce167be42e80", + "name": "InsurePal token", + "buyable": false, + "symbol": "IPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.926E-7, + "ccyValue": 0.000658, + "ethDayChange": 0.307318865387282378, + "ccyDayChange": 0.362319 + }, + "tokenlist": false + }, { + "id": 764, + "address": "0x70ea56e46266f0137bac6b75710e3546f47c855d", + "name": "RPL-ETH Uniswap pool token", + "buyable": false, + "symbol": "RPL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-10", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.138431515241851059, + "ccyValue": 184.529743, + "ethDayChange": 0.025943561104547558, + "ccyDayChange": 0.065343 + }, + "tokenlist": false + }, { + "id": 1706, + "address": "0x175ab41e2cedf3919b2e4426c19851223cf51046", + "name": "BACON", + "buyable": false, + "symbol": "BACON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 8.533E-7, + "ccyValue": 0.001198, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3188, + "address": "0xd08d2b199e9e5df407427d4085877d1fdff3b1d6", + "name": "RealToken S 6923 Greenview Ave Detroit MI", + "buyable": false, + "symbol": "REALTOKEN-S-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 541, + "address": "0x17491ae8b359e73ca06f0abb52223daa878140a9", + "name": "Charge", + "buyable": false, + "symbol": "CHARGE", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 875, + "address": "0x2fcf029283d35f3d735498d84d840ac5c6c00e86", + "name": "DDOS3", + "buyable": false, + "symbol": "DDOS3", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1163, + "address": "0xd1410a4fc39be5ff5cd328e3a23f382423936ebd", + "name": "storeum", + "buyable": false, + "symbol": "STO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2830, + "address": "0x4028daac072e492d34a3afdbef0ba7e35d8b55c4", + "name": "stETH-ETH Uniswap pool token", + "buyable": false, + "symbol": "stETH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1130, + "address": "0x22f098f08c4eda4be4ad6b4ba59866f3e98cef92", + "name": "Force For Fast Token", + "buyable": false, + "symbol": "FFF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000191, + "ccyValue": 0.002535, + "ethDayChange": -0.059113300492610837, + "ccyDayChange": -0.021613 + }, + "tokenlist": false + }, { + "id": 2655, + "address": "0xf0196985601598a35a48606b643fd2c34fb861e1", + "name": "Eternal Cash", + "buyable": false, + "symbol": "EC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000008329856889015, + "ccyValue": 0.011116, + "ethDayChange": 0.186317019374756408, + "ccyDayChange": 0.234974 + }, + "tokenlist": false + }, { + "id": 2022, + "address": "0xa30189d8255322a2f8b2a77906b000aeb005570c", + "name": "Buy-Sell", + "buyable": false, + "symbol": "BSE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001457196286619206, + "ccyValue": 1.941731, + "ethDayChange": 0.175916490612227674, + "ccyDayChange": 0.221931 + }, + "tokenlist": false + }, { + "id": 3038, + "address": "0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d", + "name": "Tapmydata", + "buyable": false, + "symbol": "TAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2099, + "address": "0x2a7f709ee001069771ceb6d42e85035f7d18e736", + "name": "OWL Token", + "buyable": false, + "symbol": "OWL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000198198497607114, + "ccyValue": 0.264102, + "ethDayChange": -0.016441518956719138, + "ccyDayChange": 0.022047 + }, + "tokenlist": false + }, { + "id": 2010, + "address": "0xf974b5f9ac9c6632fee8b76c61b0242ce69c839d", + "name": "ZyxToken", + "buyable": false, + "symbol": "ZYX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2642, + "address": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", + "name": "aEthereum", + "buyable": false, + "symbol": "ankrETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.9289305728803136, + "ccyValue": 1238.078442, + "ethDayChange": 0.02840819730851471, + "ccyDayChange": 0.069195 + }, + "tokenlist": false + }, { + "id": 2754, + "address": "0x74ec18bc176f3e9af20e2c918a7324f88e163647", + "name": "MAXR", + "buyable": false, + "symbol": "MAXR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000004260753467713, + "ccyValue": 0.005686, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2881, + "address": "0xd4405f0704621dbe9d4dea60e128e0c3b26bddbd", + "name": "BAC-DAI Uniswap pool token", + "buyable": false, + "symbol": "BAC-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-33", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.001058299785426569, + "ccyValue": 1.412305, + "ethDayChange": -0.09136674751824351, + "ccyDayChange": -0.053583 + }, + "tokenlist": false + }, { + "id": 1550, + "address": "0x5d269fac3b2e0552b0f34cdc253bdb427682a4b9", + "name": "Davincij15 Token", + "buyable": false, + "symbol": "DJ15", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.0912335653372514, + "ccyValue": 121.569817, + "ethDayChange": -0.008596428159802064, + "ccyDayChange": 0.030199 + }, + "tokenlist": false + }, { + "id": 2168, + "address": "0x7ea482f0ad6a3f6848b53218df8865c83a4aad61", + "name": "National Reserve Currency", + "buyable": false, + "symbol": "NRCT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 325, + "address": "0xaff84e86d72edb971341a6a66eb2da209446fa14", + "name": "TheCurrencyAnalytics", + "buyable": false, + "symbol": "TCAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 1.031E-7, + "ccyValue": 0.000137, + "ethDayChange": -0.028275212064090481, + "ccyDayChange": 0.014815 + }, + "tokenlist": false + }, { + "id": 1768, + "address": "0x695106ad73f506f9d0a9650a78019a93149ae07c", + "name": "BNS Token", + "buyable": false, + "symbol": "BNS", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002687, + "ccyValue": 0.035799, + "ethDayChange": -0.029263005780346821, + "ccyDayChange": 0.010472 + }, + "tokenlist": false + }, { + "id": 1603, + "address": "0x28ed4fd6dedb226b16b92ce6997f7cdfdf0c519b", + "name": "Scotcoin", + "buyable": false, + "symbol": "SCOT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2992, + "address": "0xdb9cae69f00d479297b70d73c120989f9eae3a26", + "name": "DREP-ETH Uniswap pool token", + "buyable": false, + "symbol": "DREP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1542, + "address": "0xcf67ced76e8356366291246a9222169f4dbdbe64", + "name": "DICE.FINANCE TOKEN", + "buyable": false, + "symbol": "DICE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.017891590373892746, + "ccyValue": 23.845907, + "ethDayChange": -0.037865650015774305, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3079, + "address": "0x06da0fd433c1a5d7a4faa01111c044910a184553", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2748, + "address": "0xa75f7c2f025f470355515482bde9efa8153536a8", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2176, + "address": "0x26c7d50b9f372e1fa9ca078cc054298f36d68b17", + "name": "StableDark", + "buyable": false, + "symbol": "SDARK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 822, + "address": "0x98cc3bd6af1880fcfda17ac477b2f612980e5e33", + "name": "Opyn cDai Insurance", + "buyable": false, + "symbol": "ocDai", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.053E-7, + "ccyValue": 0.00091, + "ethDayChange": 0.000141803743618832, + "ccyDayChange": 0.01676 + }, + "tokenlist": false + }, { + "id": 714, + "address": "0x0f2c92df8e5a5f3851914632f4252d5aea1fb65d", + "name": "欧洲美元", + "buyable": false, + "symbol": "USD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 911, + "address": "0x0f02e27745e3b6e9e1310d19469e2b5d7b5ec99a", + "name": "Peculium", + "buyable": false, + "symbol": "PCL", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000187, + "ccyValue": 0.002487, + "ethDayChange": -0.026041666666666667, + "ccyDayChange": 0.010565 + }, + "tokenlist": false + }, { + "id": 777, + "address": "0x035df12e0f3ac6671126525f1015e47d79dfeddf", + "name": "0xMonero", + "buyable": false, + "symbol": "0XMR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/0xmr.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#00dab2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003, + "ccyValue": 0.039884, + "ethDayChange": 0.003680160588825694, + "ccyDayChange": 0.044467 + }, + "tokenlist": false + }, { + "id": 1794, + "address": "0x056527c9f79e65a63394b14a5d98e06a7306f8df", + "name": "Snipp Finance", + "buyable": false, + "symbol": "SNIPP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1602, + "address": "0x27b172e7996f09a78fe801ef4c8193cb937fe76a", + "name": "yearnme.me", + "buyable": false, + "symbol": "YMEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1563, + "address": "0x9355372396e3f6daf13359b7b607a3374cc638e0", + "name": "WHALE", + "buyable": false, + "symbol": "WHALE", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.006642180020879815, + "ccyValue": 8.862205, + "ethDayChange": 0.02943784187814077, + "ccyDayChange": 0.07551 + }, + "tokenlist": false + }, { + "id": 1540, + "address": "0xf28d3dcc9b6582f1b2d49ca850db1360571cb633", + "name": "Spider Finance", + "buyable": false, + "symbol": "SPID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2162, + "address": "0x6ae892677397ea4e89702057e53537a2efa858bf", + "name": "Injective Protocol", + "buyable": false, + "symbol": "INJ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 787, + "address": "0xac9749c854b31bba3b3e71b30fdd7aea4fcc0db9", + "name": "FightBackCoin", + "buyable": false, + "symbol": "FBC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000994, + "ccyValue": 0.003651, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2826, + "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", + "name": "DeFiYieldProtocol", + "buyable": false, + "symbol": "DYP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.003431834873140116, + "ccyValue": 4.572961, + "ethDayChange": -0.030903098951455993, + "ccyDayChange": 0.007019 + }, + "tokenlist": false + }, { + "id": 2978, + "address": "0xbe393aa534f82c0ffac31bf06a23e283acb3352b", + "name": "tokenAsset", + "buyable": false, + "symbol": "NTB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002405, + "ccyValue": 0.3208, + "ethDayChange": 0.010504201680672269, + "ccyDayChange": 0.048709 + }, + "tokenlist": false + }, { + "id": 1757, + "address": "0x12e033ce69f535436a4be72f4bdfd6e6795ba943", + "name": "YEVO", + "buyable": false, + "symbol": "YEVO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2252, + "address": "0x3a8afc58b70b34a0a5615d3a5ffe623ca1fa92b8", + "name": "NU-ETH Uniswap pool token", + "buyable": false, + "symbol": "NU-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 684, + "address": "0x4ce3687fed17e19324f23e305593ab13bbd55c4d", + "name": "FUSE-ETH Uniswap pool token", + "buyable": false, + "symbol": "FUSE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2157, + "address": "0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729", + "name": "EASY", + "buyable": false, + "symbol": "EASY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.005839, + "ccyValue": 7.781, + "ethDayChange": 0.13004286617962404, + "ccyDayChange": 0.174333 + }, + "tokenlist": false + }, { + "id": 1569, + "address": "0x1f832091faf289ed4f50fe7418cfbd2611225d46", + "name": "NToken0001", + "buyable": false, + "symbol": "N0001", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000575056664706774, + "ccyValue": 0.76627, + "ethDayChange": -0.014696257319065867, + "ccyDayChange": 0.02386 + }, + "tokenlist": false + }, { + "id": 1949, + "address": "0xc2b62022a90ab4132479c94b609723cf4c56e89c", + "name": "MIGRATE REP", + "buyable": false, + "symbol": "MREP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 628, + "address": "0xa12a696b9b11788076a6cb384cac6986b82545e1", + "name": "ETH Super Set", + "buyable": false, + "symbol": "ETHDAIS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-4", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.08618166902286832, + "ccyValue": 114.861108, + "ethDayChange": -0.044921021719999997, + "ccyDayChange": -0.002943 + }, + "tokenlist": false + }, { + "id": 2847, + "address": "0x1c83501478f1320977047008496dacbd60bb15ef", + "name": "Digitex", + "buyable": false, + "symbol": "DGTX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dgtx.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#1CB7ED", + "displayAddress": "0xc666081073e8dff8d3d1c2292a29ae1a2153ec09", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000343, + "ccyValue": 0.004558, + "ethDayChange": -0.050421407850899992, + "ccyDayChange": -0.015976 + }, + "tokenlist": false + }, { + "id": 1914, + "address": "0x81ab848898b5ffd3354dbbefb333d5d183eedcb5", + "name": "yUSD Synthetic Token Expiring 1 September 2020", + "buyable": false, + "symbol": "yUSD-SEP20", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00196091, + "ccyValue": 2.77, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2607, + "address": "0xbcca60bb61934080951369a648fb03df4f96263c", + "name": "Aave interest bearing USDC", + "buyable": false, + "symbol": "aUSDC", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/ausdc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-20", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000749101482352019, + "ccyValue": 0.999475, + "ethDayChange": -0.038953740003691644, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 345, + "address": "0x6671c24dd5b8e4ced34033991418e4bc0cca05af", + "name": "AgentMile Estate Tokens", + "buyable": false, + "symbol": "ESTATE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.791E-7, + "ccyValue": 0.000068, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1944, + "address": "0xbff3a3d79d0f9165cfcc1b369ee41f3c5c9ae398", + "name": "OLD RealToken S 18433 Faust ave Detroit MI", + "buyable": false, + "symbol": "18433 Faust", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2888, + "address": "0xc1c70266ef3dc680e55c5a1c451f664446a9849d", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1754, + "address": "0x892b14321a4fcba80669ae30bd0cd99a7ecf6ac0", + "name": "Cream Cream", + "buyable": false, + "symbol": "crCREAM", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2517, + "address": "0xe79c38a6efb385521ede1a3a116c2b1312b56c63", + "name": "CHILL-HBURN Uniswap pool token", + "buyable": false, + "symbol": "CHILL-HBURN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 333, + "address": "0x683ecfe5b148c8840998c1b4884f60a8ead432d1", + "name": "D5 Shares", + "buyable": false, + "symbol": "DFS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2096, + "address": "0x0fdc5313333533cc0c00c22792bff7383d3055f2", + "name": "YFPRO.FINANCE", + "buyable": false, + "symbol": "YFPRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000884716891258606, + "ccyValue": 1.178896, + "ethDayChange": -0.039781096347172146, + "ccyDayChange": -0.000936 + }, + "tokenlist": false + }, { + "id": 2057, + "address": "0xa3604b62e72c6b02d845a305cc3e9f3beec3bac6", + "name": "PEOPLES TEMPLE", + "buyable": false, + "symbol": "KOOL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 46, + "address": "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4", + "name": "Enigma", + "buyable": false, + "symbol": "ENG", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/eng.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0001102126, + "ccyValue": 0.14654, + "ethDayChange": -0.042462206776715899, + "ccyDayChange": -0.009865 + }, + "tokenlist": false + }, { + "id": 2343, + "address": "0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96", + "name": "YearnSecure", + "buyable": false, + "symbol": "YSEC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000494830124383614, + "ccyValue": 0.659367, + "ethDayChange": -0.007669128680475215, + "ccyDayChange": 0.031162 + }, + "tokenlist": false + }, { + "id": 958, + "address": "0xaa2edc0e5cde4da80628972c501e79326741db17", + "name": "Akropolis Sparta Pool Token", + "buyable": false, + "symbol": "ASPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1431, + "address": "0x2934443c1749dcc0cdcabbd77098eea31d2ea6c3", + "name": "xSNX", + "buyable": false, + "symbol": "xSNXa", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2869, + "address": "0xefe82d6baf0db71f92889eb9d00721bd49121316", + "name": "RealToken S 4680 Buckingham Ave Detroit MI", + "buyable": false, + "symbol": "4680 Bucking", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1114, + "address": "0xd6940a1ffd9f3b025d1f1055abcfd9f7cda81ef9", + "name": "youForia", + "buyable": false, + "symbol": "YFR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000836, + "ccyValue": 0.005001, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1878, + "address": "0x81313f7c5c9c824236c9e4cba3ac4b049986e756", + "name": "HippoFinance", + "buyable": false, + "symbol": "HIPPO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000559152032095785, + "ccyValue": 0.745077, + "ethDayChange": 8.330085634837059903, + "ccyDayChange": 9.148148 + }, + "tokenlist": false + }, { + "id": 950, + "address": "0x70e8de73ce538da2beed35d14187f6959a8eca96", + "name": "XSGD", + "buyable": false, + "symbol": "XSGD", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00055539, + "ccyValue": 0.744035, + "ethDayChange": -0.049347848413268974, + "ccyDayChange": 0.011544 + }, + "tokenlist": false + }, { + "id": 2884, + "address": "0x92ece48522e1acbcda4aaa8c2fbf2aa9fb15d624", + "name": "ROCKS", + "buyable": false, + "symbol": "ROCKS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000046408922609539, + "ccyValue": 0.061854, + "ethDayChange": -0.00466506789746362, + "ccyDayChange": 0.034504 + }, + "tokenlist": false + }, { + "id": 1937, + "address": "0x517118dd19a89c3224951b46afcf33c3421baabc", + "name": "LINK-WETH", + "buyable": false, + "symbol": "LINKWETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3064, + "address": "0x07a0ad7a9dfc3854466f8f29a173bf04bba5686e", + "name": "SolomonDefi", + "buyable": false, + "symbol": "SLM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000030966722410536, + "ccyValue": 0.041325, + "ethDayChange": 0.483738497721421862, + "ccyDayChange": 0.544571 + }, + "tokenlist": false + }, { + "id": 2963, + "address": "0x525794473f7ab5715c81d06d10f52d11cc052804", + "name": "12Ships", + "buyable": false, + "symbol": "TSHP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002794673112283, + "ccyValue": 0.003724, + "ethDayChange": -0.013961018791501126, + "ccyDayChange": 0.024766 + }, + "tokenlist": false + }, { + "id": 1326, + "address": "0xa4856412572f3507025edf5aaf7a6b46b5c28d6e", + "name": "Hugs", + "buyable": false, + "symbol": "HUGS", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 779, + "address": "0xf7b9784ead15ef290e6e15809646d32e49dc20ea", + "name": "Arkardian", + "buyable": false, + "symbol": "ARKC", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1463, + "address": "0x8973be4402bf0a39448f419c2d64bd3591dd2299", + "name": "YFII-ETH Uniswap pool token", + "buyable": false, + "symbol": "YFII-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2031, + "address": "0x185202ffd43fb27a6bba31f7944ef46aacc717d9", + "name": "JUNGLE", + "buyable": false, + "symbol": "JNGL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3017, + "address": "0x5366997b81a99a13b157ea35abdf76815d246d35", + "name": "wYFI", + "buyable": false, + "symbol": "wYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 324, + "address": "0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8", + "name": "LocalCoinSwap Cryptoshare", + "buyable": false, + "symbol": "LCS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000018171391412047, + "ccyValue": 0.024214, + "ethDayChange": -0.187689252925927582, + "ccyDayChange": -0.129337 + }, + "tokenlist": false + }, { + "id": 2059, + "address": "0xee87b220d9b0e762f0643c501fadefd6d9cc5b7e", + "name": "Dragon Network", + "buyable": false, + "symbol": "DGNN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00003577, + "ccyValue": 0.023031, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1966, + "address": "0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d", + "name": "PNT-ETH Uniswap pool token", + "buyable": false, + "symbol": "PNT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2101, + "address": "0x7c90a3cd7ec80dd2f633ed562480abbeed3be546", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-20", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.0019126637394219, + "ccyValue": 2.549752, + "ethDayChange": -0.017474429876491309, + "ccyDayChange": 0.018943 + }, + "tokenlist": false + }, { + "id": 1433, + "address": "0x2d7ef5876d4173922d5a7fcc6978c24d815dae3b", + "name": "Crab Finance", + "buyable": false, + "symbol": "CRAB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1594, + "address": "0xfdd4e938bb067280a52ac4e02aaf1502cc882ba6", + "name": "EarnBet Token", + "buyable": false, + "symbol": "BET", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 868, + "address": "0x021d58863d6a8cfc30c24221944a28e18efc677b", + "name": "Zytech", + "buyable": false, + "symbol": "ZYT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1818, + "address": "0x010194ba9ca34ac26b097a5f204dfb47b21288ea", + "name": "Yin Yang", + "buyable": false, + "symbol": "YYF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 738, + "address": "0x684e2dcb12bb755237e07242529c82f78a84ea61", + "name": "WELL Token", + "buyable": false, + "symbol": "WELL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000013, + "ccyValue": 0.000191, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1865, + "address": "0xefb3ba332129cfc31a84ac96974f5c19fa4a6f10", + "name": "PoFi Network", + "buyable": false, + "symbol": "POFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 395, + "address": "0xf94e44d8ea46ccd8451d7e15264c6c4a78d3e10f", + "name": "Krosscoin", + "buyable": false, + "symbol": "KSS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.616E-7, + "ccyValue": 0.000247, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3096, + "address": "0x8f179114235842978d8917e08721541072c46584", + "name": "PointPay Token", + "buyable": false, + "symbol": "PXP", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003059, + "ccyValue": 0.018233, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 28, + "address": "0x5ed89439c90b5af263810c6ca051b199ebedb3e3", + "name": "Hello World", + "buyable": false, + "symbol": "CH-ZG4133", + "decimals": 18, + "iconUrl": "https://s3.eu-west-2.amazonaws.com/argent-assets/Immo_500px.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1454, + "address": "0x165440036ce972c5f8ebef667086707e48b2623e", + "name": "UniGraph", + "buyable": false, + "symbol": "GRAPH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00014186, + "ccyValue": 0.086686, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1506, + "address": "0xaba6756f67cdd26674d921613eccccc620bcfa2f", + "name": "Yearn Finance X", + "buyable": false, + "symbol": "YFX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1003, + "address": "0xf29e46887ffae92f1ff87dfe39713875da541373", + "name": "UniCrypt", + "buyable": false, + "symbol": "UNC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000024086521199424, + "ccyValue": 0.032144, + "ethDayChange": 0.125012666951144325, + "ccyDayChange": 0.172925 + }, + "tokenlist": false + }, { + "id": 1191, + "address": "0x4d249156050d6026e11a823fc1df79539b6bf49a", + "name": "Fixed Income Proxy Set", + "buyable": false, + "symbol": "MQFIP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2507, + "address": "0xceff51756c56ceffca006cd410b03ffc46dd3a58", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 811, + "address": "0x9b533f1ceaa5ceb7e5b8994ef16499e47a66312d", + "name": "OXT-ETH Uniswap pool token", + "buyable": false, + "symbol": "OXT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2505, + "address": "0xc7fd8dcee4697ceef5a2fd4608a7bd6a94c77480", + "name": "Cream CRV", + "buyable": false, + "symbol": "crCRV", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2256, + "address": "0x96184d9c811ea0624fc30c80233b1d749b9e485b", + "name": "Dapp Token", + "buyable": false, + "symbol": "DAPPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.44E-7, + "ccyValue": 0.00059, + "ethDayChange": -0.117471675611210495, + "ccyDayChange": -0.082426 + }, + "tokenlist": false + }, { + "id": 1680, + "address": "0x1b8e12f839bd4e73a47addf76cf7f0097d74c14c", + "name": "Value USD", + "buyable": false, + "symbol": "vUSD", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1278, + "address": "0x3f4f22b2f3741d3d7adef18d3d9faeeb1fb86e56", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1977, + "address": "0xd6d3608f2d770d0a8d0da62d7afe21ea1da86d9c", + "name": "AmericanHorror.Finance", + "buyable": false, + "symbol": "AHF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.25056851, + "ccyValue": 322.4, + "ethDayChange": -0.004991093786619978, + "ccyDayChange": -0.001622 + }, + "tokenlist": false + }, { + "id": 1239, + "address": "0x625687081ba9fcbffb0ae6bfe8d7fad6f616f494", + "name": "Medalte", + "buyable": false, + "symbol": "MDTL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.31E-8, + "ccyValue": 0.000008, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2911, + "address": "0xba20d4f41121b997a1eaca6d938ac40b67dad226", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2638, + "address": "0x438f9de51f51692a4b83696413062a040cc5cbd5", + "name": "OLD RealToken S 15784 Monte Vista St Detroit MI", + "buyable": false, + "symbol": "15784 Monte ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1188, + "address": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9", + "name": "FTT", + "buyable": false, + "symbol": "FTX Token", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00777855, + "ccyValue": 10.36, + "ethDayChange": 0.020887471454445232, + "ccyDayChange": 0.064748 + }, + "tokenlist": false + }, { + "id": 1290, + "address": "0x589891a198195061cb8ad1a75357a3b7dbadd7bc", + "name": "Contentos", + "buyable": false, + "symbol": "COS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000612, + "ccyValue": 0.008159, + "ethDayChange": 0.016611295681063123, + "ccyDayChange": 0.055771 + }, + "tokenlist": false + }, { + "id": 940, + "address": "0xe969991ce475bcf817e01e1aad4687da7e1d6f83", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 646, + "address": "0x33319fae07128119166476a4bcdd96e5c9401ca4", + "name": "Stacking Gwei Set", + "buyable": false, + "symbol": "SGW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-22", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.337997070350247241, + "ccyValue": 450.663458, + "ethDayChange": -0.007415610310507633, + "ccyDayChange": 0.030808 + }, + "tokenlist": false + }, { + "id": 1666, + "address": "0x1b8874baceaafba9ea194a625d12e8b270d77016", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 985, + "address": "0x583cadd830374bb5c1ec8e1b648e0294cc1e01f1", + "name": "ALEPH-ETH Uniswap pool token", + "buyable": false, + "symbol": "ALEPH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1978, + "address": "0x7d611e4cf1c7b94561c4caa5602f329d108336e3", + "name": "Uniswap V2 ETH-SHROOM", + "buyable": false, + "symbol": "ETH-SHROOM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1943, + "address": "0x1143a42df6f80d70a1b3cc766eec10e37024ab1d", + "name": "TokenGeneratorToken", + "buyable": false, + "symbol": "TGT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2871, + "address": "0xd0834d08c83dbe216811aaea0eeffb2349e57634", + "name": "GreenCapTOKEN", + "buyable": false, + "symbol": "GreenCap", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1031, + "address": "0xac1682ad8893ed96e7ec3379f3a212dc50f06d23", + "name": "OLD RealToken S 10084 Grayton St Detroit MI", + "buyable": false, + "symbol": "10084 Grayto", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1358, + "address": "0x3678d8cc9eb08875a3720f34c1c8d1e1b31f5a11", + "name": "Obee Network", + "buyable": false, + "symbol": "OBEE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.403E-7, + "ccyValue": 0.000986, + "ethDayChange": -0.034936774866379872, + "ccyDayChange": 0.006122 + }, + "tokenlist": false + }, { + "id": 512, + "address": "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44", + "name": "Panvala pan", + "buyable": false, + "symbol": "PAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006951, + "ccyValue": 0.093324, + "ethDayChange": -0.001436575204711967, + "ccyDayChange": 0.070499 + }, + "tokenlist": false + }, { + "id": 1164, + "address": "0x923108a439c4e8c2315c4f6521e5ce95b44e9b4c", + "name": "Devery.io", + "buyable": false, + "symbol": "EVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001829011235948, + "ccyValue": 0.002438, + "ethDayChange": -0.017166656310723084, + "ccyDayChange": 0.021794 + }, + "tokenlist": false + }, { + "id": 2458, + "address": "0xd2be3722b17b616c51ed9b8944a227d1ce579c24", + "name": "Wrapped DTube Coin", + "buyable": false, + "symbol": "DTUBE", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00021602, + "ccyValue": 0.289144, + "ethDayChange": -0.028512322360136715, + "ccyDayChange": 0.019844 + }, + "tokenlist": false + }, { + "id": 2212, + "address": "0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d", + "name": "Rare", + "buyable": false, + "symbol": "RARE", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00004238, + "ccyValue": 0.053297, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2450, + "address": "0xb7ec95e38359636c3088e736368dabfcb7ff233f", + "name": "LIQBURNToken", + "buyable": false, + "symbol": "LIQBURN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2232, + "address": "0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5", + "name": "ZeroSwapToken", + "buyable": false, + "symbol": "ZEE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000090079198445211, + "ccyValue": 0.120211, + "ethDayChange": 0.01658050383941993, + "ccyDayChange": 0.061906 + }, + "tokenlist": false + }, { + "id": 2929, + "address": "0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9", + "name": "BoringDAO", + "buyable": false, + "symbol": "BOR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.35105578, + "ccyValue": 466.66, + "ethDayChange": -0.081416841411773522, + "ccyDayChange": -0.044141 + }, + "tokenlist": false + }, { + "id": 2949, + "address": "0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4", + "name": "DexKit", + "buyable": false, + "symbol": "KIT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00098109, + "ccyValue": 1.31, + "ethDayChange": 0.358831595130261354, + "ccyDayChange": 0.420361 + }, + "tokenlist": false + }, { + "id": 2898, + "address": "0xb15ae165000c8d7b69d2a82e425e110668c73ad5", + "name": "Linkbased", + "buyable": false, + "symbol": "LBD", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001735110165485842, + "ccyValue": 2.312554, + "ethDayChange": -0.006940847464597601, + "ccyDayChange": 0.032142 + }, + "tokenlist": false + }, { + "id": 3151, + "address": "0x4f3e8f405cf5afc05d68142f3783bdfe13811522", + "name": "Curve.fi USDN/3Crv", + "buyable": false, + "symbol": "usdn3CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 928, + "address": "0xd593c601dc9f96b24ff7d94dd0e427d2c162faf8", + "name": "ETH-VI Uniswap pool token", + "buyable": false, + "symbol": "ETH-VI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1401, + "address": "0x5274891bec421b39d23760c04a6755ecb444797c", + "name": "IdleUSDC v4 [Best yield]", + "buyable": false, + "symbol": "idleUSDCYiel", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2796, + "address": "0x6f442da588232dc57bf0096e8de48d6961d5cc83", + "name": "RealToken S 13895 Saratoga st Detroit MI", + "buyable": false, + "symbol": "13895 Sarato", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2103, + "address": "0x115ec79f1de567ec68b7ae7eda501b406626478e", + "name": "CarryToken", + "buyable": false, + "symbol": "CRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001527664612971, + "ccyValue": 0.002036, + "ethDayChange": 0.04205006866552835, + "ccyDayChange": 0.082979 + }, + "tokenlist": false + }, { + "id": 2829, + "address": "0xd66a282f2d3bb0110fb74013183a10115e626d8f", + "name": "BTxy-ETH Uniswap pool token", + "buyable": false, + "symbol": "BTxy-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2598, + "address": "0xca3fe04c7ee111f0bbb02c328c699226acf9fd33", + "name": "seen.haus", + "buyable": false, + "symbol": "SEEN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.003574296452353398, + "ccyValue": 4.763821, + "ethDayChange": 0.006977389218684727, + "ccyDayChange": 0.044698 + }, + "tokenlist": false + }, { + "id": 355, + "address": "0xf832484f0c9f6b7cd5c945488899035467508a5d", + "name": "CUZ", + "buyable": false, + "symbol": "CUZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.000007, + "ccyValue": 0.001205, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 283, + "address": "0x3a9fff453d50d4ac52a6890647b823379ba36b9e", + "name": "Shuffle.Monster V3", + "buyable": false, + "symbol": "SHUF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006137, + "ccyValue": 0.089225, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 312, + "address": "0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714", + "name": "BOMB", + "buyable": false, + "symbol": "BOMB", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000572569195466978, + "ccyValue": 0.76312, + "ethDayChange": 0.025631776353272669, + "ccyDayChange": 0.063312 + }, + "tokenlist": false + }, { + "id": 365, + "address": "0x5c743a35e903f6c584514ec617acee0611cf44f3", + "name": "Experty", + "buyable": false, + "symbol": "EXY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000046432817353387, + "ccyValue": 0.061886, + "ethDayChange": -0.022878422698085017, + "ccyDayChange": 0.01308 + }, + "tokenlist": false + }, { + "id": 964, + "address": "0x4f56221252d117f35e2f6ab937a3f77cad38934d", + "name": "CryptoCricketClub", + "buyable": false, + "symbol": "3Cs", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000034632856054922, + "ccyValue": 0.046159, + "ethDayChange": -0.027166964749382022, + "ccyDayChange": 0.014997 + }, + "tokenlist": false + }, { + "id": 2037, + "address": "0x26a662539008d36fa3246be2c04e8f9919e2c02f", + "name": "Many", + "buyable": false, + "symbol": "MANY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1687, + "address": "0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059", + "name": "Swerve.fi DAI/USDC/USDT/TUSD", + "buyable": false, + "symbol": "swUSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00075541, + "ccyValue": 1.01, + "ethDayChange": -0.040432396727808546, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2510, + "address": "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f", + "name": "Meter Governance mapped by Meter.io", + "buyable": false, + "symbol": "eMTRG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00023299, + "ccyValue": 0.309714, + "ethDayChange": 0.114251554280248685, + "ccyDayChange": 0.149119 + }, + "tokenlist": false + }, { + "id": 1795, + "address": "0xcb1b5582c988b099f641ff59c8add0737c8e9b59", + "name": "iburn.io", + "buyable": false, + "symbol": "IBURN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2682, + "address": "0xd2dda223b2617cb616c1580db421e4cfae6a8a85", + "name": "Bondly Token", + "buyable": false, + "symbol": "BONDLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000111761548599799, + "ccyValue": 0.149146, + "ethDayChange": -0.028011260638847678, + "ccyDayChange": 0.01153 + }, + "tokenlist": false + }, { + "id": 1557, + "address": "0xe435cb6aca58dc49bda79753eed8c0fa6ed96e5d", + "name": "Mooniswap V1 (ETH-BZRX)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2304, + "address": "0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d", + "name": "Seigniorage Shares", + "buyable": false, + "symbol": "SHARE", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00044001, + "ccyValue": 0.584904, + "ethDayChange": -0.248427336562291476, + "ccyDayChange": -0.220902 + }, + "tokenlist": false + }, { + "id": 2692, + "address": "0x6589fe1271a0f29346796c6baf0cdf619e25e58e", + "name": "GRAIN Token", + "buyable": false, + "symbol": "GRAIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000039817934577423, + "ccyValue": 0.053058, + "ethDayChange": 0.049220937481501976, + "ccyDayChange": 0.101222 + }, + "tokenlist": false + }, { + "id": 346, + "address": "0x8cb1d155a5a1d5d667611b7710920fd9d1cd727f", + "name": "Aircoins", + "buyable": false, + "symbol": "AIRx", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 3E-8, + "ccyValue": 0.00004, + "ethDayChange": -0.3890020366598778, + "ccyDayChange": -0.365079 + }, + "tokenlist": false + }, { + "id": 3139, + "address": "0x878f15ffc8b894a1ba7647c7176e4c01f74e140b", + "name": "Hegic ETH LP Token", + "buyable": false, + "symbol": "writeETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2745, + "address": "0x3473c92d47a2226b1503dfe7c929b2ae454f6b22", + "name": "N3RDZ-ETH Uniswap pool token", + "buyable": false, + "symbol": "N3RDZ-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 126, + "address": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", + "name": "ZEON", + "buyable": false, + "symbol": "ZEON", + "decimals": 18, + "iconUrl": "https://www.cryptocompare.com/media/35521171/zeon.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.79098594744E-7, + "ccyValue": 0.000239, + "ethDayChange": 0.032863868189158016, + "ccyDayChange": 0.076577 + }, + "tokenlist": false + }, { + "id": 784, + "address": "0x3ef47dacff7486eb8052ee765ee03ee566a008f0", + "name": "USDC-CEL Uniswap pool token", + "buyable": false, + "symbol": "USDC-CEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 184, + "address": "0x4c1c4957d22d8f373aed54d0853b090666f6f9de", + "name": "Silverway", + "buyable": false, + "symbol": "SLV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.25E-8, + "ccyValue": 0.000017, + "ethDayChange": 0.183998076929485085, + "ccyDayChange": 0.214286 + }, + "tokenlist": false + }, { + "id": 1287, + "address": "0x6b039a8531a181881695e027362f5026ed9640c8", + "name": "Naver Corp Smart", + "buyable": false, + "symbol": "NCORP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1432, + "address": "0x2f3e054d233c93c59140c0905227c7c607c70cbb", + "name": "CoomCoin", + "buyable": false, + "symbol": "COOM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.57E-8, + "ccyValue": 0.000017, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3110, + "address": "0x89ec5df87a5186a0f0fa8cb84edd815de6047357", + "name": "Inverse.Finance USDC to ETH Yield Token", + "buyable": false, + "symbol": "inUSDC->ETH", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1907, + "address": "0xe98b5f11897d42afd17185dd301bcb2d46389bf1", + "name": "Dude", + "buyable": false, + "symbol": "DUDE", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1519, + "address": "0xb49009a69f3f96a2c49d23fc89f82368d5a84fb7", + "name": "InfoWars.army", + "buyable": false, + "symbol": "WARS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1490, + "address": "0xbfdef139103033990082245c24ff4b23dafd88cf", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2986, + "address": "0x182b723a58739a9c974cfdb385ceadb237453c28", + "name": "Curve.fi steCRV Gauge Deposit", + "buyable": false, + "symbol": "steCRV-gauge", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 275, + "address": "0xe5f166c0d8872b68790061317bb6cca04582c912", + "name": "TE-FOOD", + "buyable": false, + "symbol": "TFD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000011774853687851, + "ccyValue": 0.015694, + "ethDayChange": -0.170681182280040224, + "ccyDayChange": -0.138024 + }, + "tokenlist": false + }, { + "id": 934, + "address": "0x815f8ef4863451f4faf34fbc860034812e7377d9", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1193, + "address": "0x820d30dfb86edef782a0310f0e8f41ce37b82c40", + "name": "Uniswap V2 uDOO-ETH", + "buyable": false, + "symbol": "uDOO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1653, + "address": "0xc4da39e646e7f5d233b89ca0f7b75344e7ddb2cc", + "name": "KIMCHI-ETH Uniswap pool token", + "buyable": false, + "symbol": "KIMCHI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2251, + "address": "0xab659dee3030602c1af8c29d146facd4aed6ec85", + "name": "Uniswap V2 GHST-ETH", + "buyable": false, + "symbol": "GHST-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 584, + "address": "0x625ae63000f46200499120b906716420bd059240", + "name": "Aave Interest bearing SUSD V1", + "buyable": false, + "symbol": "aSUSD V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/asusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-4", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000752840662136439, + "ccyValue": 1.003853, + "ethDayChange": -0.043606894855490986, + "ccyDayChange": -0.007387 + }, + "tokenlist": false + }, { + "id": 1272, + "address": "0x786001c9c5ca6e502deb8a8a72480d2147891f32", + "name": "BetProtocolToken", + "buyable": false, + "symbol": "BEPRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 4.30479645758E-7, + "ccyValue": 0.000574, + "ethDayChange": -0.058031409719912473, + "ccyDayChange": -0.017123 + }, + "tokenlist": false + }, { + "id": 1125, + "address": "0x7e16fc2d93a3cb47f440a122adcf0cc2474436c5", + "name": "cp0x token", + "buyable": false, + "symbol": "CP0X", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1998, + "address": "0x8a8b5318d3a59fa6d1d0a83a1b0506f2796b5670", + "name": "Denarii", + "buyable": false, + "symbol": "ARI", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 21, + "address": "0xc06aec5191be16b94ffc97b6fc01393527367365", + "name": "BTC ETH Equal Weight", + "buyable": false, + "symbol": "BTCETH5050", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/btc-eth-5050.png", + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-robo-13", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.080793951970058923, + "ccyValue": 1441.485675, + "ethDayChange": -0.000843933937642427, + "ccyDayChange": 0.037094 + }, + "tokenlist": false + }, { + "id": 3094, + "address": "0x633c4861a4e9522353eda0bb652878b079fb75fd", + "name": "FARM_UNI-V2", + "buyable": false, + "symbol": "fUNI-V2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1963, + "address": "0xb2c822a1b923e06dbd193d2cfc7ad15388ea09dd", + "name": "Vampire Protocol", + "buyable": false, + "symbol": "VAMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001895107639612, + "ccyValue": 0.002526, + "ethDayChange": 4.42645474402929543, + "ccyDayChange": 4.638393 + }, + "tokenlist": false + }, { + "id": 2356, + "address": "0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e", + "name": "Keep4r", + "buyable": false, + "symbol": "KP4R", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00898177, + "ccyValue": 11.97, + "ethDayChange": -0.001016688662382709, + "ccyDayChange": 0.038221 + }, + "tokenlist": false + }, { + "id": 1732, + "address": "0x6a3b875854f5518e85ef97620c5e7de75bbc3fa0", + "name": "Cream Pool Token", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 274, + "address": "0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838", + "name": "GSENetwork", + "buyable": false, + "symbol": "GSE", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 2.1011849332E-8, + "ccyValue": 0.000028, + "ethDayChange": 0.024968260097560976, + "ccyDayChange": 0.076923 + }, + "tokenlist": false + }, { + "id": 279, + "address": "0x519475b31653e46d20cd09f9fdcf3b12bdacb4f5", + "name": "VIU", + "buyable": false, + "symbol": "VIU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.44E-8, + "ccyValue": 0.000009, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2002, + "address": "0x39eae99e685906ff1c11a962a743440d0a1a6e09", + "name": "Holyheld", + "buyable": false, + "symbol": "HOLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000575072294751087, + "ccyValue": 0.766291, + "ethDayChange": -0.092370060456351436, + "ccyDayChange": -0.056853 + }, + "tokenlist": false + }, { + "id": 1716, + "address": "0xfad1ddc14c266868c57a1304863fd953eed57ecb", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 965, + "address": "0x8971f9fd7196e5cee2c1032b50f656855af7dd26", + "name": "Lambda", + "buyable": false, + "symbol": "LAMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000013760472713021, + "ccyValue": 0.01834, + "ethDayChange": -0.031470535606595437, + "ccyDayChange": 0.006641 + }, + "tokenlist": false + }, { + "id": 2137, + "address": "0x7700fff30632de14c6bea3a92119fb3c63589320", + "name": "PumpHardToken", + "buyable": false, + "symbol": "PHT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 273, + "address": "0xa6dc5e47ed08aa8e642ff07b0a3685f41f9f437b", + "name": "BracebridgeGolfClub", + "buyable": false, + "symbol": "BGC", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1588, + "address": "0x50d3cac90d890ba0cc48c957bb9412b85794edb6", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1152, + "address": "0x02f2d4a04e6e01ace88bd2cd632875543b2ef577", + "name": "PKG Token", + "buyable": false, + "symbol": "PKG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.06E-8, + "ccyValue": 0.000027, + "ethDayChange": 0, + "ccyDayChange": 0.038462 + }, + "tokenlist": false + }, { + "id": 2234, + "address": "0x65fc94d99cb301c5630c485d312e6ff5edde13d0", + "name": "MVP Token", + "buyable": false, + "symbol": "MVP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00363706, + "ccyValue": 4.83, + "ethDayChange": -0.081742968014279835, + "ccyDayChange": -0.051081 + }, + "tokenlist": false + }, { + "id": 1213, + "address": "0x965f109d31ccb77005858defae0ebaf7b4381652", + "name": "BitStash", + "buyable": false, + "symbol": "STASH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 4.6731452179E-8, + "ccyValue": 0.000062, + "ethDayChange": -0.037865650029429181, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1576, + "address": "0xb6ee603933e024d8d53dde3faa0bf98fe2a3d6f1", + "name": "DeFiat", + "buyable": false, + "symbol": "DFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00128261, + "ccyValue": 1.72, + "ethDayChange": -0.204852702013016694, + "ccyDayChange": -0.168465 + }, + "tokenlist": false + }, { + "id": 2891, + "address": "0xcf19a7c81fcf0e01c927f28a2b551405e58c77e5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1050, + "address": "0xb1f9ec02480dd9e16053b010dfc6e6c4b72ecad5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-10", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.015553469407540755, + "ccyValue": 20.724418, + "ethDayChange": -0.023745274262209736, + "ccyDayChange": 0.015115 + }, + "tokenlist": false + }, { + "id": 1529, + "address": "0xf80758ab42c3b07da84053fd88804bcb6baa4b5c", + "name": "sUSD-ETH Uniswap pool token", + "buyable": false, + "symbol": "sUSD-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2605, + "address": "0x6362554d0dba7449f7bf40265a8d3807eb5acb12", + "name": "Personal Branding Coin", + "buyable": false, + "symbol": "PBC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2752, + "address": "0x1d9ee6ce637fb3678ee82aaa5017e858e654151b", + "name": "mirror.finance", + "buyable": false, + "symbol": "MIR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1261, + "address": "0x49f941fa7f5731fe302068d79c8604c24c5e7196", + "name": "Brr Token", + "buyable": false, + "symbol": "BRR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00000315618930022, + "ccyValue": 0.004206, + "ethDayChange": -0.037657849761693018, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1117, + "address": "0x8dba088c01deb705c7e34e8ff1de5520082d81d9", + "name": "0x0000000000000000000000004554484552424c41434b202d204469616d6f6e64", + "buyable": false, + "symbol": "MLNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2776, + "address": "0xe4922afab0bbadd8ab2a88e0c79d884ad337fca6", + "name": "Aave stable debt bearing USDC", + "buyable": false, + "symbol": "stableDebtUS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 990, + "address": "0xaacd36c877408824ee59540b0c093804d7e9a7d9", + "name": "MRDN-ETH Uniswap pool token", + "buyable": false, + "symbol": "MRDN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2790, + "address": "0x64010f6ba757715d8f12d8317004425d73ca5a81", + "name": "Tapmydata Liquidity Bootstrapping Pool", + "buyable": false, + "symbol": "TMDLBT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2920, + "address": "0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14", + "name": "Mettalex", + "buyable": false, + "symbol": "MTLX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00366843, + "ccyValue": 4.88, + "ethDayChange": -0.040818570851946026, + "ccyDayChange": -0.004671 + }, + "tokenlist": false + }, { + "id": 803, + "address": "0x3dc9a42fa7afe57be03c58fd7f4411b1e466c508", + "name": "CryptoLiveLeak", + "buyable": false, + "symbol": "CLL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000124, + "ccyValue": 0.00054, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1370, + "address": "0x29428639d889fa989405ee9baf3ba088e6994edc", + "name": "BASED", + "buyable": false, + "symbol": "BASED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000711204380586931, + "ccyValue": 0.947893, + "ethDayChange": -0.02919179815868221, + "ccyDayChange": 0.043072 + }, + "tokenlist": false + }, { + "id": 1514, + "address": "0x4e723b2406768aa408b51033c5f3a89849802a59", + "name": "YieldReturn.finance", + "buyable": false, + "symbol": "YFRT", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2713, + "address": "0xdcb01cc464238396e213a6fdd933e36796eaff9f", + "name": "Yield", + "buyable": false, + "symbol": "YLD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.02674028999393691, + "ccyValue": 35.631756, + "ethDayChange": -0.166895315097239031, + "ccyDayChange": -0.134042 + }, + "tokenlist": false + }, { + "id": 1462, + "address": "0x746dda2ea243400d5a63e0700f190ab79f06489e", + "name": "BOSAGORA", + "buyable": false, + "symbol": "BOA", + "decimals": 7, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006388, + "ccyValue": 0.084904, + "ethDayChange": -0.022643818849449204, + "ccyDayChange": 0.010437 + }, + "tokenlist": false + }, { + "id": 368, + "address": "0x10ec0d497824e342bcb0edce00959142aaa766dd", + "name": "IdleDAI", + "buyable": false, + "symbol": "IDLEDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2999, + "address": "0x94fa7f8cb8453ad57cd133363b3012044647078c", + "name": "RealToken S 1244 S. Avers Chicago IL", + "buyable": false, + "symbol": "1244 S.Avers", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2549, + "address": "0xc9b2ef3974c0b743624c4952f2663ea1c4e52c28", + "name": "meToken", + "buyable": false, + "symbol": "PETER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 153, + "address": "0xd71ecff9342a5ced620049e616c5035f1db98620", + "name": "Synth sEUR", + "buyable": false, + "symbol": "sEUR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2193, + "address": "0xe501f48055dea1aff44299f8ddeff849f07f3670", + "name": "yCORE VAULT ", + "buyable": false, + "symbol": "yCORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1605, + "address": "0xc4776a7a2d88d5dcb36d58a4de738f5fac410f6f", + "name": "YFRocket", + "buyable": false, + "symbol": "YFR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2627, + "address": "0x07150e919b4de5fd6a63de1f9384828396f25fdc", + "name": "Base Protocol", + "buyable": false, + "symbol": "BASE", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00073876, + "ccyValue": 0.982037, + "ethDayChange": 0.036976678659343657, + "ccyDayChange": 0.074961 + }, + "tokenlist": false + }, { + "id": 943, + "address": "0x7d5126b0e107b5862c11cb8f3eec978b37371073", + "name": "AVA Hub X", + "buyable": false, + "symbol": "AHX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 51, + "address": "0x585c2cf94c41b528ec7329cbc3cde3c4f8d268db", + "name": "ETH Range Bound Low Volatility", + "buyable": false, + "symbol": "ETHLOVOL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ethlovol.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.383056, + "ccyValue": 278.84, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1537, + "address": "0xa0cf46eb152656c7090e769916eb44a138aaa406", + "name": "Spheroid", + "buyable": false, + "symbol": "SPH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000853, + "ccyValue": 0.01136, + "ethDayChange": -0.134010152284263959, + "ccyDayChange": -0.102756 + }, + "tokenlist": false + }, { + "id": 2933, + "address": "0x1aef73d49dedc4b1778d0706583995958dc862e6", + "name": "Curve.fi MUSD/3Crv", + "buyable": false, + "symbol": "musd3CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1775, + "address": "0x6768063279e2b185dc0c972b97f11f231d0b45ad", + "name": "yield-farming.io", + "buyable": false, + "symbol": "YIELD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.5E-9, + "ccyValue": 0.000006, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2258, + "address": "0x0dafe2b22323dac2940d43cede16cd8790c5d4e6", + "name": "Charged.Finance", + "buyable": false, + "symbol": "CHARGED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.07090474590526129, + "ccyValue": 94.501828, + "ethDayChange": -0.037865650015774238, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 59, + "address": "0x9e6b2b11542f2bc52f3029077ace37e8fd838d7f", + "name": "Hacken", + "buyable": false, + "symbol": "HKN", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002618, + "ccyValue": 0.075, + "ethDayChange": -0.370824321076664263, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2602, + "address": "0x6e10aacb89a28d6fa0fe68790777fec7e7f01890", + "name": "Sav3Token", + "buyable": false, + "symbol": "SAV3", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000044660274437954, + "ccyValue": 0.059523, + "ethDayChange": 0.035240483030922578, + "ccyDayChange": 0.087357 + }, + "tokenlist": false + }, { + "id": 20, + "address": "0x91bc206f0a1ffbc399b4a20a41324ed1dad2b718", + "name": "Bullshit", + "buyable": false, + "symbol": "BSH", + "decimals": 0, + "iconUrl": "https://bullshit-money.github.io/assets/img/template/logo.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2419, + "address": "0x86fef14c27c78deaeb4349fd959caa11fc5b5d75", + "name": "ETH-RARI Uniswap pool token", + "buyable": false, + "symbol": "ETH-RARI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1252, + "address": "0xe9a95d175a5f4c9369f3b74222402eb1b837693b", + "name": "ChangeNOW", + "buyable": false, + "symbol": "NOW", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 807, + "address": "0x0a4b2d4b48a63088e0897a3f147ba37f81a27722", + "name": "CuraDAI", + "buyable": false, + "symbol": "CURA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cura.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#323d82", + "description": "CuraDAI is a digital currency that leverages the latest open financial tools built on blockchain technology to create a digital, stable, and transparent currency that matches the local currency of Curaçao in terms of the unit of account. CuraDAI is 100% backed by Dai, a digital currency soft-pegged to the US Dollar. CuraDAI has a direct connection to CuraDAO, a sustainable development DAO on the island, and contributes to the creation of a sustainable local economy.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00062833, + "ccyValue": 0.42746, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2211, + "address": "0xd9ba04d70e8291265a1aa0dbd1de7501edcdc6d5", + "name": "Investigate Blue Kirby", + "buyable": false, + "symbol": "IBK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2257, + "address": "0x776ca7ded9474829ea20ad4a5ab7a6ffdb64c796", + "name": "TenSpeed.finance", + "buyable": false, + "symbol": "TENS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00022593, + "ccyValue": 0.137141, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2293, + "address": "0x4d2ee5dae46c86da2ff521f7657dad98834f97b8", + "name": "Pepemon", + "buyable": false, + "symbol": "PPBLZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02343806, + "ccyValue": 31.22, + "ethDayChange": -0.128342482651873047, + "ccyDayChange": -0.090591 + }, + "tokenlist": false + }, { + "id": 226, + "address": "0x175666d12fc722abd9e4a8ebf5d9b2d17b36b268", + "name": "WhiskersToken", + "buyable": false, + "symbol": "WSKR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2848, + "address": "0xb5a73f5fc8bbdbce59bfd01ca8d35062e0dad801", + "name": "Perlin", + "buyable": false, + "symbol": "PERL", + "decimals": 9, + "sendable": false, + "dailyLimit": false, + "displayAddress": "0xeca82185adce47f39c684352b0439f030f860318", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000029234686698506, + "ccyValue": 0.038956, + "ethDayChange": -0.078489951676270732, + "ccyDayChange": -0.042427 + }, + "tokenlist": false + }, { + "id": 1241, + "address": "0x620fa2993046a53df1f365fa3fdc9e6c7763af96", + "name": "Global Rental Token", + "buyable": false, + "symbol": "GRT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.332E-7, + "ccyValue": 0.000333, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2522, + "address": "0xec5c839280398d179b0319cfc277ed35d9d0e91e", + "name": "BONE", + "buyable": false, + "symbol": "BONE", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2775, + "address": "0x9c39809dec7f95f5e0713634a4d0701329b3b4d2", + "name": "Aave variable debt bearing WBTC", + "buyable": false, + "symbol": "variableDebt", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 739, + "address": "0x24a77c1f17c547105e14813e517be06b0040aa76", + "name": "Live Stars Token", + "buyable": false, + "symbol": "LIVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.51E-8, + "ccyValue": 0.000011, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1357, + "address": "0x20bfe54dad0f3f938788e10bf68cc36d444a4210", + "name": "MoonDiaToken", + "buyable": false, + "symbol": "DIA", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2951, + "address": "0xad808e7a446f14a109dafce7dd2fe7ae7ff86b20", + "name": "BAFI Finance Token", + "buyable": false, + "symbol": "BAFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00400611, + "ccyValue": 5.32, + "ethDayChange": 0.006552714426775678, + "ccyDayChange": 0.039063 + }, + "tokenlist": false + }, { + "id": 562, + "address": "0xe25b0bba01dc5630312b6a21927e578061a13f55", + "name": "ShipChain SHIP", + "buyable": false, + "symbol": "SHIP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 5.24938659392E-7, + "ccyValue": 0.0007, + "ethDayChange": 0.098394295837387935, + "ccyDayChange": 0.141925 + }, + "tokenlist": false + }, { + "id": 3146, + "address": "0xd1b9e138516ee74ee27949eb1b58584a4bede267", + "name": "Angel", + "buyable": false, + "symbol": "AGL", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000051183899010005, + "ccyValue": 0.068305, + "ethDayChange": -0.021440140026264509, + "ccyDayChange": 0.018672 + }, + "tokenlist": false + }, { + "id": 1871, + "address": "0x8a3d77e9d6968b780564936d15b09805827c21fa", + "name": "UnirisToken", + "buyable": false, + "symbol": "UCO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000081344865150928, + "ccyValue": 0.108555, + "ethDayChange": -0.042438314880188346, + "ccyDayChange": 0.000369 + }, + "tokenlist": false + }, { + "id": 1688, + "address": "0x41efc0253ee7ea44400abb5f907fdbfdebc82bec", + "name": "$AAPL", + "buyable": false, + "symbol": "$AAPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00208523, + "ccyValue": 2.72, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2043, + "address": "0x3383c5a8969dc413bfddc9656eb80a1408e4ba20", + "name": "Wrapped ANATHA", + "buyable": false, + "symbol": "wANATHA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000052212868523728, + "ccyValue": 0.069678, + "ethDayChange": 0.048661749823820044, + "ccyDayChange": 0.095928 + }, + "tokenlist": false + }, { + "id": 1067, + "address": "0x905d3237dc71f7d8f604778e8b78f0c3ccff9377", + "name": "BRAPPER", + "buyable": false, + "symbol": "BRAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1329, + "address": "0x2cad4991f62fc6fcd8ec219f37e7de52b688b75a", + "name": "SChain Wallet", + "buyable": false, + "symbol": "SCHA", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000032, + "ccyValue": 0.004279, + "ethDayChange": -0.050445103857566766, + "ccyDayChange": -0.003029 + }, + "tokenlist": false + }, { + "id": 2737, + "address": "0x121df242fe56427f3f7a1622b883368c0b030ca7", + "name": "reflect.all", + "buyable": false, + "symbol": "RFIALL", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2626, + "address": "0xacd2556f64d4be9aaa205278895653d3e6d639ae", + "name": "YFI-USDT Uniswap pool token", + "buyable": false, + "symbol": "YFI-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 611, + "address": "0xf9986d445ced31882377b5d6a5f58eaea72288c3", + "name": "Elrond", + "buyable": false, + "symbol": "ERD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000514, + "ccyValue": 0.006853, + "ethDayChange": -0.073873873873873874, + "ccyDayChange": -0.154368 + }, + "tokenlist": false + }, { + "id": 1459, + "address": "0x51c586e20ee54836c231a5ffab38098a6f6a3853", + "name": "BUZZY.Finance", + "buyable": false, + "symbol": "BZZY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2438, + "address": "0x88f639186aee2fc903da4fe5742df35b760225e8", + "name": "Elastic Staking", + "buyable": false, + "symbol": "EStake", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2747, + "address": "0xa8b0f154a688c22142e361707df64277e0a0be66", + "name": "Rake Finance", + "buyable": false, + "symbol": "RAK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.02340187554326419, + "ccyValue": 31.190014, + "ethDayChange": -0.101966096782355561, + "ccyDayChange": -0.06635 + }, + "tokenlist": false + }, { + "id": 1565, + "address": "0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5", + "name": "UniFi", + "buyable": false, + "symbol": "UniFi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.000238, + "ccyValue": 0.317083, + "ethDayChange": -0.02598731328013096, + "ccyDayChange": 0.008832 + }, + "tokenlist": false + }, { + "id": 843, + "address": "0x9bb6fd000109e24eb38b0deb806382ff9247e478", + "name": "hex.bet", + "buyable": false, + "symbol": "HXB", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1954, + "address": "0xe227affef9b1d629b6331d5e97e32061a8cb0764", + "name": "Uniswap V2 VI-ETH", + "buyable": false, + "symbol": "VI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 769, + "address": "0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26", + "name": "Measurable Data Token", + "buyable": false, + "symbol": "MDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001671, + "ccyValue": 0.02226, + "ethDayChange": 0.073217726396917148, + "ccyDayChange": 0.113 + }, + "tokenlist": false + }, { + "id": 906, + "address": "0x00000100f2a2bd000715001920eb70d229700085", + "name": "TrueCAD", + "buyable": false, + "symbol": "TCAD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00050254, + "ccyValue": 0.667047, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 588, + "address": "0xe6404a4472e5222b440f8fafb795553046000841", + "name": "BTC Long-Only Alpha Portfolio", + "buyable": false, + "symbol": "BLOAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-10", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.142537018636292467, + "ccyValue": 190.177357, + "ethDayChange": -0.00059062302802424, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 52, + "address": "0x5af2be193a6abca9c8817001f45744777db30756", + "name": "Voyager Token", + "buyable": false, + "symbol": "VGX", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vgx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#3D3FBC", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0007848739, + "ccyValue": 1.043578, + "ethDayChange": -0.051666299517880218, + "ccyDayChange": -0.016047 + }, + "tokenlist": false + }, { + "id": 651, + "address": "0xfc89f1b932079b462ef9c8757de5a28e387b847b", + "name": "OLD RealToken 18276 Appoline Street Detroit MI", + "buyable": false, + "symbol": "18276 Appoli", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.05701421, + "ccyValue": 71.51, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2761, + "address": "0x778a13d3eeb110a4f7bb6529f99c000119a08e92", + "name": "Aave stable debt bearing DAI", + "buyable": false, + "symbol": "stableDebtDA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 846, + "address": "0x2b6a25f7c54f43c71c743e627f5663232586c39f", + "name": "JRT-ETH Uniswap pool token", + "buyable": false, + "symbol": "JRT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1345, + "address": "0xc7062d899dd24b10bfed5adaab21231a1e7708fe", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1568, + "address": "0xb34a1ed99cc0304f6caf322de4dc197a5b7c2858", + "name": "MOUSSA FINANCE COIN", + "buyable": false, + "symbol": "MFC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1189, + "address": "0xdfe691f37b6264a90ff507eb359c45d55037951c", + "name": "Karma", + "buyable": false, + "symbol": "KARMA", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.002595, + "ccyValue": 6.266, + "ethDayChange": -0.370756547041707081, + "ccyDayChange": 0.04121 + }, + "tokenlist": false + }, { + "id": 228, + "address": "0xc12d1c73ee7dc3615ba4e37e4abfdbddfa38907e", + "name": "KickToken", + "buyable": false, + "symbol": "KICK", + "decimals": 8, + "sendable": false, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2530, + "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85", + "name": "Fetch", + "buyable": false, + "symbol": "FET", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00006851, + "ccyValue": 0.09127, + "ethDayChange": -0.045287338430636628, + "ccyDayChange": -0.00815 + }, + "tokenlist": false + }, { + "id": 3049, + "address": "0x01c0eb1f8c6f1c1bf74ae028697ce7aa2a8b0e92", + "name": "Aave variable debt bearing TUSD", + "buyable": false, + "symbol": "variableDebt", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 899, + "address": "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45", + "name": "Stox", + "buyable": false, + "symbol": "STX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001079, + "ccyValue": 0.014342, + "ethDayChange": -0.968468731735827002, + "ccyDayChange": -0.967367 + }, + "tokenlist": false + }, { + "id": 2730, + "address": "0x35872fea6a4843facbcdbce99e3b69596a3680b8", + "name": "1337", + "buyable": false, + "symbol": "1337", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00100398, + "ccyValue": 1.26, + "ethDayChange": 0.00038860490837892, + "ccyDayChange": -0.023256 + }, + "tokenlist": false + }, { + "id": 1553, + "address": "0xa54c67bd320da4f9725a6f585b7635a0c09b122e", + "name": "TimeMiner", + "buyable": false, + "symbol": "TIME", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00443249, + "ccyValue": 5.66, + "ethDayChange": -0.06543941840998891, + "ccyDayChange": -0.166421 + }, + "tokenlist": false + }, { + "id": 3056, + "address": "0xc68b3e38710e14c1a1c7f3630b16dd0527f67d76", + "name": "Protocol Finance", + "buyable": false, + "symbol": "PFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2062, + "address": "0x72cf258c852dc485a853370171d46b9d29fd3184", + "name": "yfii Tether USD", + "buyable": false, + "symbol": "iUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 662, + "address": "0x7b8d9e95caa85d7905c3435da1ba9fa7f79bf4fa", + "name": "The Intelligent ETH Trading Set", + "buyable": false, + "symbol": "INTETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.5535609, + "ccyValue": 255.89, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2373, + "address": "0xf2c9c61487d796032cdb9d57f770121218ac5f91", + "name": "Yield Dai - 2020-12-31", + "buyable": false, + "symbol": "fyDai20Dec", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1090, + "address": "0x7510d6fac98a6eca2db7c9357619715a7f5049d4", + "name": "Holistic BTC Set", + "buyable": false, + "symbol": "TCapBTCUSDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-52", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.235521523972729565, + "ccyValue": 314.003588, + "ethDayChange": -0.032480498492610327, + "ccyDayChange": 0.008307 + }, + "tokenlist": false + }, { + "id": 658, + "address": "0x2e66ed26258c186e931a7dd2aedbf944c9a0d2ff", + "name": "Schaefer Uniswap Pool", + "buyable": false, + "symbol": "RealT Schaef", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/uniswap.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#CC73DF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1842, + "address": "0x6f3009663470475f0749a6b76195375f95495fcb", + "name": "HatchDAO", + "buyable": false, + "symbol": "HATCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000691, + "ccyValue": 0.009282, + "ethDayChange": 0.002902757619738752, + "ccyDayChange": -0.002472 + }, + "tokenlist": false + }, { + "id": 1906, + "address": "0x3492ce62703aa8b8f699f3eaefdf8c00aed18b9a", + "name": "$SOAP", + "buyable": false, + "symbol": "$SOAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3162, + "address": "0x8c8687fc965593dfb2f0b4eaefd55e9d8df348df", + "name": "PAID Network", + "buyable": false, + "symbol": "PAID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000514032055921589, + "ccyValue": 0.685102, + "ethDayChange": 0.594511769551168893, + "ccyDayChange": 0.658369 + }, + "tokenlist": false + }, { + "id": 1464, + "address": "0x29e240cfd7946ba20895a7a02edb25c210f9f324", + "name": "yearn Aave Interest bearing LINK", + "buyable": false, + "symbol": "yaLINK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-9", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.018437833192879761, + "ccyValue": 24.657164, + "ethDayChange": 0.044628436406602932, + "ccyDayChange": 0.087355 + }, + "tokenlist": false + }, { + "id": 708, + "address": "0x45555629aabfea138ead1c1e5f2ac3cce2add830", + "name": "CandyHCoin", + "buyable": false, + "symbol": "CANDY", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3167, + "address": "0x7e5a536f3d79791e283940ec379cee10c9c40e86", + "name": "LinkSwap LP Token", + "buyable": false, + "symbol": "LSLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1369, + "address": "0x6a27348483d59150ae76ef4c0f3622a78b0ca698", + "name": "MetaGraphChain", + "buyable": false, + "symbol": "BKBT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 4.71745955639E-7, + "ccyValue": 0.000629, + "ethDayChange": 0.031249897945826355, + "ccyDayChange": 0.07155 + }, + "tokenlist": false + }, { + "id": 763, + "address": "0xae461ca67b15dc8dc81ce7615e0320da1a9ab8d5", + "name": "DAI-USDC Uniswap pool token", + "buyable": false, + "symbol": "DAI-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-12", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1636.453053508965578668, + "ccyValue": 2183630.567147, + "ethDayChange": -0.038176738704787886, + "ccyDayChange": -0.00114 + }, + "onchainEthPrice": 1649.148336999180521263, + "tokenlist": false + }, { + "id": 199, + "address": "0x93e01899c10532d76c0e864537a1d26433dbbddb", + "name": "ETH RSI 60/40 Crossover Set", + "buyable": false, + "symbol": "ETHRSI6040", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-8", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.646686179328, + "ccyValue": 862.304625, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.688475406827676879, + "tokenlist": false + }, { + "id": 1389, + "address": "0x5c64031c62061865e5fd0f53d3cdaef80f72e99d", + "name": "HASHGARD", + "buyable": false, + "symbol": "GARD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 7.0762731089E-8, + "ccyValue": 0.000094, + "ethDayChange": 0.041715861901633595, + "ccyDayChange": 0.08046 + }, + "tokenlist": false + }, { + "id": 2579, + "address": "0x033e223870f766644f7f7a4b7dc2e91573707d06", + "name": "Zin Finance", + "buyable": false, + "symbol": "Zin", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001307, + "ccyValue": 0.017447, + "ethDayChange": -0.544122776421346355, + "ccyDayChange": -0.526591 + }, + "tokenlist": false + }, { + "id": 1810, + "address": "0x55a290f08bb4cae8dcf1ea5635a3fcfd4da60456", + "name": "BITTO", + "buyable": false, + "symbol": "BITTO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00018796, + "ccyValue": 0.25037, + "ethDayChange": 0.005940594059405941, + "ccyDayChange": 0.049387 + }, + "tokenlist": false + }, { + "id": 995, + "address": "0xbbff862d906e348e9946bfb2132ecb157da3d4b4", + "name": "Sharder", + "buyable": false, + "symbol": "SS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000131, + "ccyValue": 0.001748, + "ethDayChange": 0.058942430724693163, + "ccyDayChange": 0.102839 + }, + "onchainEthPrice": 0.0000013, + "tokenlist": false + }, { + "id": 2667, + "address": "0x09a3ecafa817268f77be1283176b946c4ff2e608", + "name": "Wrapped MIR Token", + "buyable": true, + "symbol": "MIR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mir.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#334166", + "description": "MIR is the governance token of Mirror Protocol, a synthetic assets protocol built by Terraform Labs (TFL) on the Terra blockchain.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00300917, + "ccyValue": 4.01, + "ethDayChange": 0.194091387075653261, + "ccyDayChange": 0.245342 + }, + "onchainEthPrice": 0.00255954, + "tokenlist": true + }, { + "id": 2495, + "address": "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429", + "name": "Golem Network Token", + "buyable": false, + "symbol": "GLM", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "brandColor": "#001D57", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008898, + "ccyValue": 0.118277, + "ethDayChange": 0.039121803106387948, + "ccyDayChange": 0.081706 + }, + "onchainEthPrice": 0.000087129997860176, + "tokenlist": false + }, { + "id": 814, + "address": "0xb647a1d7633c6c4d434e22ee9756b36f2b219525", + "name": "ETH 20 MA Crossover Yield II", + "buyable": false, + "symbol": "ETHMACOAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-17", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.860939616256, + "ccyValue": 1147.994555, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.8811024744448, + "tokenlist": false + }, { + "id": 1673, + "address": "0x468ab3b1f63a1c14b361bc367c3cc92277588da1", + "name": "YELD", + "buyable": true, + "symbol": "YELD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yeld.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1A43FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.046364744096449494, + "ccyValue": 61.79492, + "ethDayChange": -0.079581228838000893, + "ccyDayChange": -0.043357 + }, + "onchainEthPrice": 0.04887248, + "tokenlist": true + }, { + "id": 119, + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "name": "Tether", + "buyable": true, + "symbol": "USDT", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/usdt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#26A17B", + "category": "currencies", + "refundable": true, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000750617988808581, + "ccyValue": 1.001703, + "ethDayChange": -0.038073989877786704, + "ccyDayChange": 0.001729 + }, + "onchainEthPrice": 0.000813296187410374, + "tokenlist": true + }, { + "id": 417, + "address": "0xc27a2f05fa577a83ba0fdb4c38443c0718356501", + "name": "Lamden Tau", + "buyable": true, + "symbol": "TAU", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tau.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2F2282", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000015861410006133, + "ccyValue": 0.02114, + "ethDayChange": -0.029289473308873929, + "ccyDayChange": 0.006667 + }, + "onchainEthPrice": 0.000015430897127111, + "tokenlist": true + }, { + "id": 1220, + "address": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "name": "ETH-USDT Uniswap pool token", + "buyable": false, + "symbol": "ETH-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-25", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 75119.065240938817429421, + "ccyValue": 100206011.237818, + "ethDayChange": -0.018650913034074318, + "ccyDayChange": 0.020121 + }, + "onchainEthPrice": 84278.954750140217631288, + "tokenlist": false + }, { + "id": 405, + "address": "0x0abdace70d3790235af448c88547603b945604ea", + "name": "district0x Network Token", + "buyable": true, + "symbol": "DNT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dnt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2C398F", + "description": "The district0x network is a collective of decentralized and autonomous marketplaces and communities, also known as districts. These districts are built upon a decentralized and distributed open-source framework, the d0xINFRA network, which is powered by Ethereum smart contracts. The district0x network aims at creating a friction-free, virtual economy where the users will be able to make buying and selling decisions, complete transactions, and even rank their peers with just one simple click. District0x aims to develop a flexible, and free market with advanced entrepreneurial concepts. The District0x infrastructure has a very neat concept with some well-outlined features, such as the staking interface. A staking interface is put in place that allows DNT holders to have open control over the districts through an Aragon governance layer for all markets that come online. Post creation of a district, an Aragon entity will also be created that people can use to interact with this staking mechanism. After staking a user will receive voting rights in that district. Using the creation interface, one can remove central power structures from any marketplace without the additional need for development or programming skills. It can be described as the WordPress of dApps where the districts being launched are like wordpress templates and the auxiliary modules are WordPress plugins for extended functionality. While it is very difficult to buy lesser known cryptocurrencies using fiat currencies (dollars, euros) directly from crypto-exchanges, district0x or DNT can be easily purchased from various exchanges using Ethereum or Bitcoin as the base cryptocoin. Binance is one of the popular exchange platforms that can help trade Bitcoin or Ethereum for District0x. One can use various wallets like myetherwallet.com to store the district0x (DNT) coins. Coinbase, Blockchain, Exodus, Trezor Hardware Wallet are also wallets that supports district0x. District0x, differs from most coins in its underlying concept and the architecture it is built on. The concept of interconnected districts and marketplaces promises a novel structure to the modern economies. What a lot of users are missing out on is the fact that it is a staking mechanism and not just a voting token. Staking is basically the process of mining the PoS (proof of stake) coins. Early investors will be able to lock their tokens to a specific district on the network, thus being able to participate in its governance later. DNT tokens can be staked in districts, thus they not only give voting power and privileges within that district but also provide district-specific tokens depending on when the investor had started trading. For example, early investors of the PoS token will be able to make decisions about the distribution of profits among stakeholders, the intricacies of the business model etc. DNT can basically be considered as a dynamic stock in the future district0x ecosystem. By joining the district0x, the user receives district0x coins. They allow the owner to exercise the right to vote for district proposals and make decisions within certain districts. This includes, for example, voting on proposals concerning the future of a particular district or setting fees. The scope of shareholders’ rights is outlined in the bylaws and varies according to the specific scope and purpose of each district. District0x platform users can interact with the functions and services provided by each district. Users can also freely create their own districts. For example, on Ethlance, the first district in the District0x network, users can post job offers or search for new jobs.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000084404287521852, + "ccyValue": 0.11247, + "ethDayChange": 0.009288681017219154, + "ccyDayChange": 0.049484 + }, + "onchainEthPrice": 0.000085816827390216, + "tokenlist": true + }, { + "id": 118, + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "name": "USD Coin", + "buyable": true, + "symbol": "USDC", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/usdc.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 2, + "brandColor": "#2775CA", + "category": "currencies", + "refundable": true, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000749101482352019, + "ccyValue": 0.999475, + "ethDayChange": -0.038953740003691644, + "ccyDayChange": -0.001951 + }, + "onchainEthPrice": 0.000756412097577889, + "tokenlist": true + }, { + "id": 211, + "address": "0x107c4504cd79c5d2696ea0030a8dd4e92601b82e", + "name": "Bloom Token", + "buyable": true, + "symbol": "BLT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/blt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#6067F1", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.000073945, + "ccyValue": 0.098318, + "ethDayChange": 0.104793683286185034, + "ccyDayChange": 0.146285 + }, + "onchainEthPrice": 0.00007049, + "tokenlist": true + }, { + "id": 1383, + "address": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "name": "Curve DAO Token", + "buyable": true, + "symbol": "CRV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/crv.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3D669F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.001617970742079572, + "ccyValue": 2.158747, + "ethDayChange": 0.127337890407952994, + "ccyDayChange": 0.173744 + }, + "onchainEthPrice": 0.001603712300665886, + "tokenlist": true + }, { + "id": 1812, + "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "name": "Uniswap", + "buyable": true, + "symbol": "UNI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/uniswap-v2.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF007A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.010954714351589297, + "ccyValue": 14.600441, + "ethDayChange": -0.068768192739583315, + "ccyDayChange": -0.033952 + }, + "onchainEthPrice": 0.01050425, + "tokenlist": true + }, { + "id": 1437, + "address": "0x3845badade8e6dff049820680d1f14bd3903a5d0", + "name": "The Sandbox", + "buyable": true, + "symbol": "SAND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sand.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00ADEF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006655, + "ccyValue": 0.088659, + "ethDayChange": 0.002561012353118409, + "ccyDayChange": 0.039866 + }, + "onchainEthPrice": 0.00007262, + "tokenlist": true + }, { + "id": 130, + "address": "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "name": "Compound Dai", + "buyable": false, + "symbol": "cDAI", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/cdai.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867639, + "ethValue": 0.000015723635300031, + "ccyValue": 0.020906, + "ethDayChange": -0.047052406058727273, + "ccyDayChange": -0.007548 + }, + "onchainEthPrice": 0.000015868078250344, + "tokenlist": false + }, { + "id": 115, + "address": "0x0000000000085d4780b73119b644ae5ecd22b376", + "name": "TrueUSD", + "buyable": true, + "symbol": "TUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tusd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#002868", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000749921791672143, + "ccyValue": 0.999496, + "ethDayChange": -0.036183967271237464, + "ccyDayChange": -0.001002 + }, + "onchainEthPrice": 0.0007588, + "tokenlist": true + }, { + "id": 1229, + "address": "0x1453dbb8a29551ade11d89825ca812e05317eaeb", + "name": "Tendies Token", + "buyable": true, + "symbol": "TEND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tend.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2D3757", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00006762, + "ccyValue": 0.09009, + "ethDayChange": 0.013067682309901478, + "ccyDayChange": 0.053241 + }, + "onchainEthPrice": 0.000071403026484565, + "tokenlist": true + }, { + "id": 247, + "address": "0xfa57cea2f244c607e2ba7ba258af7cb3d0ebd64f", + "name": "Andrew Yang Token", + "buyable": false, + "symbol": "MATH", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2536, + "address": "0x87ea2b2037046a9af3284d6a7f5a137931dbba16", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 665, + "address": "0x879dcd0287aed4a93cc647cb0804f098e1611488", + "name": "ChainLink Token-777", + "buyable": false, + "symbol": "LINK777", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3134, + "address": "0x76dbeb740ecd1f3b052a9afa302abc7eb4fb5390", + "name": "RealToken S 9133 Devonshire Rd Detroit MI", + "buyable": false, + "symbol": "9133 Devonsh", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1792, + "address": "0xdea67845a51e24461d5fed8084e69b426af3d5db", + "name": "HodlTree", + "buyable": false, + "symbol": "HTRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005686, + "ccyValue": 0.071353, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3085, + "address": "0xd4cb461eace80708078450e465881599d2235f1a", + "name": "passive.income", + "buyable": false, + "symbol": "PSI", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.2515886771620408, + "ccyValue": 335.244922, + "ethDayChange": -0.042591886975352711, + "ccyDayChange": -0.004836 + }, + "tokenlist": false + }, { + "id": 1314, + "address": "0xfc05987bd2be489accf0f509e44b0145d68240f7", + "name": "ESSENTIA", + "buyable": false, + "symbol": "ESS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.221E-7, + "ccyValue": 0.000296, + "ethDayChange": 0.070877531340405014, + "ccyDayChange": 0.112782 + }, + "tokenlist": false + }, { + "id": 453, + "address": "0xbdbe4d9e43e8f305afe9462802b8691c45caf596", + "name": "USD Digital", + "buyable": false, + "symbol": "USDD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 740, + "address": "0x37d40510a2f5bc98aa7a0f7bf4b3453bcfb90ac1", + "name": "Beluga Banking Infrastructure Token", + "buyable": false, + "symbol": "BBI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002, + "ccyValue": 0.2665, + "ethDayChange": 161.601626016260162602, + "ccyDayChange": 287.108108 + }, + "tokenlist": false + }, { + "id": 2363, + "address": "0x58a5d3e4873a75b07fb3c7cf477eebc44ea73b3b", + "name": "KAIJU", + "buyable": false, + "symbol": "KAIJU", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000971, + "ccyValue": 0.005891, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1834, + "address": "0xdaf8a0e12fc3b109a17ed5cbb943a8f3f86081f7", + "name": "Sports Betting Marketplace", + "buyable": false, + "symbol": "SBX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 679, + "address": "0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c", + "name": "Ultra Token", + "buyable": false, + "symbol": "UOS", + "decimals": 4, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001235, + "ccyValue": 0.1639, + "ethDayChange": 0.116939495342317084, + "ccyDayChange": 0.160387 + }, + "onchainEthPrice": 0.000115714406750139, + "tokenlist": false + }, { + "id": 218, + "address": "0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d", + "name": "Pinakion", + "buyable": true, + "symbol": "PNK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pnk.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#9013FE", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000087140716804758, + "ccyValue": 0.116195, + "ethDayChange": -0.016692430548882871, + "ccyDayChange": 0.026784 + }, + "onchainEthPrice": 0.00009464, + "tokenlist": true + }, { + "id": 828, + "address": "0xcffdded873554f362ac02f8fb1f02e5ada10516f", + "name": "Uniswap V2 COMP-ETH", + "buyable": false, + "symbol": "COMP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-15", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.213579233564236049, + "ccyValue": 1618.789922, + "ethDayChange": 0.05580855583033199, + "ccyDayChange": 0.098676 + }, + "onchainEthPrice": 1.113017379049279864, + "tokenlist": false + }, { + "id": 648, + "address": "0x614857c755739354d68ae0abd53849cf45d6a41d", + "name": "ETH 26 EMA Crossover Set", + "buyable": false, + "symbol": "ETH26EMACO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-9", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.703803, + "ccyValue": 938.465366, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.83899104254109139, + "tokenlist": false + }, { + "id": 236, + "address": "0x0affa06e7fbe5bc9a764c979aa66e8256a631f02", + "name": "Polybius Token", + "buyable": false, + "symbol": "PLBT", + "decimals": 6, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0026636162, + "ccyValue": 3.541576, + "ethDayChange": 0.240757157367351521, + "ccyDayChange": 0.282972 + }, + "onchainEthPrice": 0.00263629, + "tokenlist": false + }, { + "id": 63, + "address": "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab", + "name": "IOSToken", + "buyable": true, + "symbol": "IOST", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/iost.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000012671974124899, + "ccyValue": 0.016889, + "ethDayChange": 0.006511050428832407, + "ccyDayChange": 0.04382 + }, + "onchainEthPrice": 0.000014911884397021, + "tokenlist": true + }, { + "id": 66, + "address": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "name": "EthLend", + "buyable": true, + "symbol": "LEND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/lend.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00ACC7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00220387788578194, + "ccyValue": 2.941085, + "ethDayChange": -0.037058285938316405, + "ccyDayChange": 0.000222 + }, + "onchainEthPrice": 0.002051036794256725, + "tokenlist": true + }, { + "id": 2245, + "address": "0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f", + "name": "RAMP DEFI", + "buyable": true, + "symbol": "RAMP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ramp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0695A6", + "description": "Unlocking liquid capital from staked assets - Tap into cross chain liquidity and stake farming.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00025134, + "ccyValue": 0.334804, + "ethDayChange": 0.090081103352561044, + "ccyDayChange": 0.136651 + }, + "onchainEthPrice": 0.00023242, + "tokenlist": true + }, { + "id": 461, + "address": "0xdf5e0e81dff6faf3a7e52ba697820c5e32d806a8", + "name": "Curve.fi yDAI/yUSDC/yUSDT/yTUSD", + "buyable": true, + "symbol": "yDAI+yUSDC+y", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000827160097994752, + "ccyValue": 1.103849, + "ethDayChange": 0.016180094548487032, + "ccyDayChange": 0.058228 + }, + "onchainEthPrice": 0.00078375, + "tokenlist": true + }, { + "id": 1728, + "address": "0xc28e27870558cf22add83540d2126da2e4b464c2", + "name": "SashimiToken", + "buyable": true, + "symbol": "SASHIMI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sashimi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#EB591A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00002131, + "ccyValue": 0.02839, + "ethDayChange": -0.030923146884947704, + "ccyDayChange": 0.011076 + }, + "onchainEthPrice": 0.00002396, + "tokenlist": true + }, { + "id": 884, + "address": "0xe2f2a5c287993345a840db3b0845fbc70f5935a5", + "name": "mStable USD", + "buyable": true, + "symbol": "mUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/musd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000745068498573586, + "ccyValue": 0.993027, + "ethDayChange": -0.043647442350552103, + "ccyDayChange": -0.00601 + }, + "onchainEthPrice": 0.00081822, + "tokenlist": true + }, { + "id": 986, + "address": "0x5c872500c00565505f3624ab435c222e558e9ff8", + "name": "CoTrader", + "buyable": true, + "symbol": "COT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cot.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00DBC0", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.61E-8, + "ccyValue": 0.000061, + "ethDayChange": -0.225210084033613445, + "ccyDayChange": -0.197368 + }, + "onchainEthPrice": 4.47E-8, + "tokenlist": true + }, { + "id": 458, + "address": "0x136fae4333ea36a24bb751e2d505d6ca4fd9f00b", + "name": "ETH RSI 60/40 Yield", + "buyable": false, + "symbol": "ETHRSIAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-5", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.641678180352, + "ccyValue": 855.626856, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.682166927545040155, + "tokenlist": false + }, { + "id": 117, + "address": "0xc86d054809623432210c107af2e3f619dcfbf652", + "name": "Sentinel Protocol", + "buyable": true, + "symbol": "UPP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/upp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#21A0B4", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001868, + "ccyValue": 0.024827, + "ethDayChange": 0.015355347193912216, + "ccyDayChange": 0.050345 + }, + "onchainEthPrice": 0.00001828, + "tokenlist": true + }, { + "id": 1695, + "address": "0x668dbf100635f593a3847c0bdaf21f0a09380188", + "name": "bns.finance", + "buyable": true, + "symbol": "BNSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bnsd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#6E16DC", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000007295116440175, + "ccyValue": 0.009723, + "ethDayChange": -0.057478496101421189, + "ccyDayChange": -0.018176 + }, + "onchainEthPrice": 0.00000721, + "tokenlist": true + }, { + "id": 3048, + "address": "0x853d955acef822db058eb8505911ed77f175b99e", + "name": "Frax", + "buyable": true, + "symbol": "FRAX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/frax.png", + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000745117007049453, + "ccyValue": 0.994362, + "ethDayChange": -0.035634030377741106, + "ccyDayChange": 0.004269 + }, + "onchainEthPrice": 0.000858747513630079, + "tokenlist": true + }, { + "id": 2613, + "address": "0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e", + "name": "Aave interest bearing ZRX", + "buyable": false, + "symbol": "aZRX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/azrx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-5", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000486307693483444, + "ccyValue": 0.648011, + "ethDayChange": 0.132370170640907186, + "ccyDayChange": 0.169524 + }, + "tokenlist": false + }, { + "id": 733, + "address": "0x767ba2915ec344015a7938e3eedfec2785195d05", + "name": "Realisto Token", + "buyable": false, + "symbol": "REA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00062, + "ccyValue": 0.05486, + "ethDayChange": 0, + "ccyDayChange": 0.947462 + }, + "tokenlist": false + }, { + "id": 2360, + "address": "0xa211f450ce88deb31d3f12ae3c1ebf6b0e55a5d9", + "name": "Parsiq Boost", + "buyable": false, + "symbol": "PRQBOOST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002103, + "ccyValue": 0.028272, + "ethDayChange": 0.07241203467618562, + "ccyDayChange": 0.103901 + }, + "tokenlist": false + }, { + "id": 1869, + "address": "0x9b06d48e0529ecf05905ff52dd426ebec0ea3011", + "name": "XSwap", + "buyable": false, + "symbol": "XSP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 1.815753751E-8, + "ccyValue": 0.000024, + "ethDayChange": 0.082725555202539421, + "ccyDayChange": 0.142857 + }, + "tokenlist": false + }, { + "id": 2290, + "address": "0x798934cdcfae18764ef4819274687df3fb24b99b", + "name": "Mooniswap V1 (ETH-UNI)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2584, + "address": "0xd8e3fb3b08eba982f2754988d70d57edc0055ae6", + "name": "Zoracles", + "buyable": false, + "symbol": "ZORA", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.493173783500816038, + "ccyValue": 658.14258, + "ethDayChange": 0.039002024589946806, + "ccyDayChange": 0.081994 + }, + "tokenlist": false + }, { + "id": 1137, + "address": "0x0d0d65e7a7db277d3e0f5e1676325e75f3340455", + "name": "MTA-ETH Uniswap pool token", + "buyable": false, + "symbol": "MTA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-28", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.149010485645918713, + "ccyValue": 198.774493, + "ethDayChange": 0.009180373450420085, + "ccyDayChange": 0.053788 + }, + "tokenlist": false + }, { + "id": 429, + "address": "0x02f61fd266da6e8b102d4121f5ce7b992640cf98", + "name": "LikeCoin", + "buyable": false, + "symbol": "LIKE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/like.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#28646e", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001765, + "ccyValue": 0.006935, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 717, + "address": "0x5a3c9a1725aa82690ee0959c89abe96fd1b527ee", + "name": "PiedPiperCoin", + "buyable": false, + "symbol": "PPI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000342, + "ccyValue": 0.000449, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2710, + "address": "0xcbd380c2d84deafed09f79863705353505764f26", + "name": "Emojis Farm", + "buyable": false, + "symbol": "EMOJI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02012309, + "ccyValue": 26.81, + "ethDayChange": 0.054874954655729524, + "ccyDayChange": 0.100123 + }, + "tokenlist": false + }, { + "id": 2962, + "address": "0x8dae6cb04688c62d939ed9b68d32bc62e49970b1", + "name": "Aave interest bearing CRV", + "buyable": false, + "symbol": "aCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.001617970742079572, + "ccyValue": 2.158747, + "ethDayChange": 0.127337890407952994, + "ccyDayChange": 0.173744 + }, + "tokenlist": false + }, { + "id": 3148, + "address": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "name": "Curve.fi HUSD/3Crv", + "buyable": false, + "symbol": "husd3CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 388, + "address": "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6", + "name": "Dentacoin", + "buyable": false, + "symbol": "٨", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 5.4E-9, + "ccyValue": 0.000007, + "ethDayChange": -0.052631578947368421, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2084, + "address": "0xfae2809935233d4bfe8a56c2355c4a2e7d1fff1a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 636, + "address": "0xb1ca7e6714263a64659a3a89e1c313af30fd660a", + "name": "ETH Moonshot X Yield Set", + "buyable": false, + "symbol": "ETHMOONX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-24", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.34264384, + "ccyValue": 456.888329, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 874, + "address": "0x3bdbcd52bd83cd38eedb0e76885550e6cea788f4", + "name": "DDOS2", + "buyable": false, + "symbol": "DDOS2", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 396, + "address": "0x5c406d99e04b8494dc253fcc52943ef82bca7d75", + "name": "cUSD Currency", + "buyable": false, + "symbol": "cUSD", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.112E-7, + "ccyValue": 0.000144, + "ethDayChange": 0.001801801801801802, + "ccyDayChange": -0.027027 + }, + "tokenlist": false + }, { + "id": 2866, + "address": "0x54b45408f40a95b4209d269ab009bbce9a32a81f", + "name": "Mooniswap V1 (ETH-UMA)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2876, + "address": "0x4185cf99745b2a20727b37ee798193dd4a56cdfa", + "name": "DEUS Synthetic Coinbase IOU", + "buyable": false, + "symbol": "wCOINBASE-IO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.189528177647481182, + "ccyValue": 252.926185, + "ethDayChange": 0.637192747178324182, + "ccyDayChange": 0.608229 + }, + "tokenlist": false + }, { + "id": 2424, + "address": "0xb1dc9124c395c1e97773ab855d66e879f053a289", + "name": "yAxis", + "buyable": false, + "symbol": "YAX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.014744340097340851, + "ccyValue": 19.676387, + "ethDayChange": 0.036585303435171883, + "ccyDayChange": 0.079074 + }, + "tokenlist": false + }, { + "id": 2295, + "address": "0x3af375d9f77ddd4f16f86a5d51a9386b7b4493fa", + "name": "YES Donald Trump", + "buyable": false, + "symbol": "yTrump", + "decimals": 15, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00002728, + "ccyValue": 0.03675, + "ethDayChange": 1.079268292682926829, + "ccyDayChange": 1.23133 + }, + "tokenlist": false + }, { + "id": 2130, + "address": "0x9dde0b1d39d0d2c6589cde1bfed3542d2a3c5b11", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-9", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.133581731269318609, + "ccyValue": 1510.40462, + "ethDayChange": 0.072259970947373504, + "ccyDayChange": 0.113356 + }, + "tokenlist": false + }, { + "id": 681, + "address": "0xf49c43ae0faf37217bdcb00df478cf793edd6687", + "name": "ETH-KNC Uniswap pool token", + "buyable": false, + "symbol": "ETH-KNC", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-6", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.076359587035910446, + "ccyValue": 101.861007, + "ethDayChange": 0.022474140917143373, + "ccyDayChange": 0.063087 + }, + "onchainEthPrice": 0.069838569341313233, + "tokenlist": false + }, { + "id": 1643, + "address": "0xe1237aa7f535b0cc33fd973d66cbf830354d16c7", + "name": "yearn Wrapped Ether", + "buyable": false, + "symbol": "yWETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.012002979338791336, + "ccyValue": 1349.425544, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 1.007732161140878583, + "tokenlist": false + }, { + "id": 599, + "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b", + "name": "CRO", + "buyable": false, + "symbol": "CRO", + "decimals": 8, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00005138, + "ccyValue": 0.06853, + "ethDayChange": 0.004348701158742548, + "ccyDayChange": 0.044649 + }, + "onchainEthPrice": 0.00006154, + "tokenlist": false + }, { + "id": 726, + "address": "0x261efcdd24cea98652b9700800a13dfbca4103ff", + "name": "Synth sXAU", + "buyable": false, + "symbol": "sXAU", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.3877517268631996, + "ccyValue": 1849.595164, + "ethDayChange": -0.044534366864472696, + "ccyDayChange": -0.007281 + }, + "onchainEthPrice": 1.582022, + "tokenlist": false + }, { + "id": 2814, + "address": "0x16b1eb8b8e9058800bf0ba3684f805a6711a1d2c", + "name": "reflector.finance", + "buyable": false, + "symbol": "RFCTR", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00005506, + "ccyValue": 0.07338, + "ethDayChange": 0.045029488008379318, + "ccyDayChange": 0.086097 + }, + "tokenlist": false + }, { + "id": 1301, + "address": "0x607c794cda77efb21f8848b7910ecf27451ae842", + "name": "DeFiPIE Token", + "buyable": true, + "symbol": "PIE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pie.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F22F54", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002179, + "ccyValue": 0.028937, + "ethDayChange": 0.018700327255726975, + "ccyDayChange": 0.056673 + }, + "onchainEthPrice": 0.00002291, + "tokenlist": true + }, { + "id": 472, + "address": "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3", + "name": "Bitfinex LEO Token", + "buyable": false, + "symbol": "LEO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000983678276359711, + "ccyValue": 1.311046, + "ethDayChange": -0.088731146721776629, + "ccyDayChange": -0.049967 + }, + "tokenlist": false + }, { + "id": 1356, + "address": "0x00d1793d7c3aae506257ba985b34c76aaf642557", + "name": "Tacos", + "buyable": false, + "symbol": "TACO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000013182260150991, + "ccyValue": 0.017569, + "ethDayChange": -0.022273349606099912, + "ccyDayChange": 0.016842 + }, + "tokenlist": false + }, { + "id": 2372, + "address": "0x88d39566dae88dc838652d9898f0aa6a8ff2819a", + "name": "hypeburn.finance", + "buyable": false, + "symbol": "HBURN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00373128, + "ccyValue": 4.03, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 329, + "address": "0x06f65b8cfcb13a9fe37d836fe9708da38ecb29b2", + "name": "SAINT FAME: Genesis Shirt", + "buyable": false, + "symbol": "FAME", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.156608, + "ccyValue": 2840.05, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 556, + "address": "0x740623d2c797b7d8d1ecb98e9b4afcf99ec31e14", + "name": "DoYourTip", + "buyable": false, + "symbol": "DYT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00032937, + "ccyValue": 0.438884, + "ethDayChange": 0.000121458719217806, + "ccyDayChange": 0.050263 + }, + "tokenlist": false + }, { + "id": 1982, + "address": "0xf27950dfd304cad5bec22a2403d004943eefd5b3", + "name": "LunaSwap.Finance", + "buyable": false, + "symbol": "LSWP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1669, + "address": "0xcb4f983e705caeb7217c5c3785001cb138115f0b", + "name": "YFV-ETH Uniswap pool token", + "buyable": false, + "symbol": "YFV-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 217, + "address": "0x30b8d24688991f0f0e6270913182c97a533a85fb", + "name": "OdhavToken", + "buyable": false, + "symbol": "ODHAV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2609, + "address": "0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1", + "name": "Aave interest bearing UNI", + "buyable": false, + "symbol": "aUNI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-aave-v2-6", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.010954714351589297, + "ccyValue": 14.600441, + "ethDayChange": -0.068768192739583315, + "ccyDayChange": -0.033952 + }, + "tokenlist": false + }, { + "id": 2129, + "address": "0x53bf2e62fa20e2b4522f05de3597890ec1b352c6", + "name": "pickling Uniswap V2", + "buyable": false, + "symbol": "pUNI-V2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 529, + "address": "0x78230e69d6e6449db1e11904e0bd81c018454d7a", + "name": "LeapToken", + "buyable": false, + "symbol": "LEAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2582, + "address": "0xa7ed29b253d8b4e3109ce07c80fc570f81b63696", + "name": "BAS", + "buyable": true, + "symbol": "BAS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bas.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#EB622E", + "description": "Basis – back from the grave", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.039561380138888483, + "ccyValue": 52.794836, + "ethDayChange": -0.24453152690422895, + "ccyDayChange": -0.213795 + }, + "onchainEthPrice": 0.04915240792138602, + "tokenlist": true + }, { + "id": 1323, + "address": "0x5beabaebb3146685dd74176f68a0721f91297d37", + "name": "Bounce Token", + "buyable": true, + "symbol": "BOT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bot.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.71742854233623738, + "ccyValue": 957.215644, + "ethDayChange": -0.224219439958620993, + "ccyDayChange": -0.192822 + }, + "onchainEthPrice": 0.780056270788574713, + "tokenlist": true + }, { + "id": 71, + "address": "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd", + "name": "LoopringCoin V2", + "buyable": true, + "symbol": "LRC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/lrc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1C42FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00034272, + "ccyValue": 0.456596, + "ethDayChange": 0.073763262646216122, + "ccyDayChange": 0.113442 + }, + "onchainEthPrice": 0.0003019567, + "tokenlist": true + }, { + "id": 513, + "address": "0xdf574c24545e5ffecb9a659c229253d4111d87e1", + "name": "HUSD", + "buyable": false, + "symbol": "HUSD", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/husd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#005FFA", + "description": "HUSD is a USD-backed stablecoin issued by Stable Universal, pegged to U.S. dollar in a 1:1 ratio. The US dollars collateralized for HUSD are held in a US Trust Company, and transparently verified by a well known third-party auditing firm monthly.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0007511, + "ccyValue": 0.999, + "ethDayChange": -0.036680774656919328, + "ccyDayChange": 0 + }, + "onchainEthPrice": 0.0007586, + "tokenlist": false + }, { + "id": 2346, + "address": "0x20945ca1df56d237fd40036d47e866c7dccd2114", + "name": "Nsure Network Token", + "buyable": true, + "symbol": "Nsure", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/nsure.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#C03CC9", + "description": "Nsure is an open insurance platform for Open Finance. The project borrows the idea of Lloyd’s London, a market place to trade insurance risks, where premiums are determined by a dynamic pricing model.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00048134, + "ccyValue": 0.641172, + "ethDayChange": 0.063106292645270493, + "ccyDayChange": 0.10433 + }, + "onchainEthPrice": 0.00054735, + "tokenlist": true + }, { + "id": 148, + "address": "0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e", + "name": "Metronome", + "buyable": true, + "symbol": "MET", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/met.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#7E61F8", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0015460322, + "ccyValue": 2.055623, + "ethDayChange": -0.039407221591594873, + "ccyDayChange": -0.006724 + }, + "onchainEthPrice": 0.001657, + "tokenlist": true + }, { + "id": 656, + "address": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "name": "DAI-ETH Uniswap pool token", + "buyable": false, + "symbol": "DAI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-1", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.069924502007530071, + "ccyValue": 93.276658, + "ethDayChange": -0.018827585848115708, + "ccyDayChange": 0.018534 + }, + "onchainEthPrice": 0.079133708598143783, + "tokenlist": false + }, { + "id": 1134, + "address": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", + "name": "Meta", + "buyable": true, + "symbol": "MTA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mta.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.002284102460544207, + "ccyValue": 3.048145, + "ethDayChange": 0.017417577079824944, + "ccyDayChange": 0.069149 + }, + "onchainEthPrice": 0.002447509244807116, + "tokenlist": true + }, { + "id": 2980, + "address": "0x87d73e916d7057945c9bcd8cdd94e42a6f47f776", + "name": "NFTX", + "buyable": false, + "symbol": "NFTX", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0688, + "ccyValue": 91.69, + "ethDayChange": 0.003244670612042463, + "ccyDayChange": 0.042958 + }, + "onchainEthPrice": 0.06826134197766509, + "tokenlist": false + }, { + "id": 2624, + "address": "0x101cc05f4a51c0319f570d5e146a8c625198e636", + "name": "Aave interest bearing TUSD", + "buyable": false, + "symbol": "aTUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/atusd.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-19", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000749921791672143, + "ccyValue": 0.999496, + "ethDayChange": -0.036183967271237464, + "ccyDayChange": -0.001002 + }, + "tokenlist": false + }, { + "id": 1240, + "address": "0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90", + "name": "LIBERTAS", + "buyable": false, + "symbol": "LIBERTAS", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00000617223318152, + "ccyValue": 0.008225, + "ethDayChange": 0.155848910397003745, + "ccyDayChange": 0.210627 + }, + "tokenlist": false + }, { + "id": 3157, + "address": "0xad7ca17e23f13982796d27d1e6406366def6ee5f", + "name": "HEGICTokenIOU Phase II", + "buyable": false, + "symbol": "rHEGIC2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1365, + "address": "0x1b980e05943de3db3a459c72325338d327b6f5a9", + "name": "Bitgear", + "buyable": true, + "symbol": "GEAR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gear.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#E7392C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000009919379181739, + "ccyValue": 0.013221, + "ethDayChange": 0.135885043308996541, + "ccyDayChange": 0.181396 + }, + "onchainEthPrice": 0.000008263563971481, + "tokenlist": true + }, { + "id": 897, + "address": "0x12f649a9e821f90bb143089a6e56846945892ffb", + "name": "uDOO", + "buyable": true, + "symbol": "uDOO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/udoo.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF292C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002954, + "ccyValue": 0.039269, + "ethDayChange": -0.041995680710188574, + "ccyDayChange": -0.006879 + }, + "onchainEthPrice": 0.00003256, + "tokenlist": true + }, { + "id": 1575, + "address": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "name": "SushiToken", + "buyable": true, + "symbol": "SUSHI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sushi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00632, + "ccyValue": 8.42, + "ethDayChange": 0.092128262849440974, + "ccyDayChange": 0.132517 + }, + "onchainEthPrice": 0.005771, + "tokenlist": true + }, { + "id": 398, + "address": "0xdf1d6405df92d981a2fb3ce68f6a03bac6c0e41f", + "name": "VERA", + "buyable": true, + "symbol": "VRA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vra.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#DA4037", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 4.9E-7, + "ccyValue": 0.000654, + "ethDayChange": -0.014282840474753571, + "ccyDayChange": 0.023474 + }, + "onchainEthPrice": 5.112E-7, + "tokenlist": true + }, { + "id": 841, + "address": "0xbe9375c6a420d2eeb258962efb95551a5b722803", + "name": "StormX", + "buyable": true, + "symbol": "STMX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/stmx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FA2E53", + "description": "StormX is a gamified marketplace that enables users to earn STMX ERC-20 tokens by completing micro-tasks or shopping at global partner stores online. Users can earn staking rewards, shopping, and micro-task benefits for holding STMX in their own wallet.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000002156558697779, + "ccyValue": 0.002876, + "ethDayChange": 0.063762806305155923, + "ccyDayChange": 0.106154 + }, + "onchainEthPrice": 0.00000201, + "tokenlist": true + }, { + "id": 13, + "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "name": "Basic Attention Token", + "buyable": true, + "symbol": "BAT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bat.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF5700", + "category": "tokens", + "refundable": true, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000228394299695633, + "ccyValue": 0.304354, + "ethDayChange": -0.052991049117787658, + "ccyDayChange": -0.018583 + }, + "onchainEthPrice": 0.0002261234, + "tokenlist": true + }, { + "id": 408, + "address": "0x316b13b951efe25aad1cb565385b23869a7d4c48", + "name": "ETH 26 EMA Crossover Yield", + "buyable": false, + "symbol": "ETHEMAAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-3", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.95563022336, + "ccyValue": 1274.256954, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 1.128912971305745692, + "tokenlist": false + }, { + "id": 3127, + "address": "0x798d1be841a82a273720ce31c822c61a67a601c3", + "name": "Digg", + "buyable": false, + "symbol": "DIGG", + "decimals": 9, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 29.344798889407765594, + "ccyValue": 39160.762988, + "ethDayChange": -0.072024928866633602, + "ccyDayChange": -0.030146 + }, + "onchainEthPrice": 32.255005, + "tokenlist": false + }, { + "id": 948, + "address": "0x0f8c45b896784a1e408526b9300519ef8660209c", + "name": "XMAX", + "buyable": true, + "symbol": "XMX", + "decimals": 8, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.595E-7, + "ccyValue": 0.000213, + "ethDayChange": -0.027439024390243902, + "ccyDayChange": 0.014286 + }, + "onchainEthPrice": 1.485E-7, + "tokenlist": true + }, { + "id": 96, + "address": "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6", + "name": "Raiden Network", + "buyable": true, + "symbol": "RDN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rdn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333332", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000144663707442468, + "ccyValue": 0.192808, + "ethDayChange": -0.027078435385917009, + "ccyDayChange": 0.015511 + }, + "onchainEthPrice": 0.0001762346, + "tokenlist": true + }, { + "id": 890, + "address": "0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1", + "name": "Pamp Network", + "buyable": true, + "symbol": "PAMP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pamp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00E676", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.374E-7, + "ccyValue": 0.00098, + "ethDayChange": 0.051775780915703894, + "ccyDayChange": 0.08768 + }, + "onchainEthPrice": 7.021E-7, + "tokenlist": true + }, { + "id": 336, + "address": "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd", + "name": "Gemini dollar", + "buyable": true, + "symbol": "GUSD", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gusd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#343167", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000746579522833909, + "ccyValue": 0.994878, + "ethDayChange": -0.050120324967660359, + "ccyDayChange": -0.012242 + }, + "onchainEthPrice": 0.000759545979142674, + "tokenlist": true + }, { + "id": 516, + "address": "0x4a220e6096b25eadb88358cb44068a3248254675", + "name": "Quant", + "buyable": true, + "symbol": "QNT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/qnt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.0192806283644561, + "ccyValue": 25.691668, + "ethDayChange": 0.125064297169414191, + "ccyDayChange": 0.16909 + }, + "onchainEthPrice": 0.01667289998947225, + "tokenlist": true + }, { + "id": 2783, + "address": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "name": "Graph Token", + "buyable": true, + "symbol": "GRT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/grt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#441A93", + "description": "The Graph is an indexing protocol for querying networks like Ethereum and IPFS. Anyone can build and publish open APIs, called subgraphs, making data easily accessible.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000415124575866506, + "ccyValue": 0.553278, + "ethDayChange": 0.064203691208229081, + "ccyDayChange": 0.110799 + }, + "onchainEthPrice": 0.000453921831960946, + "tokenlist": true + }, { + "id": 134, + "address": "0x39aa39c021dfbae8fac545936693ac917d5e7563", + "name": "Compound USD Coin", + "buyable": false, + "symbol": "cUSDC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/cusdc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867639, + "ethValue": 0.000016113591671155, + "ccyValue": 0.021425, + "ethDayChange": -0.045968521542036708, + "ccyDayChange": -0.006768 + }, + "onchainEthPrice": 0.000016237188206305, + "tokenlist": false + }, { + "id": 2217, + "address": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "name": "ORN-ETH Uniswap pool token", + "buyable": false, + "symbol": "ORN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1384, + "address": "0xfbf83d951be44df342e1b37cdbbb49b866a4e452", + "name": "Serum", + "buyable": false, + "symbol": "SRM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 344, + "address": "0x42a501903afaa1086b5975773375c80e363f4063", + "name": "Cryptyk Tokens", + "buyable": false, + "symbol": "CTK", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000612, + "ccyValue": 0.001393, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2219, + "address": "0xb65aa347a28d40039f62f3a488c9fd2799cb5a95", + "name": "Void Reserve Currency", + "buyable": false, + "symbol": "VRC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2723, + "address": "0xcd7989894bc033581532d2cd88da5db0a4b12859", + "name": "WBTC-BADGER Uniswap pool token", + "buyable": false, + "symbol": "WBTC-BADGER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2214, + "address": "0xec213f83defb583af3a000b1c0ada660b1902a0f", + "name": "Presearch", + "buyable": false, + "symbol": "PRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000037723081206479, + "ccyValue": 0.050266, + "ethDayChange": 0.066829219640243213, + "ccyDayChange": 0.105963 + }, + "tokenlist": false + }, { + "id": 922, + "address": "0x896a07e3788983ec52eaf0f9c6f6e031464ee2cc", + "name": "Meridian Network", + "buyable": false, + "symbol": "MRDN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2016, + "address": "0xbff0e42eec4223fbd12260f47f3348d29876db42", + "name": "XTAKE", + "buyable": false, + "symbol": "XTK", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00014431, + "ccyValue": 0.197785, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3061, + "address": "0x8dcff4f1653f45cf418b0b3a5080a0fdcac577c8", + "name": "yAI Oraichain Token", + "buyable": false, + "symbol": "aiORAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 952, + "address": "0xe9bb22b2063daba021b0384d8535badd1426fba7", + "name": "Pyrabank Private", + "buyable": false, + "symbol": "PBPRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 278, + "address": "0x65486101d497094e4cfee7da8520bbee381814f5", + "name": "CloggCoin", + "buyable": false, + "symbol": "clogg", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1897, + "address": "0x9d47894f8becb68b9cf3428d256311affe8b068b", + "name": "ROPE", + "buyable": false, + "symbol": "ROPE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.015732144948046564, + "ccyValue": 20.994617, + "ethDayChange": -0.080301492158781249, + "ccyDayChange": -0.042883 + }, + "onchainEthPrice": 0.01965217, + "tokenlist": false + }, { + "id": 354, + "address": "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d", + "name": "Celsius", + "buyable": true, + "symbol": "CEL", + "decimals": 4, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cel.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F37727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0036100681, + "ccyValue": 4.799989, + "ethDayChange": -0.029702868907535922, + "ccyDayChange": 0.010524 + }, + "onchainEthPrice": 0.00359352, + "tokenlist": true + }, { + "id": 2045, + "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "name": "Aave Token", + "buyable": true, + "symbol": "AAVE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#B6509E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.2204, + "ccyValue": 293.74, + "ethDayChange": -0.034180543382997371, + "ccyDayChange": 0.001056 + }, + "onchainEthPrice": 0.19404914374003063, + "tokenlist": true + }, { + "id": 1747, + "address": "0x066798d9ef0833ccc719076dab77199ecbd178b0", + "name": "SakeToken", + "buyable": true, + "symbol": "SAKE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sake.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1CABCF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001569, + "ccyValue": 0.020853, + "ethDayChange": -0.066627007733491969, + "ccyDayChange": -0.028512 + }, + "onchainEthPrice": 0.00001661, + "tokenlist": true + }, { + "id": 1512, + "address": "0xab37e1358b639fd877f015027bb62d3ddaa7557e", + "name": "lien", + "buyable": true, + "symbol": "LIEN", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/lien.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#002A52", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.03382060063776189, + "ccyValue": 45.076088, + "ethDayChange": -0.08295551416046936, + "ccyDayChange": -0.049228 + }, + "onchainEthPrice": 0.03811199116268501, + "tokenlist": true + }, { + "id": 1016, + "address": "0x43044f861ec040db59a7e324c40507addb673142", + "name": "Cap", + "buyable": true, + "symbol": "CAP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cap.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#12DD3B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.064407827382781838, + "ccyValue": 85.952528, + "ethDayChange": -0.093208430239149347, + "ccyDayChange": -0.052343 + }, + "onchainEthPrice": 0.07298642, + "tokenlist": true + }, { + "id": 25, + "address": "0xb683d83a532e2cb7dfa5275eed3698436371cc9f", + "name": "BTU Protocol", + "buyable": true, + "symbol": "BTU", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/btu.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#240384", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0003058, + "ccyValue": 0.4079, + "ethDayChange": -0.00067841452303799, + "ccyDayChange": 0.037502 + }, + "onchainEthPrice": 0.0003057526, + "tokenlist": true + }, { + "id": 796, + "address": "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d", + "name": "renBTC", + "buyable": true, + "symbol": "renBTC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/renbtc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3F3F48", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 24.408606399016282562, + "ccyValue": 32573.392432, + "ethDayChange": 0.002537709269920614, + "ccyDayChange": 0.04135 + }, + "onchainEthPrice": 23.29, + "tokenlist": true + }, { + "id": 1698, + "address": "0x4639cd8cd52ec1cf2e496a606ce28d8afb1c792f", + "name": "CBDAO", + "buyable": false, + "symbol": "BREE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bree.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00CCC7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000032620916146056, + "ccyValue": 0.043477, + "ethDayChange": -0.804325378525247436, + "ccyDayChange": -0.796269 + }, + "onchainEthPrice": 0.00015231, + "tokenlist": false + }, { + "id": 1141, + "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "name": "yearn.finance", + "buyable": true, + "symbol": "YFI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yfi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 22.61253633641482, + "ccyValue": 30137.98293, + "ethDayChange": 0.017851592652049751, + "ccyDayChange": 0.05791 + }, + "onchainEthPrice": 23.356950845140783, + "tokenlist": true + }, { + "id": 855, + "address": "0x26ce25148832c04f3d7f26f32478a9fe55197166", + "name": "DEXTools", + "buyable": true, + "symbol": "DEXT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dext.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#01BDE2", + "description": "DEXTools is an Assistant App for Traders, including multiple tools to improve your trading.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000099263079393537, + "ccyValue": 0.13244, + "ethDayChange": -0.011619243318361047, + "ccyDayChange": 0.031384 + }, + "onchainEthPrice": 0.00009053, + "tokenlist": true + }, { + "id": 94, + "address": "0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664", + "name": "QuarkChain", + "buyable": true, + "symbol": "QKC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/qkc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2B6CB2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000052583, + "ccyValue": 0.006991, + "ethDayChange": 0.085130589493332296, + "ccyDayChange": 0.121971 + }, + "onchainEthPrice": 0.00000536, + "tokenlist": true + }, { + "id": 1098, + "address": "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78", + "name": "0chain", + "buyable": true, + "symbol": "ZCN", + "decimals": 10, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/zcn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000830526110217873, + "ccyValue": 1.108114, + "ethDayChange": 0.041333151727274444, + "ccyDayChange": 0.0842 + }, + "onchainEthPrice": 0.00083781, + "tokenlist": true + }, { + "id": 1539, + "address": "0xf063fe1ab7a291c5d06a86e14730b00bf24cb589", + "name": "DxSale.Network", + "buyable": false, + "symbol": "SALE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00001474148246957, + "ccyValue": 0.019647, + "ethDayChange": 0.007250621039311395, + "ccyDayChange": 0.046891 + }, + "tokenlist": false + }, { + "id": 2889, + "address": "0x17996cbddd23c2a912de8477c37d43a1b79770b8", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1089, + "address": "0x77b1465b0e01ba085e515324e30fee6555c623ea", + "name": "Set of Sets Trailblazer Fund", + "buyable": false, + "symbol": "MQSS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-53", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.33374632, + "ccyValue": 445.024193, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 506, + "address": "0x8f464bfe2292748a0fed58bb53d3838b4ce018b0", + "name": "KEVIN", + "buyable": false, + "symbol": "KEVIN", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1634, + "address": "0x4b4f5286e0f93e965292b922b9cd1677512f1222", + "name": "YUNo.finance", + "buyable": false, + "symbol": "YUNO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.349E-7, + "ccyValue": 0.000099, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 481, + "address": "0x68eb95dc9934e19b86687a10df8e364423240e94", + "name": " 3X Long Bitcoin Token", + "buyable": false, + "symbol": "BULL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 21.6, + "ccyValue": 2.899E+4, + "ethDayChange": 0.0546875, + "ccyDayChange": 0.10312 + }, + "tokenlist": false + }, { + "id": 3149, + "address": "0xc6d19a604fbdb5c2eeb363255fd63c9eea29288e", + "name": "Dark Bundles", + "buyable": false, + "symbol": "DBund", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00011446, + "ccyValue": 0.152471, + "ethDayChange": -0.059722336318080999, + "ccyDayChange": -0.025695 + }, + "tokenlist": false + }, { + "id": 305, + "address": "0x076641af1b8f06b7f8c92587156143c109002cbe", + "name": "SoPay", + "buyable": false, + "symbol": "SOP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 2.2498393938E-8, + "ccyValue": 0.00003, + "ethDayChange": -0.067524986148024275, + "ccyDayChange": -0.032258 + }, + "tokenlist": false + }, { + "id": 2915, + "address": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", + "name": "Inverse DAO", + "buyable": false, + "symbol": "INV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2845, + "address": "0xbd6467a31899590474ce1e84f70594c53d628e46", + "name": "KardiaChain Token", + "buyable": false, + "symbol": "KAI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/kai.png", + "sendable": false, + "dailyLimit": false, + "brandColor": "#E13E35", + "displayAddress": "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093", + "kyberAddress": "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000016343161234686, + "ccyValue": 0.021782, + "ethDayChange": 0.010708796208163265, + "ccyDayChange": 0.051762 + }, + "tokenlist": false + }, { + "id": 1176, + "address": "0x57700244b20f84799a31c6c96dadff373ca9d6c5", + "name": "TRUST DAO", + "buyable": false, + "symbol": "TRUST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000798, + "ccyValue": 0.010733, + "ethDayChange": 0.002512562814070352, + "ccyDayChange": -0.002509 + }, + "tokenlist": false + }, { + "id": 1442, + "address": "0x1a2fbdc3b6a7230c875d94ff194e3fe039dcefb2", + "name": "Pledge DeFi Rights Token", + "buyable": false, + "symbol": "PDF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2846, + "address": "0x445f51299ef3307dbd75036dd896565f5b4bf7a5", + "name": "V-ID Token", + "buyable": false, + "symbol": "VIDT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vidt.png", + "sendable": false, + "dailyLimit": true, + "brandColor": "#02C3D2", + "displayAddress": "0xfef4185594457050cc9c23980d301908fe057bb1", + "kyberAddress": "0xfef4185594457050cc9c23980d301908fe057bb1", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004593, + "ccyValue": 0.6126, + "ethDayChange": 0.024561115592559567, + "ccyDayChange": 0.065658 + }, + "onchainEthPrice": 0.0004418075, + "tokenlist": false + }, { + "id": 743, + "address": "0x70a72833d6bf7f508c8224ce59ea1ef3d0ea3a38", + "name": "UTRUST Token", + "buyable": false, + "symbol": "UTK", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001884, + "ccyValue": 0.251, + "ethDayChange": 0.059636810302583346, + "ccyDayChange": 0.100901 + }, + "onchainEthPrice": 0.00018426, + "tokenlist": false + }, { + "id": 129, + "address": "0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e", + "name": "Compound Basic Attention Token", + "buyable": false, + "symbol": "cBAT", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/cbat.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867639, + "ethValue": 0.000004680490646828, + "ccyValue": 0.006223, + "ethDayChange": -0.054446333974141414, + "ccyDayChange": -0.015971 + }, + "onchainEthPrice": 0.000004632742589468, + "tokenlist": false + }, { + "id": 2629, + "address": "0x3472a5a71965499acd81997a54bba8d852c6e53d", + "name": "Badger", + "buyable": true, + "symbol": "BADGER", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/badger.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F2A52B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02120178, + "ccyValue": 28.24, + "ethDayChange": 0.130841814379366643, + "ccyDayChange": 0.178139 + }, + "onchainEthPrice": 0.01709222, + "tokenlist": true + }, { + "id": 1663, + "address": "0xcbd55d4ffc43467142761a764763652b48b969ff", + "name": "AstroTools.io", + "buyable": true, + "symbol": "ASTRO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/astro.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#7F12DF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000131918777395013, + "ccyValue": 0.176046, + "ethDayChange": 0.126600927015005874, + "ccyDayChange": 0.172436 + }, + "onchainEthPrice": 0.000137311496455974, + "tokenlist": true + }, { + "id": 193, + "address": "0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037", + "name": "SENTinel", + "buyable": true, + "symbol": "SENT", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sent.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00B6FA", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00000411982331538, + "ccyValue": 0.00549, + "ethDayChange": -0.02017820763759574, + "ccyDayChange": 0.018175 + }, + "onchainEthPrice": 0.000003514105286182, + "tokenlist": true + }, { + "id": 674, + "address": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "name": "WBTC-ETH Uniswap pool token", + "buyable": false, + "symbol": "WBTC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-5", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1108678.308067186231772068, + "ccyValue": 1478783976.613073, + "ethDayChange": -0.000475388846209418, + "ccyDayChange": 0.03758 + }, + "onchainEthPrice": 1138047.650021073641110501, + "tokenlist": false + }, { + "id": 644, + "address": "0xa360f2af3f957906468c0fd7526391aed08ae3db", + "name": "ETH 50 SMA Crossover Set", + "buyable": false, + "symbol": "ETH50SMACO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-11", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.783839, + "ccyValue": 1045.187011, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.830360695615664026, + "tokenlist": false + }, { + "id": 968, + "address": "0x178c820f862b14f316509ec36b13123da19a6054", + "name": "Energy Web Token Bridged", + "buyable": true, + "symbol": "EWTB", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ewtb.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#A566FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.005755583679980838, + "ccyValue": 7.680852, + "ethDayChange": -0.094078338519848624, + "ccyDayChange": -0.056945 + }, + "onchainEthPrice": 0.006638374141272158, + "tokenlist": true + }, { + "id": 266, + "address": "0x0cf0ee63788a0849fe5297f3407f701e122cc023", + "name": "Streamr DATAcoin", + "buyable": true, + "symbol": "DATA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/data.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0D009A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000422579, + "ccyValue": 0.056187, + "ethDayChange": -0.009043616287733372, + "ccyDayChange": 0.027504 + }, + "onchainEthPrice": 0.000050500116956076, + "tokenlist": true + }, { + "id": 2485, + "address": "0x465e22e30ce69ec81c2defa2c71d510875b31891", + "name": "Uniswap V2 COVER-ETH", + "buyable": false, + "symbol": "c", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2611, + "address": "0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656", + "name": "Aave interest bearing WBTC", + "buyable": false, + "symbol": "aWBTC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/awbtc.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-3", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 24.399503344224805192, + "ccyValue": 32554.581978, + "ethDayChange": -0.000590623028024244, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 1681, + "address": "0x09df6a5ca936be45f5ae45c7e58c9b4602011fcd", + "name": "yearn.fuel", + "buyable": false, + "symbol": "YFUEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00174454, + "ccyValue": 2.23, + "ethDayChange": -0.062831050228310502, + "ccyDayChange": -0.152091 + }, + "tokenlist": false + }, { + "id": 1042, + "address": "0x1846bdfdb6a0f5c473dec610144513bd071999fb", + "name": "IdleDAI v3 [Risk Adjusted]", + "buyable": false, + "symbol": "idleDAISafe", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00077195, + "ccyValue": 1.03, + "ethDayChange": -0.040340626553953257, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1084, + "address": "0x2409d6059e2a8130c099e49f3cb418fd6c3d9aff", + "name": "BTC Fund Active Trading Set", + "buyable": false, + "symbol": "BTCFUND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-44", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.257636307771937256, + "ccyValue": 343.746435, + "ethDayChange": -0.000590623028024243, + "ccyDayChange": 0.037889 + }, + "tokenlist": false + }, { + "id": 1742, + "address": "0xe964d013d193354170ad1d3d8e500f6d26334f45", + "name": "BART-ETH Uniswap pool token", + "buyable": false, + "symbol": "BART-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 510, + "address": "0xee4458e052b533b1aabd493b5f8c4d85d7b263dc", + "name": "Blockpass", + "buyable": false, + "symbol": "PASS", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 6.36742972016E-7, + "ccyValue": 0.000848, + "ethDayChange": 0.479421403382899628, + "ccyDayChange": 0.553114 + }, + "tokenlist": false + }, { + "id": 2272, + "address": "0x70985e557ae0cd6dc88189a532e54fbc61927bad", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2922, + "address": "0xcb33bff24579a712083209cd640aa2f1a913f77a", + "name": "1inch Liquidity Pool (ETH-DAI)", + "buyable": false, + "symbol": "1LP-ETH-DAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2623, + "address": "0xa685a61171bb30d4072b338c80cb7b2c865c873e", + "name": "Aave interest bearing MANA", + "buyable": false, + "symbol": "aMANA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/amana.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-14", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0001215976, + "ccyValue": 0.161678, + "ethDayChange": 0.029662275698575336, + "ccyDayChange": 0.068338 + }, + "tokenlist": false + }, { + "id": 2329, + "address": "0xec0d8d3ed5477106c6d4ea27d90a60e594693c90", + "name": "yearn Gemini dollar", + "buyable": false, + "symbol": "yGUSD", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-6", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1942, + "address": "0x7bb594b3c757801346801f025699e39e7aaf5a49", + "name": "Orb", + "buyable": false, + "symbol": "ORB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1182, + "address": "0x96c5eaffe9950ea7432e202cf79c2ae738503d69", + "name": "Nitrogen", + "buyable": false, + "symbol": "NITRO", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1864, + "address": "0xf54025af2dc86809be1153c1f20d77adb7e8ecf4", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-5", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 9.252900405262749424, + "ccyValue": 12347.53005, + "ethDayChange": 0.05737459678820128, + "ccyDayChange": 0.103496 + }, + "tokenlist": false + }, { + "id": 2673, + "address": "0xf4ef707f3f4166cc79af15959014dbe0ecd7efa3", + "name": " Uniswap V2 ETH-DGTX", + "buyable": false, + "symbol": "ETH-DGTX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "brandColor": "#FF007A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1530, + "address": "0x3bf1b837ccc1f62114a3e74ced4fcfb121d7e52a", + "name": "COVAL-ETH Uniswap pool token", + "buyable": false, + "symbol": "COVAL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 14, + "address": "0x84f7c44b6fed1080f647e354d552595be2cc602f", + "name": "Bigbom", + "buyable": false, + "symbol": "BBO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bbo.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 1.788E-7, + "ccyValue": 0.000238, + "ethDayChange": -0.217985903906441488, + "ccyDayChange": -0.190476 + }, + "tokenlist": false + }, { + "id": 1939, + "address": "0x6dc3536f3906acf3c8056653cb52009e754360d0", + "name": "Drip", + "buyable": false, + "symbol": "DRIP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 338, + "address": "0xbf70a33a13fbe8d0106df321da0cf654d2e9ab50", + "name": "ETH/BTC RSI 70/30 Crossover", + "buyable": false, + "symbol": "ETHBTCRSI703", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-6", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.449897824256, + "ccyValue": 599.902993, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.448114626828370325, + "tokenlist": false + }, { + "id": 621, + "address": "0x8933ea1ce67b946bdf2436ce860ffbb53ce814d2", + "name": "LINK/ETH RSI Ratio Trading", + "buyable": false, + "symbol": "LINKETHRSI", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-1", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.361111852530102436, + "ccyValue": 482.919761, + "ethDayChange": 0.044628397346356977, + "ccyDayChange": 0.087355 + }, + "onchainEthPrice": 0.360092528983032083, + "tokenlist": false + }, { + "id": 1282, + "address": "0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419", + "name": "DIAToken", + "buyable": true, + "symbol": "DIA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dia.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#747DEF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.001434287450068741, + "ccyValue": 1.914063, + "ethDayChange": -0.001123023839584233, + "ccyDayChange": 0.045936 + }, + "onchainEthPrice": 0.001699, + "tokenlist": true + }, { + "id": 1280, + "address": "0x5979f50f1d4c08f9a53863c2f39a7b0492c38d0f", + "name": "pTokens LTC", + "buyable": false, + "symbol": "pLTC", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.09678627, + "ccyValue": 129.32, + "ethDayChange": -0.023485380470972819, + "ccyDayChange": 0.046278 + }, + "onchainEthPrice": 0.09949004, + "tokenlist": false + }, { + "id": 542, + "address": "0xba11d00c5f74255f56a5e366f4f77f5a186d7f55", + "name": "Band Protocol", + "buyable": true, + "symbol": "BAND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/band.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#516FFA", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0067348, + "ccyValue": 8.97, + "ethDayChange": 0.015960174988686076, + "ccyDayChange": 0.051213 + }, + "onchainEthPrice": 0.007723, + "tokenlist": true + }, { + "id": 97, + "address": "0x408e41876cccdc0f92210600ef50372656052a38", + "name": "Republic", + "buyable": true, + "symbol": "REN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ren.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#001B3A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004324, + "ccyValue": 0.576, + "ethDayChange": 0.029497581847319604, + "ccyDayChange": 0.067404 + }, + "onchainEthPrice": 0.0004202, + "tokenlist": true + }, { + "id": 2979, + "address": "0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713", + "name": "Cover Protocol Governance Token", + "buyable": true, + "symbol": "COVER", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cover.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.32906129, + "ccyValue": 438.33, + "ethDayChange": 0.082120640903295203, + "ccyDayChange": 0.124086 + }, + "onchainEthPrice": 0.34425258287915506, + "tokenlist": true + }, { + "id": 1033, + "address": "0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9", + "name": "Swipe", + "buyable": true, + "symbol": "SXP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sxp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF4920", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0009264, + "ccyValue": 1.234, + "ethDayChange": -0.078153919636993253, + "ccyDayChange": -0.035938 + }, + "onchainEthPrice": 0.000841957256483296, + "tokenlist": true + }, { + "id": 2319, + "address": "0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44", + "name": "Keep3rV1", + "buyable": true, + "symbol": "KP3R", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/kp3r.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#63B3E4", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.2526, + "ccyValue": 336.56, + "ethDayChange": 0.075960623893593389, + "ccyDayChange": 0.117957 + }, + "onchainEthPrice": 0.2252, + "tokenlist": true + }, { + "id": 1644, + "address": "0x94d863173ee77439e4292284ff13fad54b3ba182", + "name": "Akropolis Delphi", + "buyable": true, + "symbol": "ADEL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/adel.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#694994", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000942, + "ccyValue": 0.1255, + "ethDayChange": -0.080777836860724586, + "ccyDayChange": -0.044341 + }, + "onchainEthPrice": 0.0000968, + "tokenlist": true + }, { + "id": 647, + "address": "0xc166f976ce9926a3205b145af104eb0e4b38b5c0", + "name": "LINK/ETH Growth Alpha Set", + "buyable": false, + "symbol": "LEGA", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-1", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.393029259811806709, + "ccyValue": 525.603341, + "ethDayChange": 0.044628397346356976, + "ccyDayChange": 0.087355 + }, + "onchainEthPrice": 0.396483766046897616, + "tokenlist": false + }, { + "id": 466, + "address": "0x5b322514ff727253292637d9054301600c2c81e8", + "name": "DAD", + "buyable": false, + "symbol": "DAD", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001052, + "ccyValue": 0.1403, + "ethDayChange": -0.140522875816993464, + "ccyDayChange": -0.10864 + }, + "tokenlist": false + }, { + "id": 901, + "address": "0x07597255910a51509ca469568b048f2597e72504", + "name": "Uptrennd", + "buyable": false, + "symbol": "1UP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/1up.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#279DDA", + "description": "Uptrennd aims to bring blogs, social feeds, videos, music, and news to one all-encompassing social media platform. Uptrennd is an online community that pays users to post content. Users will be paid for creating posts, commenting, sharing content, and engaging with sponsored content. The value of these points comes from funneling advertisement revenue directly into the Uptrennd ecosystem.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000001547486048594, + "ccyValue": 0.002065, + "ethDayChange": -0.056248418682869308, + "ccyDayChange": -0.018069 + }, + "onchainEthPrice": 0.00000158, + "tokenlist": true + }, { + "id": 2981, + "address": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "name": "Lido DAO Token", + "buyable": true, + "symbol": "LDO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ldo.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00A3FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.0011110915705901, + "ccyValue": 1.482757, + "ethDayChange": -0.108873371013491022, + "ccyDayChange": -0.072346 + }, + "onchainEthPrice": 0.00112945, + "tokenlist": true + }, { + "id": 177, + "address": "0x26e75307fc0c021472feb8f727839531f112f317", + "name": "Crypto20", + "buyable": false, + "symbol": "C20", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001089588207671229, + "ccyValue": 1.451965, + "ethDayChange": -0.010077240490272895, + "ccyDayChange": 0.028713 + }, + "onchainEthPrice": 0.001093656196706026, + "tokenlist": false + }, { + "id": 2122, + "address": "0x362bc847a3a9637d3af6624eec853618a43ed7d2", + "name": "Parsiq Token", + "buyable": true, + "symbol": "PRQ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/prq.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#005CC7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001009217215949739, + "ccyValue": 1.345084, + "ethDayChange": 0.144743385340160615, + "ccyDayChange": 0.19034 + }, + "onchainEthPrice": 0.00091896, + "tokenlist": true + }, { + "id": 322, + "address": "0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d", + "name": "Quantstamp Token", + "buyable": true, + "symbol": "QSP", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000213, + "ccyValue": 0.028314, + "ethDayChange": 0.017190181310338668, + "ccyDayChange": 0.051549 + }, + "onchainEthPrice": 0.000025268853511024, + "tokenlist": true + }, { + "id": 2007, + "address": "0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa", + "name": "PolkastarterToken", + "buyable": true, + "symbol": "POLS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pols.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF3465", + "description": "Polkastarter enables projects to raise capital on a decentralised, permissionless and interoperable environment based on Polkadot.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000925596992499569, + "ccyValue": 1.233635, + "ethDayChange": 0.025889927563282872, + "ccyDayChange": 0.066265 + }, + "onchainEthPrice": 0.000859955914863502, + "tokenlist": true + }, { + "id": 2125, + "address": "0x78f225869c08d478c34e5f645d07a87d3fe8eb78", + "name": "PieDAO DEFI Large Cap", + "buyable": true, + "symbol": "DEFI+L", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/defi-plus-l.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FC02A7", + "description": "Blue chips only. DEFI+L represents DeFi’s biggest and best. DEFI+L actively rebalances, constantly locking in profits as market prices fluctuate. These large cap DeFi projects manage billions of dollars of assets and provide a wide range of financial tools, from synthetic derivatives to decentralized loans. Tokens are fully backed, with the underlying assets redeemable at any time.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002467654995936841, + "ccyValue": 3.28818, + "ethDayChange": 0.016591961677545749, + "ccyDayChange": 0.053904 + }, + "onchainEthPrice": 0.00215001, + "tokenlist": true + }, { + "id": 1612, + "address": "0xef9cd7882c067686691b6ff49e650b43afbbcc6b", + "name": "FinNexus", + "buyable": true, + "symbol": "FNX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/fnx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#244294", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0001727, + "ccyValue": 0.230081, + "ethDayChange": 0.162180349932705249, + "ccyDayChange": 0.205244 + }, + "onchainEthPrice": 0.00016591, + "tokenlist": true + }, { + "id": 622, + "address": "0x2bf417fda6e73b8ea605df0f33ad029f8d4b795a", + "name": "ETH Moonshot X Disc Yield Set", + "buyable": false, + "symbol": "ETHMOONX2", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-19", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.58005728, + "ccyValue": 773.460283, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.58005728, + "tokenlist": false + }, { + "id": 775, + "address": "0x6e6b513e1cd542df460125c873eb2cc6cc7f9e33", + "name": "USDT", + "buyable": false, + "symbol": "USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 860, + "address": "0x8a77e40936bbc27e80e9a3f526368c967869c86d", + "name": "Merculet", + "buyable": false, + "symbol": "MVP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.535E-7, + "ccyValue": 0.000337, + "ethDayChange": -0.14070003166651702, + "ccyDayChange": -0.108466 + }, + "tokenlist": false + }, { + "id": 1320, + "address": "0x9b85babc0cc89899ccd47e9226a0b1fae577b19e", + "name": "PPBToken", + "buyable": false, + "symbol": "PPB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1675, + "address": "0x6dddf4111ad997a8c7be9b2e502aa476bf1f4251", + "name": "UniMonitor.io", + "buyable": false, + "symbol": "UNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002699, + "ccyValue": 0.019787, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1833, + "address": "0x7c5d5100b339fe7d995a893af6cb496b9474373c", + "name": "Loon Network", + "buyable": false, + "symbol": "LOON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00006868, + "ccyValue": 0.0915, + "ethDayChange": -0.028021511463345599, + "ccyDayChange": 0.013704 + }, + "tokenlist": false + }, { + "id": 1551, + "address": "0xbbb38be7c6d954320c0297c06ab3265a950cdf89", + "name": "Wrapped BOMB", + "buyable": false, + "symbol": "WBOMB", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 484, + "address": "0x23352036e911a22cfc692b5e2e196692658aded9", + "name": "Friendz Coin", + "buyable": false, + "symbol": "FDZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 9.78199809428E-7, + "ccyValue": 0.001304, + "ethDayChange": -0.129769077081753348, + "ccyDayChange": -0.095073 + }, + "tokenlist": false + }, { + "id": 1616, + "address": "0xd94cfa225f71acf73bbec4a08db58ba77558d8e7", + "name": "Ruby Finance", + "buyable": false, + "symbol": "RUBY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2940, + "address": "0x63ae7457b8be660daaf308a07db6bccb733b92df", + "name": "Convex Strategies ", + "buyable": false, + "symbol": "DHPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 491, + "address": "0xcce629ba507d7256cce7d30628279a155c5309c5", + "name": "Asobicoin promo", + "buyable": false, + "symbol": "ABXP", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 685, + "address": "0xb27de0ba2abfbfdf15667a939f041b52118af5ba", + "name": "UBT-ETH Uniswap pool token", + "buyable": false, + "symbol": "UBT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2042, + "address": "0x4a7d4be868e0b811ea804faf0d3a325c3a29a9ad", + "name": "Uniswap V2 REQ-ETH", + "buyable": false, + "symbol": "REQ-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2511, + "address": "0xd16c79c8a39d44b2f3eb45d2019cd6a42b03e2a9", + "name": "uUSDwETH Synthetic Token Expiring 31 December 2020", + "buyable": false, + "symbol": "uUSDwETH-DEC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0012602, + "ccyValue": 1.74, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1793, + "address": "0x4d5ef58aac27d99935e5b6b4a6778ff292059991", + "name": "Uniswap V2 DPI-ETH", + "buyable": false, + "symbol": "DPI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-31", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.998831299709398327, + "ccyValue": 1331.553026, + "ethDayChange": 0.005204557580817332, + "ccyDayChange": 0.045885 + }, + "tokenlist": false + }, { + "id": 2772, + "address": "0xe0bdaafd0aab238c55d68ad54e616305d4a21772", + "name": "refract", + "buyable": false, + "symbol": "RFR", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.2454578725272571, + "ccyValue": 327.075552, + "ethDayChange": -0.016628944165957824, + "ccyDayChange": 0.006665 + }, + "tokenlist": false + }, { + "id": 375, + "address": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", + "name": "Tokenize Emblem", + "buyable": true, + "symbol": "TKX", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tkx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F98650", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00165083501532618, + "ccyValue": 2.199757, + "ethDayChange": -0.010118656525307158, + "ccyDayChange": 0.037621 + }, + "onchainEthPrice": 0.00155527, + "tokenlist": true + }, { + "id": 932, + "address": "0xc0134b5b924c2fca106efb33c45446c466fbe03e", + "name": "aleph.im", + "buyable": false, + "symbol": "ALEPH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001264, + "ccyValue": 0.1624, + "ethDayChange": -0.018633540372670807, + "ccyDayChange": -0.018138 + }, + "onchainEthPrice": 0.0001327, + "tokenlist": false + }, { + "id": 1536, + "address": "0x1695936d6a953df699c38ca21c2140d497c08bd9", + "name": "SynLev", + "buyable": true, + "symbol": "SYN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/syn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#003861", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000139029758370026, + "ccyValue": 0.185536, + "ethDayChange": -0.142406935386188327, + "ccyDayChange": -0.107515 + }, + "onchainEthPrice": 0.00015828, + "tokenlist": true + }, { + "id": 778, + "address": "0xed91879919b71bb6905f23af0a68d231ecf87b14", + "name": "DMM: Governance", + "buyable": true, + "symbol": "DMG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dmg.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#337CCB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000216689533995854, + "ccyValue": 0.288804, + "ethDayChange": -0.038687130136843973, + "ccyDayChange": 0.003387 + }, + "onchainEthPrice": 0.00025574, + "tokenlist": true + }, { + "id": 2788, + "address": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", + "name": "UNION Protocol Governance Token", + "buyable": true, + "symbol": "UNN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/unn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#7E6CFF", + "description": "UNION is a technology platform that combines bundled protection and a liquid secondary market with a multi-token model. DeFi participants manage their multi-layer risks across smart contracts and protocols in one scalable system. UNION decreases the barriers to entry for retail users and lays the foundation for institutional investors.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000022563791088013, + "ccyValue": 0.030111, + "ethDayChange": 0.039694167505471197, + "ccyDayChange": 0.082701 + }, + "onchainEthPrice": 0.000020884396188825, + "tokenlist": true + }, { + "id": 251, + "address": "0x4946fcea7c692606e8908002e55a582af44ac121", + "name": "FOAM Token", + "buyable": true, + "symbol": "FOAM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/foam.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#806563", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001781, + "ccyValue": 0.023923, + "ethDayChange": -0.014058687630871131, + "ccyDayChange": 0.033436 + }, + "onchainEthPrice": 0.00001754, + "tokenlist": true + }, { + "id": 112, + "address": "0xaaaf91d9b90df800df4f55c205fd6989c977e73a", + "name": "Monolith TKN", + "buyable": true, + "symbol": "TKN", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tkn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000319147540314297, + "ccyValue": 0.425268, + "ethDayChange": -0.012662884611074657, + "ccyDayChange": 0.024009 + }, + "onchainEthPrice": 0.0003310290917419, + "tokenlist": true + }, { + "id": 2100, + "address": "0xad32a8e6220741182940c5abf610bde99e737b2d", + "name": "PieDAO DOUGH v2", + "buyable": true, + "symbol": "DOUGH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dough.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FC02A7", + "description": "DOUGH is the PieDAO governance token. Owning DOUGH makes you a member of PieDAO. Holders are capable of participating in the DAO’s governance votes and proposing votes of their own.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000857955535674507, + "ccyValue": 1.144945, + "ethDayChange": 0.042179426610720733, + "ccyDayChange": 0.084581 + }, + "onchainEthPrice": 0.00081833, + "tokenlist": true + }, { + "id": 1348, + "address": "0xc75f15ada581219c95485c578e124df3985e4ce0", + "name": "zzz.finance", + "buyable": false, + "symbol": "ZZZ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/zzz.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0E365D", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00079981, + "ccyValue": 0.862042, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "onchainEthPrice": 0.00079981, + "tokenlist": false + }, { + "id": 2503, + "address": "0xfa5047c9c78b8877af97bdcb85db743fd7313d4a", + "name": "ROOK", + "buyable": true, + "symbol": "ROOK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rook.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.274778120332167575, + "ccyValue": 366.692608, + "ethDayChange": 0.077086412323529774, + "ccyDayChange": 0.120908 + }, + "onchainEthPrice": 0.31441442, + "tokenlist": true + }, { + "id": 53, + "address": "0xdb25f211ab05b1c97d595516f45794528a807ad8", + "name": "STASIS", + "buyable": true, + "symbol": "EURS", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/eurs.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#396ADC", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000908713434401173, + "ccyValue": 1.212682, + "ethDayChange": -0.049236249994845004, + "ccyDayChange": -0.012428 + }, + "onchainEthPrice": 0.0008785483, + "tokenlist": true + }, { + "id": 128, + "address": "0xe41d2489571d322189246dafa5ebde1f4699f498", + "name": "0x Protocol", + "buyable": true, + "symbol": "ZRX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/zrx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333332", + "category": "tokens", + "refundable": true, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000486307693483444, + "ccyValue": 0.648011, + "ethDayChange": 0.132370170640907186, + "ccyDayChange": 0.169524 + }, + "onchainEthPrice": 0.00046832848362503, + "tokenlist": true + }, { + "id": 150, + "address": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", + "name": "Ampleforth", + "buyable": true, + "symbol": "AMPL", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ampl.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000770923032838376, + "ccyValue": 1.02859, + "ethDayChange": -0.027900545881788845, + "ccyDayChange": 0.009527 + }, + "onchainEthPrice": 0.0008078239, + "tokenlist": true + }, { + "id": 994, + "address": "0xea097a2b1db00627b2fa17460ad260c016016977", + "name": "Upfiring", + "buyable": true, + "symbol": "UFR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ufr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#E21F26", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000033781333456326, + "ccyValue": 0.045024, + "ethDayChange": -0.079441491945901905, + "ccyDayChange": -0.043203 + }, + "onchainEthPrice": 0.000042549473923556, + "tokenlist": true + }, { + "id": 770, + "address": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "name": "Chi Gastoken by 1inch", + "buyable": true, + "symbol": "CHI", + "decimals": 0, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/chi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F50B11", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001829731444674278, + "ccyValue": 2.438666, + "ethDayChange": 0.041730625586790697, + "ccyDayChange": 0.082729 + }, + "onchainEthPrice": 0.00152801, + "tokenlist": true + }, { + "id": 1428, + "address": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "name": "Hakka Finance", + "buyable": true, + "symbol": "HAKKA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hakka.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3C8048", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000034823499865277, + "ccyValue": 0.046403, + "ethDayChange": -0.005894951034056523, + "ccyDayChange": 0.037078 + }, + "onchainEthPrice": 0.00003437, + "tokenlist": true + }, { + "id": 1771, + "address": "0x69692d3345010a207b759a7d1af6fc7f38b35c5e", + "name": "chads.vc", + "buyable": true, + "symbol": "CHADS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00001348, + "ccyValue": 0.01797, + "ethDayChange": -0.024418312693959918, + "ccyDayChange": 0.014223 + }, + "onchainEthPrice": 0.00001706, + "tokenlist": true + }, { + "id": 655, + "address": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "name": "USDC-ETH Uniswap pool token", + "buyable": false, + "symbol": "USDC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-2", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 75329.167481534696047623, + "ccyValue": 100476016.199169, + "ethDayChange": -0.019118293479325639, + "ccyDayChange": 0.018227 + }, + "onchainEthPrice": 80068.427441431587289517, + "tokenlist": false + }, { + "id": 91, + "address": "0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec", + "name": "Polymath", + "buyable": true, + "symbol": "POLY", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/poly.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#4C5A95", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000071686739262913, + "ccyValue": 0.095523, + "ethDayChange": 0.032037063216592237, + "ccyDayChange": 0.07037 + }, + "onchainEthPrice": 0.0000702797, + "tokenlist": true + }, { + "id": 196, + "address": "0x6c6ee5e31d828de241282b9606c8e98ea48526e2", + "name": "HoloToken", + "buyable": true, + "symbol": "HOT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hot.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00A6AE", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 5.64E-7, + "ccyValue": 0.00075, + "ethDayChange": 0.140292809488125836, + "ccyDayChange": 0.179245 + }, + "onchainEthPrice": 5.70309515538E-7, + "tokenlist": true + }, { + "id": 332, + "address": "0x4f9254c83eb525f9fcf346490bbb3ed28a81c667", + "name": "CelerToken", + "buyable": true, + "symbol": "CELR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/celr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#D57227", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000615, + "ccyValue": 0.008198, + "ethDayChange": 0.106115107913669065, + "ccyDayChange": 0.148662 + }, + "onchainEthPrice": 0.00000604, + "tokenlist": true + }, { + "id": 1625, + "address": "0x4b4701f3f827e1331fb22ff8e2beac24b17eb055", + "name": "DistX", + "buyable": false, + "symbol": "DISTX", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.275E-7, + "ccyValue": 0.000701, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "onchainEthPrice": 5.566E-7, + "tokenlist": false + }, { + "id": 1344, + "address": "0x539f3615c1dbafa0d008d87504667458acbd16fa", + "name": "FERA", + "buyable": false, + "symbol": "FERA", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 9.30230088396E-7, + "ccyValue": 0.00124, + "ethDayChange": -0.007392232967532302, + "ccyDayChange": 0.032473 + }, + "onchainEthPrice": 0.00000108, + "tokenlist": false + }, { + "id": 762, + "address": "0x43ae24960e5534731fc831386c07755a2dc33d47", + "name": "SNX-ETH Uniswap pool token", + "buyable": false, + "symbol": "SNX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-11", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.322522088571174175, + "ccyValue": 430.057568, + "ethDayChange": 0.041008243348963526, + "ccyDayChange": 0.081337 + }, + "onchainEthPrice": 0.32067136942245309, + "tokenlist": false + }, { + "id": 56, + "address": "0x543ff227f64aa17ea132bf9886cab5db55dcaddf", + "name": "DAOstack", + "buyable": true, + "symbol": "GEN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gen.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008978, + "ccyValue": 0.119351, + "ethDayChange": 0.032371718212426177, + "ccyDayChange": 0.06819 + }, + "onchainEthPrice": 0.0000737023, + "tokenlist": true + }, { + "id": 98, + "address": "0x1985365e9f78359a9b6ad760e32412f4a445e862", + "name": "Augur", + "buyable": true, + "symbol": "REP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rep-v1.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#602A52", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.014600668087745685, + "ccyValue": 19.456579, + "ethDayChange": -0.022832623449969055, + "ccyDayChange": 0.012671 + }, + "onchainEthPrice": 0.017539621177320112, + "tokenlist": true + }, { + "id": 3187, + "address": "0x98484d4259a70b73af58180521f2eb71a3f00ae6", + "name": "Farming: 1inch Liquidity Pool (ETH-WBTC)", + "buyable": false, + "symbol": "farm-1LP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2311, + "address": "0x5448256b451b2098f848da940d17a4ef57bd2678", + "name": "EWTB-QNT Uniswap pool token", + "buyable": false, + "symbol": "EWTB-QNT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3034, + "address": "0xa3d87fffce63b53e0d54faa1cc983b7eb0b74a9c", + "name": "Curve.fi ETH/sETH", + "buyable": false, + "symbol": "eCRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.004327271351050894, + "ccyValue": 1336.139143, + "ethDayChange": 0.003342399600760936, + "ccyDayChange": 0.039631 + }, + "tokenlist": false + }, { + "id": 1398, + "address": "0x0c9c5daf1d7cd8b10e9fc5e7a10762f0a8d1c335", + "name": "VXV-ETH Uniswap pool token", + "buyable": false, + "symbol": "VXV-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1298, + "address": "0x9414d373b476229be6cec84f6e4843a9f9407fe8", + "name": "ALEX-ETH Uniswap pool token", + "buyable": false, + "symbol": "ALEX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "brandColor": "", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1724, + "address": "0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7", + "name": "Predix Network", + "buyable": false, + "symbol": "PRDX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000427528120031532, + "ccyValue": 0.569809, + "ethDayChange": -0.009113369810013071, + "ccyDayChange": 0.030184 + }, + "tokenlist": false + }, { + "id": 1168, + "address": "0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40", + "name": "Aave Interest bearing ENJ V1", + "buyable": false, + "symbol": "aENJ V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/aenj.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-18", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000282992992707559, + "ccyValue": 0.377173, + "ethDayChange": -0.041400912762080419, + "ccyDayChange": -0.006409 + }, + "tokenlist": false + }, { + "id": 2384, + "address": "0xc9608b8dcee2006a5ab57b1cde0b1aa2e40391b0", + "name": "Value Liquidity Provider", + "buyable": false, + "symbol": "VLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1543, + "address": "0x334a5d897f1820936ae532651305672f5f466bf1", + "name": "Mooniswap V1 (ETH-BAND)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1247, + "address": "0x9866772a9bdb4dc9d2c5a4753e8658b8b0ca1fc3", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-19", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 59.131012550376689082, + "ccyValue": 78816.739189, + "ethDayChange": -0.00681344564045373, + "ccyDayChange": 0.029935 + }, + "tokenlist": false + }, { + "id": 1917, + "address": "0x0b342c51d1592c41068d5d4b4da4a68c0a04d5a4", + "name": "OneSwap", + "buyable": false, + "symbol": "ONES", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.000455, + "ccyValue": 0.604829, + "ethDayChange": 0.011898143000111198, + "ccyDayChange": 0.046326 + }, + "tokenlist": false + }, { + "id": 2117, + "address": "0x164ed0df02b3747315b50b806b79962ad9517578", + "name": "Uniswap V2 YELD-ETH", + "buyable": false, + "symbol": "YELD-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1884, + "address": "0x2994529c0652d127b7842094103715ec5299bbed", + "name": "yearn Curve.fi yDAI/yUSDC/yUSDT/yBUSD", + "buyable": false, + "symbol": "yyDAI+yUSDC+", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-51", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 303, + "address": "0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e", + "name": "UniBright", + "buyable": true, + "symbol": "UBT", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ubt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0C7C92", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0005202314, + "ccyValue": 0.691706, + "ethDayChange": -0.015853771488905724, + "ccyDayChange": 0.017631 + }, + "onchainEthPrice": 0.000471692351660763, + "tokenlist": true + }, { + "id": 1908, + "address": "0x8daebade922df735c38c80c7ebd708af50815faa", + "name": "tBTC", + "buyable": true, + "symbol": "tBTC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tbtc.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 18, + "brandColor": "#333332", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 24.81, + "ccyValue": 33092.36, + "ethDayChange": 0.002224607381236788, + "ccyDayChange": 0.046498 + }, + "onchainEthPrice": 23.464366, + "tokenlist": true + }, { + "id": 49, + "address": "0xa6c040045d962e4b8efa00954c7d23ccd0a2b8ad", + "name": "ETH Enthusiast", + "buyable": false, + "symbol": "ETHBTC7525", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ethbtc7525.png", + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-14", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.574089714342026936, + "ccyValue": 765.57043, + "ethDayChange": -0.000939870530355185, + "ccyDayChange": 0.036794 + }, + "onchainEthPrice": 0.594986854445841836, + "tokenlist": false + }, { + "id": 2460, + "address": "0xf406f7a9046793267bc276908778b29563323996", + "name": "APY.Vision", + "buyable": true, + "symbol": "VISION", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vision.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#CA09D6", + "description": "APY.vision is a tool to help liquidity providers with analytics. The VISION tokens unlocks pro access to the Vision suite of tools.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00114704, + "ccyValue": 1.52, + "ethDayChange": -0.024258260787141643, + "ccyDayChange": 0.008617 + }, + "onchainEthPrice": 0.00118053, + "tokenlist": true + }, { + "id": 1288, + "address": "0xe17f017475a709de58e976081eb916081ff4c9d5", + "name": "RMPL", + "buyable": true, + "symbol": "RMPL", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rmpl.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#20A4CE", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00087352, + "ccyValue": 1.16, + "ethDayChange": 0.650165592754106306, + "ccyDayChange": 0.708883 + }, + "onchainEthPrice": 0.0006676, + "tokenlist": true + }, { + "id": 494, + "address": "0x8a9c67fee641579deba04928c4bc45f66e26343a", + "name": "Jarvis Reward Token", + "buyable": true, + "symbol": "JRT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/jrt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#4DE56C", + "description": "JRT is used to govern and secure the Jarvis Network, a set of protocols to gain exposure to the price of any assets against liquidity pools.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000074243808332738, + "ccyValue": 0.098931, + "ethDayChange": 0.021844484434806973, + "ccyDayChange": 0.061833 + }, + "onchainEthPrice": 0.00008644, + "tokenlist": true + }, { + "id": 570, + "address": "0x171664573e3969874dba31c35082151ea4f181f3", + "name": "Ciaone Token (Ciao.one)", + "buyable": false, + "symbol": "CIAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1322, + "address": "0x9b53e429b0badd98ef7f01f03702986c516a5715", + "name": "hybrix hydra", + "buyable": false, + "symbol": "HY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00026758, + "ccyValue": 0.358661, + "ethDayChange": 0.144727272727272727, + "ccyDayChange": 0.201287 + }, + "tokenlist": false + }, { + "id": 2525, + "address": "0x8fcb2fe19c25947d35f22547ab46ee4ba57b845b", + "name": "HBURN-ETH Uniswap pool token", + "buyable": false, + "symbol": "HBURN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1618, + "address": "0x76e0126bf6e1bf99d8d39d48581c82487fee971e", + "name": "weedfinance", + "buyable": false, + "symbol": "WFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 919, + "address": "0x58091522ed8032129e3ee55cc08e5d18c3ec7081", + "name": "WeGold Token", + "buyable": false, + "symbol": "WGD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 281, + "address": "0x2c5a9980b41861d91d30d0e0271d1c093452dca5", + "name": "ETH 12 EMA Crossover Set", + "buyable": false, + "symbol": "ETH12EMACO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-10", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.487812084432, + "ccyValue": 650.458646, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.444660719671, + "tokenlist": false + }, { + "id": 2581, + "address": "0xee06a81a695750e71a662b51066f2c74cf4478a0", + "name": "decentral.games", + "buyable": true, + "symbol": "DG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dg.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0186F4", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.04593747, + "ccyValue": 61.06, + "ethDayChange": -0.000539355549531289, + "ccyDayChange": 0.032291 + }, + "onchainEthPrice": 0.05477525, + "tokenlist": true + }, { + "id": 10, + "address": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", + "name": "AirSwap", + "buyable": true, + "symbol": "AST", + "decimals": 4, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ast.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0061FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00010412, + "ccyValue": 0.1387, + "ethDayChange": -0.032056842025020382, + "ccyDayChange": 0.003596 + }, + "onchainEthPrice": 0.000114069263633523, + "tokenlist": true + }, { + "id": 424, + "address": "0x763fa6806e1acf68130d2d0f0df754c93cc546b2", + "name": "LITION", + "buyable": true, + "symbol": "LIT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006571, + "ccyValue": 0.087528, + "ethDayChange": 0.321785344619440298, + "ccyDayChange": 0.373937 + }, + "onchainEthPrice": 0.000043124381730731, + "tokenlist": true + }, { + "id": 89, + "address": "0xb97048628db6b661d4c2aa833e95dbe1a905b280", + "name": "TenX", + "buyable": true, + "symbol": "PAY", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pay.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#302C2C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00003697, + "ccyValue": 0.04925, + "ethDayChange": 0.018737944337282998, + "ccyDayChange": 0.062499 + }, + "onchainEthPrice": 0.0000382219, + "tokenlist": true + }, { + "id": 1277, + "address": "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1", + "name": "UniTrade", + "buyable": true, + "symbol": "TRADE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.000115, + "ccyValue": 0.1512, + "ethDayChange": 0, + "ccyDayChange": 0.020932 + }, + "onchainEthPrice": 0.000114, + "tokenlist": true + }, { + "id": 2046, + "address": "0x4da27a545c0c5b758a6ba100e3a049001de870f5", + "name": "Staked Aave", + "buyable": false, + "symbol": "stkAAVE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#B6509E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.2204, + "ccyValue": 293.74, + "ethDayChange": -0.034180543382997371, + "ccyDayChange": 0.001056 + }, + "onchainEthPrice": 0.19404914374003063, + "tokenlist": false + }, { + "id": 1128, + "address": "0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9", + "name": "r/ethtrader Donut", + "buyable": true, + "symbol": "DONUT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/donut.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF6CB2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00000279680872466, + "ccyValue": 0.003728, + "ethDayChange": 0.414686496152268142, + "ccyDayChange": 0.470611 + }, + "onchainEthPrice": 0.00000185, + "tokenlist": true + }, { + "id": 1149, + "address": "0x0d438f3b5175bebc262bf23753c1e53d03432bde", + "name": "Wrapped NXM", + "buyable": true, + "symbol": "wNXM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/wnxm.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.034452117640425191, + "ccyValue": 45.976502, + "ethDayChange": 0.069941541628111522, + "ccyDayChange": 0.114312 + }, + "onchainEthPrice": 0.03702, + "tokenlist": true + }, { + "id": 2571, + "address": "0x875773784af8135ea0ef43b5a374aad105c5d39e", + "name": "Idle", + "buyable": true, + "symbol": "IDLE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/idle.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#306CD9", + "description": "IDLE is the governance token of Idle Protocol. It allows community participants to vote on-chain proposals and drive the protocol’s future developments.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.005813267975961737, + "ccyValue": 7.757832, + "ethDayChange": -0.123895943415546342, + "ccyDayChange": -0.088251 + }, + "onchainEthPrice": 0.006821870201794206, + "tokenlist": true + }, { + "id": 3120, + "address": "0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f", + "name": "Stake DAO Token", + "buyable": false, + "symbol": "SDT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00759394, + "ccyValue": 10.12, + "ethDayChange": -0.011719171940619392, + "ccyDayChange": 0.024291 + }, + "onchainEthPrice": 0.00672838, + "tokenlist": false + }, { + "id": 1856, + "address": "0x7240ac91f01233baaf8b064248e80feaa5912ba3", + "name": "Octo.fi", + "buyable": true, + "symbol": "OCTO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/octo.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#A4C0F0", + "description": "An open source platform for aggregating thousands of decentralized finance investment opportunities. Track your portfolio, explore the market, buy and sell directly, participate in governance, and interface with tentacles (oracle aggregators).", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.049817009286722285, + "ccyValue": 66.481018, + "ethDayChange": 0.320677432258125093, + "ccyDayChange": 0.376704 + }, + "onchainEthPrice": 0.03391828, + "tokenlist": true + }, { + "id": 2705, + "address": "0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d", + "name": "Yearn Ecosystem Token Index", + "buyable": true, + "symbol": "YETI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yeti.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000979594285476912, + "ccyValue": 1.305321, + "ethDayChange": 0.013456826485689564, + "ccyDayChange": 0.053115 + }, + "onchainEthPrice": 0.00100168, + "tokenlist": true + }, { + "id": 1166, + "address": "0xfca59cd816ab1ead66534d82bc21e7515ce441cf", + "name": "Rarible", + "buyable": true, + "symbol": "RARI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rari.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#689DF7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.003686861764582384, + "ccyValue": 4.920133, + "ethDayChange": -0.034304368182261228, + "ccyDayChange": 0.005654 + }, + "onchainEthPrice": 0.004134045862423863, + "tokenlist": true + }, { + "id": 2091, + "address": "0xfef4185594457050cc9c23980d301908fe057bb1", + "name": "VIDT Datalink", + "buyable": true, + "symbol": "VIDT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vidt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#02C3D2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0004593, + "ccyValue": 0.6126, + "ethDayChange": 0.024561115592559567, + "ccyDayChange": 0.065658 + }, + "onchainEthPrice": 0.0004418075, + "tokenlist": true + }, { + "id": 3202, + "address": "0x7d4b8cce0591c9044a22ee543533b72e976e36c3", + "name": "Change COIN", + "buyable": false, + "symbol": "CAG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000029920146374186, + "ccyValue": 0.039869, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1619, + "address": "0x538a151dd910c1d1227719bd400d6c4f99ea06d0", + "name": "Cryptochrome", + "buyable": false, + "symbol": "CHM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002022, + "ccyValue": 0.026875, + "ethDayChange": 0, + "ccyDayChange": 0.038046 + }, + "tokenlist": false + }, { + "id": 2941, + "address": "0x0054c61a19e307ddd3ff81746487d7526f8c4a76", + "name": "iFUND-ETH Uniswap pool token", + "buyable": false, + "symbol": "iFUND-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3177, + "address": "0x79256db1bdb6259315a1a3d7dd237f69cadfd8fc", + "name": "Typhoon", + "buyable": false, + "symbol": "PHOON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.27605619, + "ccyValue": 367.79, + "ethDayChange": -0.392481976232394366, + "ccyDayChange": -0.369823 + }, + "tokenlist": false + }, { + "id": 2601, + "address": "0x6179078872605396ee62960917128f9477a5ddbb", + "name": "Aave Interest bearing UniETH", + "buyable": false, + "symbol": "aUniETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3194, + "address": "0x380291a9a8593b39f123cf39cc1cc47463330b1f", + "name": "Elite Swap", + "buyable": false, + "symbol": "ELT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.773E-7, + "ccyValue": 0.001033, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 127, + "address": "0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27", + "name": "Zilliqa", + "buyable": false, + "symbol": "ZIL", + "decimals": 12, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/zil.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000499767, + "ccyValue": 0.06645, + "ethDayChange": 0.001388065527179002, + "ccyDayChange": 0.038314 + }, + "tokenlist": false + }, { + "id": 62, + "address": "0x00e150d741eda1d49d341189cae4c08a73a49c95", + "name": "Infinitus", + "buyable": false, + "symbol": "INF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000011514765196185, + "ccyValue": 0.015344, + "ethDayChange": -0.035250706197059193, + "ccyDayChange": 0.000587 + }, + "tokenlist": false + }, { + "id": 926, + "address": "0x72cd8f4504941bf8c5a21d1fd83a96499fd71d2c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-7", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.111911099967983769, + "ccyValue": 149.235284, + "ethDayChange": -0.041301656235279805, + "ccyDayChange": -0.003979 + }, + "tokenlist": false + }, { + "id": 411, + "address": "0x10ef64cb79fd4d75d4aa7e8502d95c42124e434b", + "name": "CoronaCoin", + "buyable": false, + "symbol": "NCOV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.7E-9, + "ccyValue": 0.000003, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 579, + "address": "0x8179cd1be3035c813128edce57b8c4c723e81896", + "name": "Fantastic12 Squad Share", + "buyable": false, + "symbol": "F12-SHARE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2840, + "address": "0x985dd3d42de1e256d09e1c10f112bccb8015ad41", + "name": "Ocean Protocol", + "buyable": false, + "symbol": "OCEAN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ocean.png", + "sendable": false, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#332B63", + "displayAddress": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000421205845357813, + "ccyValue": 0.561383, + "ethDayChange": -0.003293097195764291, + "ccyDayChange": 0.03395 + }, + "tokenlist": false + }, { + "id": 135, + "address": "0xc11b1268c1a384e55c48c2391d8d480264a3a7f4", + "name": "Compound Wrapped BTC", + "buyable": false, + "symbol": "cWBTC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/cwbtc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867639, + "ethValue": 0.492735448115326381, + "ccyValue": 655.146905, + "ethDayChange": -0.006648648830247356, + "ccyDayChange": 0.034366 + }, + "onchainEthPrice": 0.555863587997025888, + "tokenlist": false + }, { + "id": 1013, + "address": "0x88d97d199b9ed37c29d846d00d443de980832a22", + "name": "UMA-ETH Uniswap pool token", + "buyable": false, + "symbol": "UMA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-18", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.205813196751945473, + "ccyValue": 274.312694, + "ethDayChange": -0.015166208211845323, + "ccyDayChange": 0.023242 + }, + "onchainEthPrice": 0.246982365090645354, + "tokenlist": false + }, { + "id": 157, + "address": "0x23b608675a2b2fb1890d3abbd85c5775c51691d5", + "name": "Unisocks Edition 0", + "buyable": false, + "symbol": "SOCKS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.487034, + "ccyValue": 12638.65, + "ethDayChange": 0.24012478849850145, + "ccyDayChange": 0.28533 + }, + "onchainEthPrice": 9.082405, + "tokenlist": false + }, { + "id": 1452, + "address": "0x196f4727526ea7fb1e17b2071b3d8eaa38486988", + "name": "Reserve", + "buyable": true, + "symbol": "RSV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rsv.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#303030", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00075081123580728, + "ccyValue": 1.000681, + "ethDayChange": -0.038075108186386173, + "ccyDayChange": 0.004046 + }, + "onchainEthPrice": 0.00087572, + "tokenlist": true + }, { + "id": 102, + "address": "0x4156d3342d5c385a87d264f90653733592000581", + "name": "Salt", + "buyable": true, + "symbol": "SALT", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/salt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00D5DB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000343448432826903, + "ccyValue": 0.457673, + "ethDayChange": -0.003040077839025213, + "ccyDayChange": 0.033183 + }, + "onchainEthPrice": 0.000336741128072203, + "tokenlist": true + }, { + "id": 1518, + "address": "0x3d658390460295fb963f54dc0899cfb1c30776df", + "name": "CircuitsOfValue", + "buyable": false, + "symbol": "Coval", + "decimals": 8, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 7.50866189821E-7, + "ccyValue": 0.001001, + "ethDayChange": -0.044820275894571773, + "ccyDayChange": -0.006944 + }, + "onchainEthPrice": 9.514E-7, + "tokenlist": false + }, { + "id": 673, + "address": "0xc2adda861f89bbb333c90c492cb837741916a225", + "name": "MKR-ETH Uniswap pool token", + "buyable": false, + "symbol": "MKR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-4", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 2.396220516654524459, + "ccyValue": 3194.163669, + "ethDayChange": -0.005618704559081791, + "ccyDayChange": 0.031281 + }, + "onchainEthPrice": 2.753959234657957577, + "tokenlist": false + }, { + "id": 88, + "address": "0x8e870d67f660d95d5be530380d0ec0bd388289e1", + "name": "Paxos Standard", + "buyable": true, + "symbol": "PAX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pax.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00845D", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000749679521033514, + "ccyValue": 0.999009, + "ethDayChange": -0.03928305384145546, + "ccyDayChange": -0.003549 + }, + "onchainEthPrice": 0.0007558894, + "tokenlist": true + }, { + "id": 1047, + "address": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "name": "Gastoken.io", + "buyable": false, + "symbol": "GST2", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gst2.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.10916997, + "ccyValue": 145.42, + "ethDayChange": -0.001693381610285387, + "ccyDayChange": 0.041019 + }, + "onchainEthPrice": 0.11648856, + "tokenlist": false + }, { + "id": 2595, + "address": "0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a", + "name": "BAC", + "buyable": true, + "symbol": "BAC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bac.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1422B5", + "description": "Fairly distributed & censorship resistant stablecoin with an algorithmic central bank.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000303349488867747, + "ccyValue": 0.404821, + "ethDayChange": -0.14223246467482822, + "ccyDayChange": -0.103932 + }, + "onchainEthPrice": 0.000375923522186798, + "tokenlist": true + }, { + "id": 2918, + "address": "0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3", + "name": "Dynamic Set Dollar", + "buyable": true, + "symbol": "DSD", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000153016765493875, + "ccyValue": 0.204202, + "ethDayChange": -0.291274562622845408, + "ccyDayChange": -0.262223 + }, + "onchainEthPrice": 0.000216287441440837, + "tokenlist": true + }, { + "id": 410, + "address": "0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7", + "name": "FirstBlood Token", + "buyable": false, + "symbol": "1ST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001336, + "ccyValue": 0.1782, + "ethDayChange": 0.004511278195488722, + "ccyDayChange": 0.041168 + }, + "tokenlist": false + }, { + "id": 2195, + "address": "0x3b08c03fa8278cf81b9043b228183760376fcdbb", + "name": "Reptilian Coin (RPTC)", + "buyable": false, + "symbol": "RPTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611791108, + "ethValue": 2.4175201243E-7, + "ccyValue": 0.0003, + "ethDayChange": 0.0320041601137401, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2444, + "address": "0x66d28cb58487a7609877550e1a34691810a6b9fc", + "name": "Koinos", + "buyable": false, + "symbol": "KOIN", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000027652725280425, + "ccyValue": 0.036903, + "ethDayChange": 0.035022960026065811, + "ccyDayChange": 0.077145 + }, + "tokenlist": false + }, { + "id": 1057, + "address": "0xe036cce08cf4e23d33bc6b18e53caf532afa8513", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-6", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.372745119263839219, + "ccyValue": 496.910686, + "ethDayChange": -0.022417116779010819, + "ccyDayChange": 0.015219 + }, + "tokenlist": false + }, { + "id": 887, + "address": "0x68198e4ed6975204b3467dc217166d9ff1cbb57a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2832, + "address": "0x8d587a2386b9ea792a4c6e1744199349db3bc269", + "name": "Union Capital V2", + "buyable": false, + "symbol": "UnicV2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1256, + "address": "0xefab4a28f049134f23a8a0f3e7bab5ea1204921b", + "name": "APE Token", + "buyable": false, + "symbol": "APE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1660, + "address": "0xad19b7e2b1dac6cea46b18eec731981c08e6f08e", + "name": "ADEL-ETH Uniswap pool token", + "buyable": false, + "symbol": "ADEL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2923, + "address": "0x548b5c92a5e0006628f69c60e0085373fd5b63d9", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1092, + "address": "0x621e3b71d07b51242bcca167928e184235a4bb87", + "name": "Mountains and Valleys ETH/BTC", + "buyable": false, + "symbol": "MAVC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-51", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.3757314158, + "ccyValue": 501.007982, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 1154, + "address": "0xc76fb75950536d98fa62ea968e1d6b45ffea2a55", + "name": "COL", + "buyable": false, + "symbol": "COL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001778300655739, + "ccyValue": 0.00237, + "ethDayChange": 0.378527640107751938, + "ccyDayChange": 0.452206 + }, + "tokenlist": false + }, { + "id": 209, + "address": "0x6ff313fb38d53d7a458860b1bf7512f54a03e968", + "name": "Mero Currency", + "buyable": false, + "symbol": "MRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.02E-8, + "ccyValue": 0.000002, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2834, + "address": "0x92e187a03b6cd19cb6af293ba17f2745fd2357d5", + "name": "Unit Protocol", + "buyable": false, + "symbol": "DUCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002993, + "ccyValue": 0.039869, + "ethDayChange": 0.006958630287713417, + "ccyDayChange": 0.046019 + }, + "tokenlist": false + }, { + "id": 42, + "address": "0xa6a840e50bcaa50da017b91a0d86b8b2d41156ee", + "name": "EchoLink", + "buyable": false, + "symbol": "EKO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/eko.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#028AA2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 7.37E-7, + "ccyValue": 0.00098, + "ethDayChange": 0.000171592832535758, + "ccyDayChange": 0.037037 + }, + "tokenlist": false + }, { + "id": 2703, + "address": "0x9a43e689dbe8f60ec12ba899d58b94a14d852e37", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 835, + "address": "0x4d8fc1453a0f359e99c9675954e656d80d996fbf", + "name": "Bee Token", + "buyable": false, + "symbol": "BEE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.003E-7, + "ccyValue": 0.000661, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 677, + "address": "0xe3818504c1b32bf1557b16c238b2e01fd3149c17", + "name": "PILLAR", + "buyable": true, + "symbol": "PLR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/plr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00BFFF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00001884, + "ccyValue": 0.0231, + "ethDayChange": 0.006197271627864091, + "ccyDayChange": -0.039741 + }, + "onchainEthPrice": 0.000019763505610095, + "tokenlist": true + }, { + "id": 321, + "address": "0xb6ed7644c69416d67b522e20bc294a9a9b405b31", + "name": "0xBitcoin Token", + "buyable": true, + "symbol": "0xBTC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/0xbtc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF7F00 ", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.000257154, + "ccyValue": 0.341915, + "ethDayChange": -0.008382823444758547, + "ccyDayChange": 0.026208 + }, + "onchainEthPrice": 0.000248596565103426, + "tokenlist": true + }, { + "id": 253, + "address": "0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b", + "name": "Synth sDEFI", + "buyable": false, + "symbol": "sDEFI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sdefi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1E1A31", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 6.7149555193346355, + "ccyValue": 8949.691083, + "ethDayChange": -0.029566617429122776, + "ccyDayChange": 0.012924 + }, + "onchainEthPrice": 6.628145, + "tokenlist": false + }, { + "id": 1336, + "address": "0x990f341946a3fdb507ae7e52d17851b87168017c", + "name": "Strong", + "buyable": true, + "symbol": "STRONG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/strong.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1668B0", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02906108, + "ccyValue": 38.63, + "ethDayChange": -0.038235803939219529, + "ccyDayChange": -0.003033 + }, + "onchainEthPrice": 0.02702325, + "tokenlist": true + }, { + "id": 852, + "address": "0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed", + "name": "pNetwork Token", + "buyable": true, + "symbol": "PNT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pnt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF6666", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000315468536949213, + "ccyValue": 0.420366, + "ethDayChange": -0.046113361891100095, + "ccyDayChange": -0.008786 + }, + "onchainEthPrice": 0.00034393, + "tokenlist": true + }, { + "id": 592, + "address": "0x0329d23fc7b1b1e6cca57afa3f0090f1189069e8", + "name": "LINK RSI Crossover Set", + "buyable": false, + "symbol": "LINKRSICO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-2", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.26635556527869526, + "ccyValue": 356.200897, + "ethDayChange": 0.044628397346356977, + "ccyDayChange": 0.087355 + }, + "onchainEthPrice": 0.268696680954019275, + "tokenlist": false + }, { + "id": 1319, + "address": "0x25377ddb16c79c93b0cbf46809c8de8765f03fcd", + "name": "Synthetic CBDAO", + "buyable": false, + "symbol": "SBREE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000032620916146056, + "ccyValue": 0.043477, + "ethDayChange": 0.365592641192462323, + "ccyDayChange": 0.419333 + }, + "onchainEthPrice": 0.000013339006067661, + "tokenlist": false + }, { + "id": 2903, + "address": "0x111111111117dc0aa78b770fa6a738034120c302", + "name": "1INCH Token", + "buyable": true, + "symbol": "1INCH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/1inch.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1C324F", + "description": "1inch is a leading decentralised exchange (DEX) aggregator. 1inch offers the best rates by discovering the most efficient swapping routes across all leading DEXes. The 1inch token is used to govern the future evolution of the protocol.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00238613, + "ccyValue": 3.18, + "ethDayChange": 0.192468765617191404, + "ccyDayChange": 0.237354 + }, + "onchainEthPrice": 0.00201409, + "tokenlist": true + }, { + "id": 3147, + "address": "0x82393b6c61409716d49eef283a550ace5d37d8ed", + "name": "One Core", + "buyable": false, + "symbol": "1core", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1928, + "address": "0x8feef860e9fa9326ff9d7e0058f637be8579cc29", + "name": "TIMERS", + "buyable": false, + "symbol": "IPM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003847, + "ccyValue": 0.051396, + "ethDayChange": -0.00155722813392162, + "ccyDayChange": 0.050399 + }, + "tokenlist": false + }, { + "id": 2393, + "address": "0x9144a650d1da46f3d15dc644a2aff01d4d4681d4", + "name": "Lava ThunderEgg Token", + "buyable": false, + "symbol": "LAVA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 101, + "address": "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359", + "name": "Sai Stablecoin", + "buyable": true, + "symbol": "SAI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sai.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FDC134", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00529272, + "ccyValue": 7.05, + "ethDayChange": 0.014247744027349536, + "ccyDayChange": 0.058559 + }, + "onchainEthPrice": 0.00513895, + "tokenlist": true + }, { + "id": 377, + "address": "0xba9d4199fab4f26efe3551d490e3821486f135ba", + "name": "SwissBorg Token", + "buyable": true, + "symbol": "CHSB", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/chsb.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#01C38D", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.00043871808010245, + "ccyValue": 0.585471, + "ethDayChange": 0.420259242804953059, + "ccyDayChange": 0.472883 + }, + "onchainEthPrice": 0.00028974, + "tokenlist": true + }, { + "id": 379, + "address": "0x0ba45a8b5d5575935b8158a88c631e9f9c95a2e5", + "name": "Tellor Tributes", + "buyable": true, + "symbol": "TRB", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/trb.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.026120186265517528, + "ccyValue": 34.805461, + "ethDayChange": 0.164783325254628807, + "ccyDayChange": 0.210363 + }, + "onchainEthPrice": 0.0254318, + "tokenlist": true + }, { + "id": 99, + "address": "0x8f8221afbb33998d8584a2b05749ba73c37a938a", + "name": "Request", + "buyable": true, + "symbol": "REQ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/req.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1AAB9B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000257373, + "ccyValue": 0.034221, + "ethDayChange": -0.019228790598241743, + "ccyDayChange": 0.015008 + }, + "onchainEthPrice": 0.00002591, + "tokenlist": true + }, { + "id": 255, + "address": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "name": "Matic Network", + "buyable": true, + "symbol": "MATIC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/matic.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2B6DEF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000030595848315091, + "ccyValue": 0.040778, + "ethDayChange": -0.068902972760468655, + "ccyDayChange": -0.033697 + }, + "onchainEthPrice": 0.00003195182971307, + "tokenlist": true + }, { + "id": 660, + "address": "0x85eee30c52b0b379b046fb0f85f4f3dc3009afec", + "name": "KEEP Network", + "buyable": true, + "symbol": "KEEP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/keep.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3ccda7", + "description": "Keeps provide a bridge between the world of public blockchains and private data. It enables a new wave of ground-up innovation for blockchain developers.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00022003, + "ccyValue": 0.292459, + "ethDayChange": -0.04223089415874979, + "ccyDayChange": -0.006583 + }, + "onchainEthPrice": 0.00021534, + "tokenlist": true + }, { + "id": 593, + "address": "0xcd62b1c403fa761baadfc74c525ce2b51780b184", + "name": "Aragon Network Juror", + "buyable": true, + "symbol": "ANJ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/anj.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF7C7C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000033091850425766, + "ccyValue": 0.044095, + "ethDayChange": 0.096567261011212574, + "ccyDayChange": 0.139465 + }, + "onchainEthPrice": 0.000033434117611229, + "tokenlist": true + }, { + "id": 902, + "address": "0xed1199093b1abd07a368dd1c0cdc77d8517ba2a0", + "name": "HEX2T", + "buyable": false, + "symbol": "HEX2T", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "onchainEthPrice": 1.301768063E-9, + "tokenlist": false + }, { + "id": 244, + "address": "0x687bfc3e73f6af55f0ccca8450114d107e781a0e", + "name": "QChi", + "buyable": false, + "symbol": "QCH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000024770000000003, + "ccyValue": 0.033006, + "ethDayChange": 0.021864686468770627, + "ccyDayChange": 0.066499 + }, + "onchainEthPrice": 0.00002378, + "tokenlist": false + }, { + "id": 77, + "address": "0xec67005c4e498ec7f55e092bd1d35cbc47c91892", + "name": "Melon Token", + "buyable": true, + "symbol": "MLN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mln.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#162950", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.028408264272148494, + "ccyValue": 37.862528, + "ethDayChange": 0.078982643389773309, + "ccyDayChange": 0.126191 + }, + "onchainEthPrice": 0.0319872923, + "tokenlist": true + }, { + "id": 82, + "address": "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671", + "name": "Numeraire", + "buyable": true, + "symbol": "NMR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/nmr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2D3F48", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.019811977364105126, + "ccyValue": 26.405399, + "ethDayChange": -0.009019134469129847, + "ccyDayChange": 0.029982 + }, + "onchainEthPrice": 0.02269183, + "tokenlist": true + }, { + "id": 1969, + "address": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "name": "cVault.finance", + "buyable": true, + "symbol": "CORE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/core.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#367E7F", + "description": "CORE is a non-inflationary cryptocurrency that is designed to execute profit-generating strategies autonomously with a completely decentralized approach.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 3.067663143758206, + "ccyValue": 4088.580692, + "ethDayChange": 0.00327740911401858, + "ccyDayChange": 0.039772 + }, + "onchainEthPrice": 3.225490083238925844, + "tokenlist": true + }, { + "id": 122, + "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "name": "Wrapped BTC", + "buyable": true, + "symbol": "WBTC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/wbtc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F09242", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 24.399503344224805192, + "ccyValue": 32554.581978, + "ethDayChange": -0.000590623028024244, + "ccyDayChange": 0.037889 + }, + "onchainEthPrice": 27.527483879522765103, + "tokenlist": true + }, { + "id": 1387, + "address": "0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba", + "name": "BarterTrade", + "buyable": true, + "symbol": "BART", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bart.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0198B7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000246, + "ccyValue": 0.032702, + "ethDayChange": -0.020028385278569839, + "ccyDayChange": 0.015906 + }, + "onchainEthPrice": 0.000027312135442473, + "tokenlist": true + }, { + "id": 2586, + "address": "0x9762c600a39bda3359f50a1fb1f90945cead379d", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-15", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 7.924450924644574527, + "ccyValue": 10566.608495, + "ethDayChange": -0.014352673043864449, + "ccyDayChange": 0.028241 + }, + "tokenlist": false + }, { + "id": 2407, + "address": "0xbbff34e47e559ef680067a6b1c980639eeb64d24", + "name": "Leverj Gluon", + "buyable": true, + "symbol": "L2", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000063256140374179, + "ccyValue": 0.084416, + "ethDayChange": -0.022222169027269495, + "ccyDayChange": 0.017857 + }, + "onchainEthPrice": 0.000061901929448969, + "tokenlist": true + }, { + "id": 2185, + "address": "0xd82bb924a1707950903e2c0a619824024e254cd1", + "name": "DAOfi", + "buyable": true, + "symbol": "DAOfi", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000176563446707954, + "ccyValue": 0.235625, + "ethDayChange": 0.000189467557661587, + "ccyDayChange": 0.042704 + }, + "onchainEthPrice": 0.00019499, + "tokenlist": true + }, { + "id": 1991, + "address": "0x557b933a7c2c45672b610f8954a3deb39a51a8ca", + "name": "REVV", + "buyable": true, + "symbol": "REVV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/revv.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#444A50", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000055250717982428, + "ccyValue": 0.073638, + "ethDayChange": 0.009985834986221658, + "ccyDayChange": 0.049737 + }, + "onchainEthPrice": 0.00005202, + "tokenlist": true + }, { + "id": 619, + "address": "0xac8ea871e2d5f4be618905f36f73c760f8cfdc8e", + "name": "BTC Network Demand Set", + "buyable": false, + "symbol": "BYTE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-16", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.383336885861408713, + "ccyValue": 510.916636, + "ethDayChange": -0.045009667094197749, + "ccyDayChange": -0.003384 + }, + "onchainEthPrice": 0.468527378099084325, + "tokenlist": false + }, { + "id": 2600, + "address": "0x26607ac599266b21d13c7acf7942c7701a8b699c", + "name": "Power Index Pool Token", + "buyable": true, + "symbol": "PIPT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pipt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00225491, + "ccyValue": 3.01, + "ethDayChange": 0.028629427730766599, + "ccyDayChange": 0.067376 + }, + "onchainEthPrice": 0.00201788, + "tokenlist": true + }, { + "id": 2813, + "address": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "name": "Liquid staked Ether 2.0", + "buyable": false, + "symbol": "stETH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/steth.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00A3FF", + "description": "stETH (staked ETH), represents your ETH balance on the Eth2 beacon chain, and earns you Eth2 staking rewards. stETH are fully liquid, so you can trade, sell, exchange, invest.", + "investmentId": "i-lido-staking", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1.000857031491841, + "ccyValue": 1333.653968, + "ethDayChange": 0.002221199074230033, + "ccyDayChange": 0.04144 + }, + "onchainEthPrice": 0.974560979399603346, + "tokenlist": false + }, { + "id": 257, + "address": "0x419d0d8bdd9af5e606ae2232ed285aff190e711b", + "name": "FunFair", + "buyable": true, + "symbol": "FUN", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/fun.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF0066", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00001350714740778, + "ccyValue": 0.018002, + "ethDayChange": -0.017406144540939677, + "ccyDayChange": 0.018443 + }, + "onchainEthPrice": 0.000014152966278371, + "tokenlist": true + }, { + "id": 596, + "address": "0xf5238462e7235c7b62811567e63dd17d12c2eaa0", + "name": "CACHE Gold", + "buyable": true, + "symbol": "CGT", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cgt.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 4, + "brandColor": "#ffb300", + "description": "CACHE Gold tokens are fully regulated, public, transparent, redeemable tokens backed by gold stored in vaults around the world. With worldwide liquidity and storage providers, accessible and auditable assets from GramChain's Proof of Reserve asset tracking system, strict AML/KYC policies, CACHE provides fast, flexible redemption at scale with the option to sell the underlying gold for fiat currency.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.04448181723979687, + "ccyValue": 59.285355, + "ethDayChange": -0.03706193961244811, + "ccyDayChange": 0.000835 + }, + "onchainEthPrice": 0.04887358, + "tokenlist": true + }, { + "id": 2815, + "address": "0x65d14e3e5ea1e0b752783837ff1136bfe0a5dd34", + "name": "BOOST", + "buyable": false, + "symbol": "BOOST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 618, + "address": "0x8abf3a95862619a55fa00cb3e4eedbe113ff468c", + "name": "Money Printer Go Brrr", + "buyable": false, + "symbol": "BRRR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-17", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.55961313796, + "ccyValue": 746.199644, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2945, + "address": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", + "name": "DEFI Top 5 Tokens Index", + "buyable": false, + "symbol": "DEFI5", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.050960806725085476, + "ccyValue": 68.00742, + "ethDayChange": 0.028286804398807277, + "ccyDayChange": 0.070436 + }, + "tokenlist": false + }, { + "id": 1815, + "address": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", + "name": "dHedge DAO Token", + "buyable": true, + "symbol": "DHT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dht.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#419FCB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.001988, + "ccyValue": 2.667, + "ethDayChange": 0.320170881867266987, + "ccyDayChange": 0.381135 + }, + "onchainEthPrice": 0.001546731905272657, + "tokenlist": true + }, { + "id": 33, + "address": "0x6b175474e89094c44da98b954eedeac495271d0f", + "name": "Dai Stablecoin", + "buyable": true, + "symbol": "DAI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mcd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F4B731", + "description": "Dai is the world’s first unbiased currency. Unlike traditional currencies, it’s resistant to geopolitical instability and manipulation. Dai is the leading decentralized, asset-backed, stablecoin . Dai eliminates volatility through an autonomous system of smart contracts called the Maker Protocol and decentralized community governance.", + "category": "currencies", + "refundable": true, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000748885528516212, + "ccyValue": 0.999391, + "ethDayChange": -0.037669585561279877, + "ccyDayChange": -0.000609 + }, + "onchainEthPrice": 0.000756990646433747, + "tokenlist": true + }, { + "id": 254, + "address": "0x8b1f49491477e0fb46a29fef53f1ea320d13c349", + "name": "MicroMoney", + "buyable": false, + "symbol": "AMM", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000067553, + "ccyValue": 0.008982, + "ethDayChange": 0.019344811455991308, + "ccyDayChange": 0.054968 + }, + "tokenlist": false + }, { + "id": 2183, + "address": "0x33c2da7fd5b125e629b3950f3c38d7f721d7b30d", + "name": "Seal Finance", + "buyable": false, + "symbol": "Seal", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.036430748772008366, + "ccyValue": 48.544409, + "ethDayChange": -0.037657849761649872, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1113, + "address": "0x4149195911eb592307d9acb08ac6a5de08b8717d", + "name": "Epic Cash", + "buyable": false, + "symbol": "EPIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2583, + "address": "0x27af23d8db2a3fbce7d04e84f594285fb0059316", + "name": "https://unimex.finance/", + "buyable": false, + "symbol": "UMEX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000024826747304786, + "ccyValue": 0.033131, + "ethDayChange": -0.014168409630427425, + "ccyDayChange": 0.025918 + }, + "tokenlist": false + }, { + "id": 1423, + "address": "0x3684b581db1f94b721ee0022624329feb16ab653", + "name": "GUNTHY", + "buyable": false, + "symbol": "GUNTHY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00007927, + "ccyValue": 0.105642, + "ethDayChange": -0.199535494294658184, + "ccyDayChange": -0.181761 + }, + "tokenlist": false + }, { + "id": 1123, + "address": "0xc6363c1a05f840be2d185d7084b28af84c543d40", + "name": "BMToken", + "buyable": false, + "symbol": "BMT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02530764, + "ccyValue": 31.92, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 326, + "address": "0x90d46a9636b973f18186541d1b04ed3621a49cb0", + "name": "Natmin", + "buyable": false, + "symbol": "NAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001000626159693, + "ccyValue": 0.001334, + "ethDayChange": 0.000626159693, + "ccyDayChange": 0.037325 + }, + "tokenlist": false + }, { + "id": 2320, + "address": "0xa7539a7ba55449df2769541d51deee49a2f2b1f2", + "name": "nsure.network", + "buyable": false, + "symbol": "NSURE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 585, + "address": "0x793e2602a8396468f3ce6e34c1b6c6fd6d985bad", + "name": "Saint Fame: $ICK Mask", + "buyable": false, + "symbol": "ICK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.3914276, + "ccyValue": 501.9, + "ethDayChange": -0.013373467767893444, + "ccyDayChange": -0.044819 + }, + "tokenlist": false + }, { + "id": 3104, + "address": "0x1eb16ec378f0ce8f81449120629f52ba28961d47", + "name": "RealToken S 1000 Florida Ave Akron OH", + "buyable": false, + "symbol": "1000 Florida", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 865, + "address": "0x330416c863f2acce7af9c9314b422d24c672534a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 930, + "address": "0x987d7cc04652710b74fff380403f5c02f82e290a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 318, + "address": "0x77f973fcaf871459aa58cd81881ce453759281bc", + "name": "Fulcrum ETH iToken", + "buyable": false, + "symbol": "iETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1284, + "address": "0x0f71b8de197a1c84d31de0f1fa7926c365f052b3", + "name": "Arcona Distribution Contract", + "buyable": false, + "symbol": "ARCONA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000646, + "ccyValue": 0.008635, + "ethDayChange": -0.024169184290030211, + "ccyDayChange": -0.040769 + }, + "tokenlist": false + }, { + "id": 87, + "address": "0xfedae5642668f8636a11987ff386bfd215f942ee", + "name": "PolicyPal Network", + "buyable": false, + "symbol": "PAL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 1.4E-7, + "ccyValue": 0.081, + "ethDayChange": -0.625267665952890792, + "ccyDayChange": 464.517241 + }, + "tokenlist": false + }, { + "id": 1460, + "address": "0xb7ba8461664de526a3ae44189727dfc768625902", + "name": "YMPL", + "buyable": false, + "symbol": "YMPL", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00247129, + "ccyValue": 3.13, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 470, + "address": "0x79c5a1ae586322a07bfb60be36e1b31ce8c84a1e", + "name": "Freight Trust Network", + "buyable": false, + "symbol": "EDI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/edi.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 4, + "brandColor": "#002D7B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 9.94440479677E-7, + "ccyValue": 0.001325, + "ethDayChange": 0.057671237263804772, + "ccyDayChange": 0.098673 + }, + "onchainEthPrice": 9.59E-7, + "tokenlist": false + }, { + "id": 678, + "address": "0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8", + "name": "Sentivate", + "buyable": true, + "symbol": "SNTVT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sntvt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF1744", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000044, + "ccyValue": 0.005874, + "ethDayChange": 0.447703259820041325, + "ccyDayChange": 0.507313 + }, + "onchainEthPrice": 0.0000034, + "tokenlist": true + }, { + "id": 1447, + "address": "0x26e43759551333e57f073bb0772f50329a957b30", + "name": "DegenVC", + "buyable": false, + "symbol": "DGVC", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000551074255965745, + "ccyValue": 0.735411, + "ethDayChange": -0.000687974405874504, + "ccyDayChange": 0.039969 + }, + "onchainEthPrice": 0.0005795619334268, + "tokenlist": false + }, { + "id": 959, + "address": "0x40fd72257597aa14c7231a7b1aaa29fce868f677", + "name": "Sora Token", + "buyable": true, + "symbol": "XOR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/xor.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#E3242D", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.1302768977736249, + "ccyValue": 173.595525, + "ethDayChange": -0.003235676155396565, + "ccyDayChange": 0.039743 + }, + "onchainEthPrice": 0.13146627, + "tokenlist": true + }, { + "id": 3004, + "address": "0x374cb8c27130e2c9e04f44303f3c8351b9de61c1", + "name": "BaoToken", + "buyable": false, + "symbol": "BAO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 4.31160015803E-7, + "ccyValue": 0.000575, + "ethDayChange": -0.026037224893434673, + "ccyDayChange": 0.012324 + }, + "onchainEthPrice": 5.15213421153E-7, + "tokenlist": false + }, { + "id": 309, + "address": "0xd8912c10681d8b21fd3742244f44658dba12264e", + "name": "Pluton", + "buyable": false, + "symbol": "PLU", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.003254, + "ccyValue": 4.417, + "ethDayChange": 0.015661967698887483, + "ccyDayChange": 0.075124 + }, + "onchainEthPrice": 0.002723535822033777, + "tokenlist": false + }, { + "id": 103, + "address": "0x744d70fdbe2ba4cf95131626614a1763df805b9e", + "name": "Status Network", + "buyable": true, + "symbol": "SNT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/snt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#5B6DEE", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.00003485290894873, + "ccyValue": 0.046502, + "ethDayChange": 0.01611979442361516, + "ccyDayChange": 0.061714 + }, + "onchainEthPrice": 0.00003731, + "tokenlist": true + }, { + "id": 72, + "address": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", + "name": "Decentraland", + "buyable": true, + "symbol": "MANA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mana.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF0055", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0001215976, + "ccyValue": 0.161678, + "ethDayChange": 0.029662275698575336, + "ccyDayChange": 0.068338 + }, + "onchainEthPrice": 0.0001178197, + "tokenlist": true + }, { + "id": 1355, + "address": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", + "name": "Serum", + "buyable": true, + "symbol": "SRM", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/srm.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#56B6D0", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001442259085042189, + "ccyValue": 1.922243, + "ethDayChange": -0.04554537862180962, + "ccyDayChange": -0.007982 + }, + "onchainEthPrice": 0.00162417, + "tokenlist": true + }, { + "id": 402, + "address": "0x967ceaa527ceb50b15618f4e44df48106fd9665f", + "name": "Florins", + "buyable": false, + "symbol": "FLO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2097, + "address": "0xcd254568ebf88f088e40f456db9e17731243cb25", + "name": "YFOS.finance", + "buyable": false, + "symbol": "YFOS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0024476, + "ccyValue": 3.25, + "ethDayChange": 0.01199877614137221, + "ccyDayChange": 0.05178 + }, + "tokenlist": false + }, { + "id": 371, + "address": "0x809826cceab68c387726af962713b64cb5cb3cca", + "name": "NucleusVision", + "buyable": false, + "symbol": "nCash", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 7.13455378761E-7, + "ccyValue": 0.000951, + "ethDayChange": 0.004866730649295775, + "ccyDayChange": 0.011702 + }, + "tokenlist": false + }, { + "id": 1989, + "address": "0xaf9f549774ecedbd0966c52f250acc548d3f36e5", + "name": "Rio Fuel Token", + "buyable": false, + "symbol": "RFuel", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00005033, + "ccyValue": 0.06706, + "ethDayChange": 0.014923957387681153, + "ccyDayChange": 0.054867 + }, + "tokenlist": false + }, { + "id": 2089, + "address": "0x706cb9e741cbfee00ad5b3f5acc8bd44d1644a74", + "name": "YFOX.FINANCE", + "buyable": false, + "symbol": "YFOX", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.023513999847171483, + "ccyValue": 31.339453, + "ethDayChange": -0.03881324976732158, + "ccyDayChange": -0.000985 + }, + "tokenlist": false + }, { + "id": 2276, + "address": "0xee9a08fc54bf53353398f946db4cb2447276f850", + "name": "OLD RealToken S 4340 East-71 Cleveland OH", + "buyable": false, + "symbol": "4340 East-71", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1809, + "address": "0xdc98556ce24f007a5ef6dc1ce96322d65832a819", + "name": "PICKLE-ETH Uniswap pool token", + "buyable": false, + "symbol": "PICKLE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "brandColor": "", + "investmentId": "i-uniswap-v2-41", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.22890133386737089, + "ccyValue": 305.34568, + "ethDayChange": -0.002612945920431812, + "ccyDayChange": 0.036447 + }, + "tokenlist": false + }, { + "id": 1572, + "address": "0x7ebbd485bf0e27433d6a98714de4a469f5b6daa5", + "name": "Omnetix Protocol", + "buyable": false, + "symbol": "ONX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 11, + "address": "0xe7049114562c759d5e9d1d25783773ccd61c0a65", + "name": "Balance token", + "buyable": false, + "symbol": "BAL", + "decimals": 0, + "iconUrl": "https://s3.eu-west-2.amazonaws.com/argent-assets/bal_500px.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 250, + "address": "0xf7a5a8a95491ec170738434963b649671b563b88", + "name": "Unisocks Classic Edition 0", + "buyable": false, + "symbol": "SOCKSCLASSIC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2725, + "address": "0xcec03a960ea678a2b6ea350fe0dbd1807b22d875", + "name": "GovVault:ValueLiquidity", + "buyable": false, + "symbol": "gvVALUE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3171, + "address": "0xc58467b855401ef3ff8fda9216f236e29f0d6277", + "name": "Gasgains", + "buyable": false, + "symbol": "GASG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.001806550705493489, + "ccyValue": 2.41085, + "ethDayChange": 0.219189199348141763, + "ccyDayChange": 0.269163 + }, + "tokenlist": false + }, { + "id": 3143, + "address": "0xfa2562da1bba7b954f26c74725df51fb62646313", + "name": "ASSY Index", + "buyable": false, + "symbol": "ASSY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2685, + "address": "0x37120282d06dee909061a4930df30dfe36f17dd0", + "name": "Bondly.Finance", + "buyable": false, + "symbol": "BONDLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2954, + "address": "0xdfa42ba0130425b21a1568507b084cc246fb0c8f", + "name": "USDC-GRT Uniswap pool token", + "buyable": false, + "symbol": "USDC-GRT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3199, + "address": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "name": "Rally", + "buyable": false, + "symbol": "RLY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00017355, + "ccyValue": 0.231184, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 313, + "address": "0x0b5a53d6b0ae27aa4213d1157d65da74ef6cdb41", + "name": "Gaby.ai", + "buyable": false, + "symbol": "GAby", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2181, + "address": "0x5201883feeb05822ce25c9af8ab41fc78ca73fa9", + "name": "ANKR-ETH Uniswap pool token", + "buyable": false, + "symbol": "ANKR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2890, + "address": "0xdc7d39628855b6013000c9af957e6cd484beda6c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2240, + "address": "0xcce41676a4624f4a1e33a787a59d6bf96e5067bc", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1649, + "address": "0x89ee58af4871b474c30001982c3d7439c933c838", + "name": "yfBETA", + "buyable": false, + "symbol": "YFBETA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00344822306926169, + "ccyValue": 4.594798, + "ethDayChange": -0.079983172555578975, + "ccyDayChange": -0.045534 + }, + "tokenlist": false + }, { + "id": 123, + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "name": "Wrapped Ether", + "buyable": true, + "symbol": "WETH", + "decimals": 18, + "iconUrl": "https://s3.eu-west-2.amazonaws.com/argent-assets/weth.png", + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 1, + "ccyValue": 1333.420525, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 1, + "tokenlist": true + }, { + "id": 2318, + "address": "0x36f3fd68e7325a35eb768f1aedaae9ea0689d723", + "name": "Empty Set Dollar", + "buyable": true, + "symbol": "ESD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/esd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "description": "ESD uses an algorithmic approach to maintaining price stability around a 1 USDC target. This approach relies on a tuned incentivization mechanism to reward actors who promote stability within the protocol. Since day one Empty Set Dollar has had completely decentralized on-chain governance. Additionally, the protocol launched with 0 initial supply and no pre-mine for the anonymous founding team.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000153865820888386, + "ccyValue": 0.205335, + "ethDayChange": -0.299272151888213863, + "ccyDayChange": -0.267981 + }, + "onchainEthPrice": 0.000193601166895316, + "tokenlist": true + }, { + "id": 160, + "address": "0x1c8504180fcef6ce332c7736707582f661d1a019", + "name": "FREEDOMX", + "buyable": false, + "symbol": "FRDMX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1224, + "address": "0x0a913bead80f321e7ac35285ee10d9d922659cb7", + "name": "DOS Network Token", + "buyable": true, + "symbol": "DOS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dos.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000052203308618731, + "ccyValue": 0.069562, + "ethDayChange": 0.06018092239502437, + "ccyDayChange": 0.105826 + }, + "onchainEthPrice": 0.000050889199203063, + "tokenlist": true + }, { + "id": 666, + "address": "0x8a854288a5976036a725879164ca3e91d30c6a1b", + "name": "GET", + "buyable": true, + "symbol": "GET", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/get.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#01C696", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000259396457812334, + "ccyValue": 0.346095, + "ethDayChange": -0.040193758392003955, + "ccyDayChange": -0.000684 + }, + "onchainEthPrice": 0.000298757969665194, + "tokenlist": true + }, { + "id": 1294, + "address": "0x2ba592f78db6436527729929aaf6c908497cb200", + "name": "Cream Finance", + "buyable": true, + "symbol": "CREAM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cream.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3FDAD2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.1164284384141489, + "ccyValue": 155.175794, + "ethDayChange": -0.018209701879789602, + "ccyDayChange": 0.021109 + }, + "onchainEthPrice": 0.1353045401974116, + "tokenlist": true + }, { + "id": 808, + "address": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "name": "LEND-ETH Uniswap pool token", + "buyable": false, + "symbol": "LEND-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-16", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.120430917214222113, + "ccyValue": 160.650485, + "ethDayChange": -0.018930379980570849, + "ccyDayChange": 0.018527 + }, + "onchainEthPrice": 0.116090521946912015, + "tokenlist": false + }, { + "id": 1639, + "address": "0xa0246c9032bc3a600820415ae600c6388619a14d", + "name": "FARM Reward Token", + "buyable": true, + "symbol": "FARM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/farm.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FFAF00", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.11199990016504491, + "ccyValue": 149.241207, + "ethDayChange": 0.124644909772720207, + "ccyDayChange": 0.173095 + }, + "onchainEthPrice": 0.088314767257732328, + "tokenlist": true + }, { + "id": 47, + "address": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", + "name": "Enjin Coin", + "buyable": true, + "symbol": "ENJ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/enj.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#624DBF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000282992992707559, + "ccyValue": 0.377173, + "ethDayChange": -0.041400912762080419, + "ccyDayChange": -0.006409 + }, + "onchainEthPrice": 0.000307442865886936, + "tokenlist": true + }, { + "id": 1155, + "address": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", + "name": "MCDEX Token", + "buyable": true, + "symbol": "MCB", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mcb.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#119C9C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.006636011970593366, + "ccyValue": 8.844475, + "ethDayChange": -0.028715406905630522, + "ccyDayChange": 0.010182 + }, + "onchainEthPrice": 0.006432242413470584, + "tokenlist": true + }, { + "id": 1209, + "address": "0x9fbfed658919a896b5dc7b00456ce22d780f9b65", + "name": "PlutusDeFi", + "buyable": true, + "symbol": "PLT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/plt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#316CEE", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00002186, + "ccyValue": 0.02913, + "ethDayChange": 0.037001897533206831, + "ccyDayChange": 0.075702 + }, + "onchainEthPrice": 0.0000194159009695, + "tokenlist": true + }, { + "id": 68, + "address": "0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0", + "name": "Loom Network", + "buyable": true, + "symbol": "LOOM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/loom.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#48BEFF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004802, + "ccyValue": 0.063979, + "ethDayChange": -0.045320623913278863, + "ccyDayChange": -0.008093 + }, + "onchainEthPrice": 0.0000441293, + "tokenlist": true + }, { + "id": 1177, + "address": "0x2fdbadf3c4d5a8666bc06645b8358ab803996e28", + "name": "YFI-ETH Uniswap pool token", + "buyable": false, + "symbol": "YFI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-22", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 18.53018557935260855, + "ccyValue": 24702.783948, + "ethDayChange": 0.009083190959737227, + "ccyDayChange": 0.047931 + }, + "onchainEthPrice": 21.664534175799991993, + "tokenlist": false + }, { + "id": 216, + "address": "0x42d6622dece394b54999fbd73d108123806f6a18", + "name": "SPANK", + "buyable": true, + "symbol": "SPANK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/spank.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF3B81", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000009521369439988, + "ccyValue": 0.012688, + "ethDayChange": -0.002997964399162304, + "ccyDayChange": 0.032636 + }, + "onchainEthPrice": 0.0000095521, + "tokenlist": true + }, { + "id": 1975, + "address": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48", + "name": "Ocean Token", + "buyable": true, + "symbol": "OCEAN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ocean.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 4, + "brandColor": "#332B63", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000421205845357813, + "ccyValue": 0.561383, + "ethDayChange": -0.003293097195764291, + "ccyDayChange": 0.03395 + }, + "onchainEthPrice": 0.0004889, + "tokenlist": true + }, { + "id": 983, + "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24", + "name": "Render Token", + "buyable": true, + "symbol": "RNDR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rndr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#e62249", + "description": "The Render Network™, through the use of RNDR™ tokens, is the first network to transform the power of GPU compute into a decentralized economy of connected 3D assets.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.00007895924396737, + "ccyValue": 0.10535, + "ethDayChange": -0.073791859620293255, + "ccyDayChange": -0.032208 + }, + "onchainEthPrice": 0.00007357, + "tokenlist": true + }, { + "id": 245, + "address": "0x1a94656a6245379bc0d9c64c402197528edb2bd1", + "name": "CloverCoin", + "buyable": false, + "symbol": "CLC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2687, + "address": "0x31acf54fae6166dc2f90c4d6f20d379965e96bc1", + "name": "reflectreflect.finance", + "buyable": false, + "symbol": "RFII", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1231, + "address": "0x2d97755d2d18a77ef9ead977dd0c3ca7c840d5fc", + "name": "KTON-ETH Uniswap pool token", + "buyable": false, + "symbol": "KTON-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2332, + "address": "0x152687bc4a7fcc89049cf119f9ac3e5acf2ee7ef", + "name": "DeltaHub Community", + "buyable": false, + "symbol": "DHC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000434924340557909, + "ccyValue": 0.580408, + "ethDayChange": 0.006503493635375328, + "ccyDayChange": 0.047452 + }, + "tokenlist": false + }, { + "id": 732, + "address": "0x75c5ee419331b6150879530d06f9ba054755f1da", + "name": "SalPay", + "buyable": false, + "symbol": "SAL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000376, + "ccyValue": 0.001529, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 296, + "address": "0xf5b0a3efb8e8e4c201e2a935f110eaaf3ffecb8d", + "name": "Axie", + "buyable": false, + "symbol": "AXIE", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2950, + "address": "0x66a0f676479cee1d7373f3dc2e2952778bff5bd6", + "name": "Wise Token", + "buyable": false, + "symbol": "WISE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000382752650336525, + "ccyValue": 0.510785, + "ethDayChange": -0.002107454886698836, + "ccyDayChange": 0.038795 + }, + "tokenlist": false + }, { + "id": 485, + "address": "0x1ccaa0f2a7210d76e1fdec740d5f323e2e1b1672", + "name": "Faceter Token", + "buyable": false, + "symbol": "FACE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 4.04677484974E-7, + "ccyValue": 0.000539, + "ethDayChange": -0.025812506080885893, + "ccyDayChange": 0.015066 + }, + "tokenlist": false + }, { + "id": 360, + "address": "0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8", + "name": "BTU Incentivized DAI", + "buyable": false, + "symbol": "bDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00577737, + "ccyValue": 0.946773, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1422, + "address": "0x81127dcbe78d10e045f672e9a7336df82d3619ea", + "name": "Electriq Network", + "buyable": false, + "symbol": "Eleq", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2066, + "address": "0x4689020104edee22454e0f76d3ff682b48806850", + "name": "MoonFuel", + "buyable": false, + "symbol": "MOONFUEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 869, + "address": "0x37236cd05b34cc79d3715af2383e96dd7443dcf1", + "name": "Small Love Potion", + "buyable": false, + "symbol": "SLP", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000012144408709003, + "ccyValue": 0.016186, + "ethDayChange": -0.031942940228488478, + "ccyDayChange": 0.006842 + }, + "tokenlist": false + }, { + "id": 1309, + "address": "0x6b9f031d718dded0d681c20cb754f97b3bb81b78", + "name": "Geeq", + "buyable": true, + "symbol": "GEEQ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/geeq.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2F3F64", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00052417, + "ccyValue": 0.698231, + "ethDayChange": 0.109965271895646282, + "ccyDayChange": 0.157929 + }, + "onchainEthPrice": 0.000581934304409835, + "tokenlist": true + }, { + "id": 45, + "address": "0xbf2179859fc6d5bee9bf9158632dc51678a4100e", + "name": "Aelf", + "buyable": true, + "symbol": "ELF", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/elf.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2B5EBB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0001064441, + "ccyValue": 0.141529, + "ethDayChange": 0.033646997124066806, + "ccyDayChange": 0.068813 + }, + "onchainEthPrice": 0.0001089, + "tokenlist": true + }, { + "id": 39, + "address": "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190", + "name": "Dether", + "buyable": true, + "symbol": "DTH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dth.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3C80F1", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000004257150759226, + "ccyValue": 0.005673, + "ethDayChange": 0.037155898759916114, + "ccyDayChange": 0.074839 + }, + "onchainEthPrice": 0.000004217649894577, + "tokenlist": true + }, { + "id": 1828, + "address": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "name": "UNI-ETH Uniswap pool token", + "buyable": false, + "symbol": "UNI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-29", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.408745609746480274, + "ccyValue": 544.902861, + "ethDayChange": -0.034653498913393287, + "ccyDayChange": 0.001563 + }, + "onchainEthPrice": 0.393426792438066738, + "tokenlist": false + }, { + "id": 1758, + "address": "0x7968bc6a03017ea2de509aaa816f163db0f35148", + "name": "Hedget", + "buyable": true, + "symbol": "HGET", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hget.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#48C76D", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.002423, + "ccyValue": 3.255, + "ethDayChange": -0.039090725222777873, + "ccyDayChange": 0.00774 + }, + "onchainEthPrice": 0.002221327027863785, + "tokenlist": true + }, { + "id": 760, + "address": "0x8bd1661da98ebdd3bd080f0be4e6d9be8ce9858c", + "name": "REN-ETH Uniswap pool token", + "buyable": false, + "symbol": "REN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-9", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.057333421340196489, + "ccyValue": 76.411831, + "ethDayChange": 0.014793779510420067, + "ccyDayChange": 0.052579 + }, + "onchainEthPrice": 0.061297709227787679, + "tokenlist": false + }, { + "id": 2670, + "address": "0x8d1ce361eb68e9e05573443c407d4a3bed23b033", + "name": "PieDAO DEFI++", + "buyable": true, + "symbol": "DEFI++", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/defi-plus-plus.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FC02A7", + "description": "DEFI++ is the most diversified DeFi index on the market. It is a tokenized representation redeemable for the underlying assets at any time. A 70/30 balance of DeFi+L and DeFi+S, DeFi++ includes both large and small market cap DeFi assets such as AAVE, SNX, MKR, LRC and BAL. The index constantly rebalances to lock in profits. ", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0025624, + "ccyValue": 3.41, + "ethDayChange": 0.048063512059847273, + "ccyDayChange": 0.114379 + }, + "onchainEthPrice": 0.00237238, + "tokenlist": true + }, { + "id": 2746, + "address": "0x275f5ad03be0fa221b4c6649b8aee09a42d9412a", + "name": "Monavale", + "buyable": true, + "symbol": "MONA", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.317545761914522272, + "ccyValue": 423.766214, + "ethDayChange": 0.007004836701063202, + "ccyDayChange": 0.047975 + }, + "onchainEthPrice": 0.2988104030970327, + "tokenlist": true + }, { + "id": 1473, + "address": "0x45f24baeef268bb6d63aee5129015d69702bcdfa", + "name": "YFValue", + "buyable": true, + "symbol": "YFV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yfv.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#379FFF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.003234257613020218, + "ccyValue": 4.312625, + "ethDayChange": -0.036769624764143747, + "ccyDayChange": -0.000291 + }, + "onchainEthPrice": 0.002552101551678189, + "tokenlist": true + }, { + "id": 2674, + "address": "0xdc6a3ab17299d9c2a412b0e0a4c1f55446ae0817", + "name": "Aave variable debt bearing SUSD", + "buyable": false, + "symbol": "variableDebt", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2399, + "address": "0xc259bd68fe764cfa3fd5c04a3bd24363c7e112ec", + "name": "yfi.name", + "buyable": false, + "symbol": "YFIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3200, + "address": "0xeafad3065de347b910bb88f09a5abe580a09d655", + "name": "Uniswap V2", + "buyable": false, + "symbol": "UNI-V2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 633, + "address": "0x1ce9200c98b6d9999b60bff53860475a993a8b68", + "name": "ETH TA Set", + "buyable": false, + "symbol": "ETHTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-26", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.05063365183253109, + "ccyValue": 67.483462, + "ethDayChange": -0.044921021720000008, + "ccyDayChange": -0.002943 + }, + "tokenlist": false + }, { + "id": 3041, + "address": "0xc2d3ae29c8309c14994d02ecd228cf86f3efde77", + "name": "CURRYSWAP", + "buyable": false, + "symbol": "CURRY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000094236558979191, + "ccyValue": 0.125759, + "ethDayChange": 0.922802672499306264, + "ccyDayChange": 0.994813 + }, + "tokenlist": false + }, { + "id": 2742, + "address": "0x40e7705254494a7e61d5b7c86da50225ddc3daae", + "name": "yplutus.finance", + "buyable": false, + "symbol": "yPLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002531699979281, + "ccyValue": 0.003374, + "ethDayChange": 0.000671928569565217, + "ccyDayChange": 0.017798 + }, + "tokenlist": false + }, { + "id": 1477, + "address": "0x0cc0d75340c0658ec370859252f40ed92620a807", + "name": "Trend Token", + "buyable": false, + "symbol": "TREND", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1373, + "address": "0x939ff8e09f7006bcbada0c41d837a74f77597de1", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 167, + "address": "0x1a3111d682a6719992dbefa616541caac29991b8", + "name": "ReyerCoin", + "buyable": false, + "symbol": "RYC", + "decimals": 1, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 161, + "address": "0x8762db106b2c2a0bccb3a80d1ed41273552616e8", + "name": "Reserve Rights", + "buyable": true, + "symbol": "RSR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rsr.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 4, + "brandColor": "#303030", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000256625, + "ccyValue": 0.034121, + "ethDayChange": -0.027935606060606061, + "ccyDayChange": 0.006519 + }, + "onchainEthPrice": 0.00002781, + "tokenlist": true + }, { + "id": 821, + "address": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "name": "Compound", + "buyable": true, + "symbol": "COMP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/comp.png", + "sendable": true, + "dailyLimit": true, + "displayDecimals": 4, + "brandColor": "#00D395", + "description": "Compound (COMP) powers the community governance of the Compound protocol. COMP token-holders and their delegates debate, propose, and vote on changes to the protocol. By placing COMP directly into the hands of users and applications, an increasingly large ecosystem will be able to upgrade the protocol, and will be incentivized to collectively steward the protocol into the future with good governance.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.1984, + "ccyValue": 264.74, + "ethDayChange": 0.113281436312614365, + "ccyDayChange": 0.161803 + }, + "onchainEthPrice": 0.18186745336625415, + "tokenlist": true + }, { + "id": 1212, + "address": "0x9469d013805bffb7d3debe5e7839237e535ec483", + "name": "Darwinia Network Native Token", + "buyable": true, + "symbol": "RING", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ring.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#E54B7A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00006698673695764, + "ccyValue": 0.089261, + "ethDayChange": -0.020599686642055927, + "ccyDayChange": 0.018403 + }, + "onchainEthPrice": 0.0000749, + "tokenlist": true + }, { + "id": 2947, + "address": "0xee573a945b01b788b9287ce062a0cfc15be9fd86", + "name": "Exeedme", + "buyable": true, + "symbol": "XED", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000548168857540516, + "ccyValue": 0.730599, + "ethDayChange": 0.048521525472464264, + "ccyDayChange": 0.089786 + }, + "onchainEthPrice": 0.000537918987733031, + "tokenlist": true + }, { + "id": 132, + "address": "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5", + "name": "Compound Ether", + "buyable": false, + "symbol": "cETH", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/ceth.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867640, + "ethValue": 0.020032685773796425, + "ccyValue": 26.635697, + "ethDayChange": 0.001762013346522932, + "ccyDayChange": 0.04331 + }, + "onchainEthPrice": 0.020024862902441761, + "tokenlist": false + }, { + "id": 687, + "address": "0xa1d65e8fb6e87b60feccbc582f7f97804b725521", + "name": "DXdao", + "buyable": true, + "symbol": "DXD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dxd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3855F5", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.12434353, + "ccyValue": 165.63, + "ethDayChange": -0.051245988282297351, + "ccyDayChange": -0.010751 + }, + "onchainEthPrice": 0.1461, + "tokenlist": true + }, { + "id": 2487, + "address": "0x8888801af4d980682e47f1a9036e589479e835c5", + "name": "88mph.app", + "buyable": true, + "symbol": "MPH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.10061095, + "ccyValue": 134.02, + "ethDayChange": -0.015448437913752884, + "ccyDayChange": 0.026658 + }, + "onchainEthPrice": 0.11414575379076128, + "tokenlist": true + }, { + "id": 941, + "address": "0x4e15361fd6b4bb609fa63c81a2be19d873717870", + "name": "Fantom Token", + "buyable": false, + "symbol": "FTM", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00008453, + "ccyValue": 0.1126, + "ethDayChange": 0.457035317213727151, + "ccyDayChange": 0.513543 + }, + "onchainEthPrice": 0.00006527, + "tokenlist": false + }, { + "id": 972, + "address": "0x5caf454ba92e6f2c929df14667ee360ed9fd5b26", + "name": "Dev", + "buyable": true, + "symbol": "DEV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dev.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00353351, + "ccyValue": 4.69, + "ethDayChange": -0.010384838360046939, + "ccyDayChange": 0.028509 + }, + "onchainEthPrice": 0.00357772, + "tokenlist": true + }, { + "id": 2932, + "address": "0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44", + "name": "Whiteheart Token", + "buyable": true, + "symbol": "WHITE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 2.420183022254704223, + "ccyValue": 3229.744872, + "ethDayChange": 0.012628879604478754, + "ccyDayChange": 0.061139 + }, + "onchainEthPrice": 2.345706292427557088, + "tokenlist": true + }, { + "id": 813, + "address": "0x9f49ed43c90a540d1cf12f6170ace8d0b88a14e6", + "name": "ETH RSI 60/40 Yield II", + "buyable": false, + "symbol": "ETHRSIAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-18", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.643536257024, + "ccyValue": 858.104454, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.686501759350037626, + "tokenlist": false + }, { + "id": 3189, + "address": "0xf18cffb528eca0ea31d1d6b28bc80d2eca34d14d", + "name": "RealToken S 25097 Andover Drive Detroit MI", + "buyable": false, + "symbol": "REALTOKEN-25", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3182, + "address": "0x90bb609649e0451e5ad952683d64bd2d1f245840", + "name": "Curve.fi eursCRV Gauge Deposit", + "buyable": false, + "symbol": "eursCRV-gaug", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2635, + "address": "0x5dfbe95925ffeb68f7d17920be7b313289a1a583", + "name": "Uniswap V2 ETH-MEME", + "buyable": false, + "symbol": "ETH-MEME", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 793, + "address": "0x88652845a5495983b70aebbf25102361552d5e54", + "name": "PhotochainToken", + "buyable": false, + "symbol": "PHT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 162, + "address": "0x1bcfd19f541eb62c8cfebe53fe72bf2afc35a255", + "name": "MIKETANGOBRAVO18", + "buyable": false, + "symbol": "MTB18", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2617, + "address": "0xac6df26a590f08dcc95d5a4705ae8abbc88509ef", + "name": "Aave interest bearing ENJ", + "buyable": false, + "symbol": "aENJ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/aenj.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-11", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000282992992707559, + "ccyValue": 0.377173, + "ethDayChange": -0.041400912762080419, + "ccyDayChange": -0.006409 + }, + "tokenlist": false + }, { + "id": 404, + "address": "0x6f9d718caf76055e697adffd5e9f9f94753a7501", + "name": "Hydro Pool Dai", + "buyable": false, + "symbol": "pDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 798, + "address": "0x395a1350db9627360d09c8b3e7c31fb84261b8f2", + "name": "GHOST-ETH Uniswap pool token", + "buyable": false, + "symbol": "GHOST-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 861, + "address": "0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509", + "name": "UniPower", + "buyable": false, + "symbol": "POWER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001916220330011438, + "ccyValue": 2.553938, + "ethDayChange": 4.015233275783704983, + "ccyDayChange": 4.232761 + }, + "tokenlist": false + }, { + "id": 1756, + "address": "0x3a1c1d1c06be03cddc4d3332f7c20e1b37c97ce9", + "name": "Vybe", + "buyable": false, + "symbol": "VYBE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000060379128312261, + "ccyValue": 0.08056, + "ethDayChange": -0.070465521915830031, + "ccyDayChange": -0.032847 + }, + "tokenlist": false + }, { + "id": 1962, + "address": "0x06fa21bf2de863281eb4b84c0850becad65bf60e", + "name": "WETH-CDAI", + "buyable": false, + "symbol": "WETHCDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1725, + "address": "0xc7bcfeb0e652f75dabcd4f6335cd6741d70bf341", + "name": "Elite.Finance", + "buyable": false, + "symbol": "ELITE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1062, + "address": "0x4ba012f6e411a1be55b98e9e62c3a4ceb16ec88b", + "name": "Cybercoin", + "buyable": false, + "symbol": "CBR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 3.1710287644E-8, + "ccyValue": 0.000042, + "ethDayChange": 0.000324531356466877, + "ccyDayChange": 0.05 + }, + "tokenlist": false + }, { + "id": 745, + "address": "0xebe4a49df7885d015329c919bf43e6460a858f1e", + "name": "SHOOK", + "buyable": false, + "symbol": "SHK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 1.801E-7, + "ccyValue": 0.00024, + "ethDayChange": -0.571903969574518659, + "ccyDayChange": -0.591837 + }, + "tokenlist": false + }, { + "id": 1011, + "address": "0x1a3adff32e611ff3afcbf5f2d8a9d0440e788ddf", + "name": "Swole Dogecoin", + "buyable": false, + "symbol": "SWOGE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2793, + "address": "0xc12c4c3e0008b838f75189bfb39283467cf6e5b3", + "name": "0xBTC-ETH Uniswap pool token", + "buyable": false, + "symbol": "0xBTC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2865, + "address": "0x610c67be018a5c5bdc70acd8dc19688a11421073", + "name": "HYPE-Finance", + "buyable": false, + "symbol": "HYPE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.04455025, + "ccyValue": 60.03, + "ethDayChange": 0.032045110427048835, + "ccyDayChange": 0.062666 + }, + "tokenlist": false + }, { + "id": 3077, + "address": "0x817bbdbc3e8a1204f3691d14bb44992841e3db35", + "name": "CudosToken", + "buyable": false, + "symbol": "CUDOS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000050882665583382, + "ccyValue": 0.067802, + "ethDayChange": 0.025647143038406224, + "ccyDayChange": 0.065784 + }, + "tokenlist": false + }, { + "id": 2806, + "address": "0x531842cebbdd378f8ee36d171d6cc9c4fcf475ec", + "name": "Aave variable debt bearing USDT", + "buyable": false, + "symbol": "variableDebt", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1122, + "address": "0xd341d1680eeee3255b8c4c75bcce7eb57f144dae", + "name": "onG", + "buyable": false, + "symbol": "ONG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000002968088828886, + "ccyValue": 0.003956, + "ethDayChange": -0.037559149946114039, + "ccyDayChange": 0.000253 + }, + "tokenlist": false + }, { + "id": 2516, + "address": "0xa2ef2757d2ed560c9e3758d1946d7bcccbd5a7fe", + "name": "Adventure", + "buyable": false, + "symbol": "TWA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00020705, + "ccyValue": 0.277427, + "ethDayChange": 0.0644149701830146, + "ccyDayChange": 0.107223 + }, + "tokenlist": false + }, { + "id": 2821, + "address": "0xc888a0ab4831a29e6ca432babf52e353d23db3c2", + "name": "FastSwapToken", + "buyable": false, + "symbol": "FAST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.003534440658419032, + "ccyValue": 4.716727, + "ethDayChange": -0.114339739897407543, + "ccyDayChange": -0.078037 + }, + "tokenlist": false + }, { + "id": 1484, + "address": "0x67bc218f5ea919ff9003b28c1702d468312af302", + "name": "OLD RealToken D 10048 Grayton St Detroit MI", + "buyable": false, + "symbol": "10048 Grayto", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2166, + "address": "0x88d59ba796fdf639ded3b5e720988d59fdb71eb8", + "name": "Payship.org", + "buyable": false, + "symbol": "PSHP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02699041, + "ccyValue": 36.36, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1005, + "address": "0xa9859874e1743a32409f75bb11549892138bba1e", + "name": "Synth iETH", + "buyable": false, + "symbol": "iETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.4680228497847001, + "ccyValue": 623.78074, + "ethDayChange": -0.088875611594605145, + "ccyDayChange": -0.048984 + }, + "onchainEthPrice": 0.50731985, + "tokenlist": false + }, { + "id": 1703, + "address": "0x00a8b738e453ffd858a7edf03bccfe20412f0eb0", + "name": "AllianceBlock Token", + "buyable": true, + "symbol": "ALBT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/albt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#045AA5", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000631308220239782, + "ccyValue": 0.842311, + "ethDayChange": 0.134963114197718843, + "ccyDayChange": 0.180898 + }, + "onchainEthPrice": 0.0006031, + "tokenlist": true + }, { + "id": 2532, + "address": "0xb9871cb10738eada636432e86fc0cb920dc3de24", + "name": "PRIA", + "buyable": false, + "symbol": "PRIA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02970559, + "ccyValue": 39.48, + "ethDayChange": -0.057982703921204794, + "ccyDayChange": -0.023383 + }, + "tokenlist": false + }, { + "id": 927, + "address": "0x050397956e1fc8a0a2e62af035275f8a415b85a7", + "name": "TKN-ETH Uniswap pool token", + "buyable": false, + "symbol": "TKN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1905, + "address": "0x15105a6d2e8f52041f5c8731a580807de8cffa81", + "name": "pot.finance", + "buyable": false, + "symbol": "POT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 610, + "address": "0xa757d6110e547999f3a4af9422d82421a1f82b6c", + "name": "BTEN PLATINUM", + "buyable": false, + "symbol": "BTNP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 84, + "address": "0x4092678e4e78230f46a1534c0fbc8fa39780892b", + "name": "Odyssey", + "buyable": false, + "symbol": "OCN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ocn.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.856E-7, + "ccyValue": 0.000247, + "ethDayChange": 0.014207650273224044, + "ccyDayChange": 0.051064 + }, + "tokenlist": false + }, { + "id": 2473, + "address": "0xf38839d243f97427e4291f6563d3fb5ba2e27c37", + "name": "Bitcoin Trend Follower Alpha", + "buyable": false, + "symbol": "BTCALPHA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2850, + "address": "0x1d287cc25dad7ccaf76a26bc660c5f7c8e2a05bd", + "name": "Fetch", + "buyable": false, + "symbol": "FET", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00006851, + "ccyValue": 0.09127, + "ethDayChange": -0.045287338430636628, + "ccyDayChange": -0.00815 + }, + "tokenlist": false + }, { + "id": 1549, + "address": "0x697956b24c4385aa7e3f794f179ac1524a1abcdb", + "name": "Uniswap V2 DESH-ETH", + "buyable": false, + "symbol": "DESH-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1662, + "address": "0xf756042f382f081954cead84ddb9dc9bbcfac0cd", + "name": "OVEN.FINANCE", + "buyable": false, + "symbol": "OVN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2751, + "address": "0x84f06ffa13e6fe2844ee9f5e085a6a55585b2fec", + "name": "Flux Token", + "buyable": false, + "symbol": "FLX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1988, + "address": "0xafff1088fd0857104e17e700902e3581953f13f4", + "name": "Bebop Finance", + "buyable": false, + "symbol": "BBOP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1583, + "address": "0x8c9d8f5cc3427f460e20f63b36992f74aa19e27d", + "name": "DeFiat Points", + "buyable": false, + "symbol": "DFTP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1609, + "address": "0xc031bbb4d48a05f599d24f1ed6e8f8a127b33a6e", + "name": "Yearn Finance v2", + "buyable": false, + "symbol": "YFIv2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2535, + "address": "0x4c19596f5aaff459fa38b0f7ed92f11ae6543784", + "name": "TrueFi", + "buyable": true, + "symbol": "TRU", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tru.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1253FA", + "description": "TrueFi is a protocol for creating interest-bearing pools with a high APR for liquidity providers. TrueFi includes utility and rewards mechanisms using TrustTokens (TRU) and rewards participants for maintaining stable, high APRs. TRU is the native token of the TrueFi protocol. TrustToken holders ultimately have a say over who is a credible borrower in the prediction market. TRU gives the holder the ability to rate credit for third parties. Through TRU credit rating, a permissionless system of credit can be built which operates purely through incentives.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00017277, + "ccyValue": 0.229658, + "ethDayChange": 0.017957916424202459, + "ccyDayChange": 0.05522 + }, + "onchainEthPrice": 0.0001952, + "tokenlist": true + }, { + "id": 718, + "address": "0x8878df9e1a7c87dcbf6d3999d997f262c05d8c70", + "name": "LRC-ETH Uniswap pool token", + "buyable": false, + "symbol": "LRC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-14", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.041351469730235343, + "ccyValue": 55.115184, + "ethDayChange": 0.035972592710345953, + "ccyDayChange": 0.074614 + }, + "onchainEthPrice": 0.037079653135742876, + "tokenlist": false + }, { + "id": 76, + "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "name": "Maker", + "buyable": true, + "symbol": "MKR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mkr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1AAB9B", + "description": "MKR, from MakerDAO, is a utility token, governance token and recapitalization resource of the Maker system. There are a total of 1,000,000 MKR. As a utility token, MKR is required for paying the fees accrued on Collateral Debt Positions (CDPs) that have been used to generate Dai in the Maker Protocol. As a governance token, MKR is used by MKR holders to vote for the parameters of the Protocol.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.062260620419618303, + "ccyValue": 1415.548765, + "ethDayChange": -0.010924995465879416, + "ccyDayChange": 0.025247 + }, + "onchainEthPrice": 1.22874613795635581, + "tokenlist": true + }, { + "id": 2121, + "address": "0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1", + "name": "Polyient Games Governance Token", + "buyable": true, + "symbol": "PGT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.098675509390464842, + "ccyValue": 131.682901, + "ethDayChange": 0.158713372610175159, + "ccyDayChange": 0.210543 + }, + "onchainEthPrice": 0.078975762061804619, + "tokenlist": true + }, { + "id": 1311, + "address": "0xeeeeeeeee2af8d0e1940679860398308e0ef24d6", + "name": "Ethverse Token", + "buyable": true, + "symbol": "ETHV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ethv.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000051582031249489, + "ccyValue": 0.068822, + "ethDayChange": -0.070717142862156184, + "ccyDayChange": -0.032475 + }, + "onchainEthPrice": 0.00006123, + "tokenlist": true + }, { + "id": 1678, + "address": "0xb8baa0e4287890a5f79863ab62b7f175cecbd433", + "name": "Swerve DAO Token", + "buyable": true, + "symbol": "SWRV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/swrv.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#373E43", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00069988, + "ccyValue": 0.930347, + "ethDayChange": 0.234573998941612277, + "ccyDayChange": 0.277774 + }, + "onchainEthPrice": 0.00063221, + "tokenlist": true + }, { + "id": 3196, + "address": "0x41bbedd7286daab5910a1f15d12cbda839852bd7", + "name": "Wrapped Mirror MSFT Token", + "buyable": false, + "symbol": "mMSFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.18426802995166794, + "ccyValue": 245.539354, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3046, + "address": "0x61b62c5d56ccd158a38367ef2f539668a06356ab", + "name": "FNK-USDT Uniswap pool token", + "buyable": false, + "symbol": "FNK-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-42", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 4914.421022332820414171, + "ccyValue": 6558316.450286, + "ethDayChange": -0.039178106940279354, + "ccyDayChange": 0.000393 + }, + "tokenlist": false + }, { + "id": 1547, + "address": "0xc4c2614e694cf534d407ee49f8e44d125e4681c4", + "name": "Chain Games", + "buyable": false, + "symbol": "CHAIN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000011247087934501, + "ccyValue": 0.01499, + "ethDayChange": 0.044297858356638812, + "ccyDayChange": 0.08939 + }, + "tokenlist": false + }, { + "id": 657, + "address": "0xf906997808f73b09c1007b98ab539b189282b192", + "name": "USDG", + "buyable": false, + "symbol": "USDG", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.53E-8, + "ccyValue": 0.000011, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 772, + "address": "0xe20afc4febb64608a21e68a716f5e00a096b503d", + "name": "Midas Coin", + "buyable": false, + "symbol": "MID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2766, + "address": "0x9e3319636e2126e3c0bc9e3134aec5e1508a46c7", + "name": "UTN-P: Universa Token", + "buyable": false, + "symbol": "UTNP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000003324460106883, + "ccyValue": 0.00443, + "ethDayChange": -0.115835077956648936, + "ccyDayChange": -0.076699 + }, + "tokenlist": false + }, { + "id": 2069, + "address": "0x83970b5570e4cb5fc5e21ef9b9f3c4f8a129c2f2", + "name": "SakeSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 638, + "address": "0xbddd682e63dd9f9fa3b97aea88772e77cf3e5013", + "name": "CoindicatorBTC Set", + "buyable": false, + "symbol": "COINBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-6", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.103531888837548665, + "ccyValue": 138.135536, + "ethDayChange": -0.038953740003691644, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 676, + "address": "0x78751b12da02728f467a44eac40f5cbc16bd7934", + "name": "IdleDAI v3 [Max yield]", + "buyable": false, + "symbol": "idleDAIYield", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00078405, + "ccyValue": 1.05, + "ethDayChange": -0.040107246483270283, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2023, + "address": "0xbf06035c31386d0d024895a97d0cc6ef6884854f", + "name": "FANTA.FINANCE", + "buyable": false, + "symbol": "FANTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000854, + "ccyValue": 0.1203, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2339, + "address": "0x4474859f28a3ec265e2791b98a61f2bf9e0be295", + "name": "TORE", + "buyable": false, + "symbol": "TORE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 471, + "address": "0x1fc31488f28ac846588ffa201cde0669168471bd", + "name": "UAX", + "buyable": false, + "symbol": "UAX", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2587, + "address": "0xe93e8aa4e88359dacf33c491cf5bd56eb6c110c1", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-13", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 34.157300846175162147, + "ccyValue": 45515.241585, + "ethDayChange": 0.064677656030555389, + "ccyDayChange": 0.105413 + }, + "tokenlist": false + }, { + "id": 2755, + "address": "0x6ff249432df165f209782995dc27c9c53bd11ee1", + "name": "xETH-G-ETH Uniswap pool token", + "buyable": false, + "symbol": "xETH-G-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1777, + "address": "0xd6c67b93a7b248df608a653d82a100556144c5da", + "name": "ExNetwork Community Token", + "buyable": false, + "symbol": "EXNT", + "decimals": 16, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00009377, + "ccyValue": 0.12566, + "ethDayChange": 0.076578645235361653, + "ccyDayChange": 0.105987 + }, + "tokenlist": false + }, { + "id": 1250, + "address": "0xe277ac35f9d327a670c1a3f3eec80a83022431e4", + "name": "PolypuX", + "buyable": false, + "symbol": "PUX", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000302, + "ccyValue": 0.004019, + "ethDayChange": 0.098181818181818182, + "ccyDayChange": 0.14241 + }, + "tokenlist": false + }, { + "id": 1585, + "address": "0x7750a0d355109070e9303883f17cbc42fdb405cc", + "name": "Cherry Blossom", + "buyable": false, + "symbol": "CHRYB", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1195, + "address": "0x0b193245f8b232e967ef9da93a371cd152a574eb", + "name": "SNX Binary Option", + "buyable": false, + "symbol": "sOPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1654, + "address": "0x88093840aad42d2621e1a452bf5d7076ff804d61", + "name": "Soft Yearn Finance", + "buyable": false, + "symbol": "SYFI", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3053, + "address": "0x831091da075665168e01898c6dac004a867f1e1b", + "name": "Gains V2", + "buyable": false, + "symbol": "GFARM2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.020546735642656678, + "ccyValue": 27.419709, + "ethDayChange": -0.224141725751742692, + "ccyDayChange": -0.192038 + }, + "tokenlist": false + }, { + "id": 2255, + "address": "0xf050e54d2b50c055c9919a4b856a195221d3db71", + "name": "Rutile", + "buyable": false, + "symbol": "RUT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 225, + "address": "0x2630997aab62fa1030a8b975e1aa2dc573b18a13", + "name": "HYPE Token", + "buyable": false, + "symbol": "HYPE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4E-8, + "ccyValue": 0.000006, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3161, + "address": "0x469b65889da7fcd5a121ba8abd589215c769624a", + "name": "Pool Shares", + "buyable": false, + "symbol": "pETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3165, + "address": "0xcdaaf722453c371352cc05414a7098afb117d09d", + "name": "WETHUSDC 29-January-2021 1280Call WETH Collateral", + "buyable": false, + "symbol": "oWETHUSDC/WE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1291, + "address": "0xbb59aac3f3aab093db89a0ab8c6e9ad9dc8f9f7c", + "name": "ORN-ETH Uniswap pool token", + "buyable": false, + "symbol": "ORN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3090, + "address": "0x63d0eea1d7c0d1e89d7e665708d7e8997c0a9ed6", + "name": "Ethanol", + "buyable": false, + "symbol": "ENOL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.276809637739432695, + "ccyValue": 369.403677, + "ethDayChange": -0.042200920559938448, + "ccyDayChange": -0.002569 + }, + "tokenlist": false + }, { + "id": 3191, + "address": "0x3832d2f059e55934220881f831be501d180671a7", + "name": "renDOGE", + "buyable": false, + "symbol": "renDOGE", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1006, + "address": "0x1b76d0364e803fb94c1d5ca9faf55f05ee494731", + "name": "Uniswap Community Network", + "buyable": false, + "symbol": "UCN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1731, + "address": "0x5f8a35021f1c9be802000ca141d7eeee577df7fd", + "name": "Farm House Finance", + "buyable": false, + "symbol": "FHSE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.004849057471091368, + "ccyValue": 6.462823, + "ethDayChange": -0.00206826507105883, + "ccyDayChange": 0.037206 + }, + "tokenlist": false + }, { + "id": 1248, + "address": "0x4429cde3162eb941c7e46c36c389b162b9e2f1e0", + "name": "RETARD TOKEN", + "buyable": false, + "symbol": "TARD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2681, + "address": "0xba0d050bbb662c190bf99c61708b42ff9d8750e0", + "name": "OLD RealToken S 13116 Kilbourne Ave Detroit MI", + "buyable": false, + "symbol": "13116 Kilbou", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2226, + "address": "0xed643618dd5194f243a8f23c7bd786a37a6dcf8b", + "name": "YFBETA-ETH Uniswap pool token", + "buyable": false, + "symbol": "YFBETA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 558, + "address": "0x1fff4dd33105054e853955c6d0dba82859c01cff", + "name": "Unochain token", + "buyable": false, + "symbol": "UNOC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1E-8, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1779, + "address": "0x065ccf8d682995be66e38eaee3c2475f636634ab", + "name": "YFIW.FINANCE", + "buyable": false, + "symbol": "YFIW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2993, + "address": "0xcf1c36209be14206a9a36a6d0e1e4a66a8dcd530", + "name": "MetaMaskSwap", + "buyable": false, + "symbol": "METAMASK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2671, + "address": "0xa8f8dc37f3ab1f2357ec1b6345e02798b4124dcd", + "name": "xBond", + "buyable": false, + "symbol": "xBond", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2278, + "address": "0x9896bd979f9da57857322cc15e154222c4658a5a", + "name": "Uniswap V2 cDAI-ETH", + "buyable": false, + "symbol": "cDAI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2075, + "address": "0xa93f2a6b50d92bd64848f5ea15164f558b75ce9c", + "name": "thirm", + "buyable": false, + "symbol": "thrm", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2429, + "address": "0xc3eb2622190c57429aac3901808994443b64b466", + "name": "ORO Token", + "buyable": false, + "symbol": "ORO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000261019123186818, + "ccyValue": 0.347886, + "ethDayChange": -0.02619661626091976, + "ccyDayChange": 0.012126 + }, + "tokenlist": false + }, { + "id": 2466, + "address": "0xbfbb9b401114e367f7e174cdf4fbb8fcc0585fcc", + "name": "Uniswap LP [KETH/ROOT]", + "buyable": false, + "symbol": "RLP:KETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1503, + "address": "0x798a9055a98913835bbfb45a0bbc209438dcfd97", + "name": "New Year Bull", + "buyable": false, + "symbol": "NYB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000983, + "ccyValue": 0.013122, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2572, + "address": "0x8a8079c7149b8a1611e5c5d978dca3be16545f83", + "name": "Synth iADA", + "buyable": false, + "symbol": "iADA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005249, + "ccyValue": 0.066866, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1415, + "address": "0x6226caa1857afbc6dfb6ca66071eb241228031a1", + "name": "Linkart", + "buyable": false, + "symbol": "LAR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000203, + "ccyValue": 0.002697, + "ethDayChange": 0.068421052631578947, + "ccyDayChange": 0.108964 + }, + "tokenlist": false + }, { + "id": 1196, + "address": "0x3205df88cf95b5a702f2b6a1cc10e2075f54387c", + "name": "BOMBX", + "buyable": false, + "symbol": "XIO", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3129, + "address": "0x9a13867048e01c663ce8ce2fe0cdae69ff9f35e3", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1562, + "address": "0xba21ef4c9f433ede00badefcc2754b8e74bd538a", + "name": "Swapfolio", + "buyable": false, + "symbol": "SWFL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00007776, + "ccyValue": 0.103266, + "ethDayChange": -0.01917255297679112, + "ccyDayChange": 0.017499 + }, + "tokenlist": false + }, { + "id": 1971, + "address": "0x250a3500f48666561386832f1f1f1019b89a2699", + "name": "SAFE2", + "buyable": false, + "symbol": "SAFE2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.29253567561229, + "ccyValue": 389.891477, + "ethDayChange": -0.033372517078835925, + "ccyDayChange": 0.107583 + }, + "tokenlist": false + }, { + "id": 92, + "address": "0x595832f8fc6bf59c85c527fec3740a1b7a361269", + "name": "Power Ledger", + "buyable": true, + "symbol": "POWR", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/powr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#05BCA9", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008038, + "ccyValue": 0.107075, + "ethDayChange": 0.006256092359739828, + "ccyDayChange": 0.045317 + }, + "onchainEthPrice": 0.00009834, + "tokenlist": true + }, { + "id": 319, + "address": "0xef0fda1d4bd73ddc2f93a4e46e2e5adbc2d668f4", + "name": "ETH 20 MA Crossover Yield", + "buyable": false, + "symbol": "ETHMACOAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-4", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.120516702208, + "ccyValue": 1494.119969, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 1.37710521783947099, + "tokenlist": false + }, { + "id": 1394, + "address": "0xd5525d397898e5502075ea5e830d8914f6f0affe", + "name": "MEME", + "buyable": true, + "symbol": "MEME", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/meme.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#7F47DD", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.39487055404746524, + "ccyValue": 526.283378, + "ethDayChange": 0.059471772342341957, + "ccyDayChange": 0.105359 + }, + "onchainEthPrice": 0.37433626, + "tokenlist": true + }, { + "id": 2410, + "address": "0xe6179bb571d2d69837be731da88c76e377ec4738", + "name": "Wormhole.Finance", + "buyable": false, + "symbol": "WHOLE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00063711, + "ccyValue": 0.802148, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3198, + "address": "0xdbb2f12cb89af05516768c2c69a771d92a25d17c", + "name": "Beast DAO", + "buyable": false, + "symbol": "BEAST", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00106535, + "ccyValue": 1.43, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3197, + "address": "0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51", + "name": "BITTOKEN", + "buyable": false, + "symbol": "BITT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00007711, + "ccyValue": 0.103068, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 889, + "address": "0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3", + "name": "MedToken", + "buyable": false, + "symbol": "MTN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001476095002006, + "ccyValue": 0.001967, + "ethDayChange": -0.030778888257632345, + "ccyDayChange": 0.007168 + }, + "tokenlist": false + }, { + "id": 1642, + "address": "0x1a3496c18d558bd9c6c8f609e1b129f67ab08163", + "name": "DEAPCOIN", + "buyable": false, + "symbol": "DEP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000004139535993908, + "ccyValue": 0.005517, + "ethDayChange": -0.028190941016815735, + "ccyDayChange": 0.01007 + }, + "tokenlist": false + }, { + "id": 2131, + "address": "0x8a649274e4d777ffc6851f13d23a86bbfa2f2fbf", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-3", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.010864936350468982, + "ccyValue": 14.491951, + "ethDayChange": -0.019231010939488364, + "ccyDayChange": 0.018112 + }, + "tokenlist": false + }, { + "id": 493, + "address": "0xef88808d0fbb5c0c2c89f6d9b45eda53c0150993", + "name": "iBuildApp Network Token", + "buyable": false, + "symbol": "IBA", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2461, + "address": "0x2855d51a6c054e5e879bfce18e3a028ae5c190f7", + "name": "Uniswap V2 zHEGIC-ETH", + "buyable": false, + "symbol": "zHEGIC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2852, + "address": "0xa28979ee7ac9d688e798cc5450da307ca5f51908", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 168, + "address": "0x163c649ac276c5fdcc27db30a1c1f070cb731c04", + "name": "SimpleSwap Coin", + "buyable": false, + "symbol": "SWAP", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1573, + "address": "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1", + "name": "Concentrated Voting Power", + "buyable": true, + "symbol": "CVP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cvp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#21CB2C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00208028, + "ccyValue": 2.77, + "ethDayChange": -0.052163586880003682, + "ccyDayChange": -0.015128 + }, + "onchainEthPrice": 0.002085194359387532, + "tokenlist": true + }, { + "id": 105, + "address": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "name": "Synthetix Network Token", + "buyable": true, + "symbol": "SNX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/snx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00D1FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.013381675946530905, + "ccyValue": 17.843401, + "ethDayChange": 0.082802931830886986, + "ccyDayChange": 0.125942 + }, + "onchainEthPrice": 0.013279854933184693, + "tokenlist": true + }, { + "id": 85, + "address": "0xd26114cd6ee289accf82350c8d8487fedb8a0c07", + "name": "OMG Network", + "buyable": true, + "symbol": "OMG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/omg.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3C4449", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0024868, + "ccyValue": 3.31, + "ethDayChange": -0.004019602156844708, + "ccyDayChange": 0.031844 + }, + "onchainEthPrice": 0.002525, + "tokenlist": true + }, { + "id": 826, + "address": "0x54e8371c1ec43e58fb53d4ef4ed463c17ba8a6be", + "name": "ETH 26 EMA Crossover Yield II", + "buyable": false, + "symbol": "ETHEMAAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-16", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.77980499968, + "ccyValue": 1039.807992, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.789128141021570807, + "tokenlist": false + }, { + "id": 136, + "address": "0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407", + "name": "Compound 0x", + "buyable": false, + "symbol": "cZRX", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/czrx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867640, + "ethValue": 0.000009923040003897, + "ccyValue": 0.013194, + "ethDayChange": 0.131475485050969213, + "ccyDayChange": 0.178141 + }, + "onchainEthPrice": 0.000009555526015622, + "tokenlist": false + }, { + "id": 213, + "address": "0xb9ffe0b8ee2d1af94202ffed366520300748a4d8", + "name": "ETH/BTC Ratio 26 EMA Crossover", + "buyable": false, + "symbol": "ETHBTC26EMAC", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-7", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.414195908608, + "ccyValue": 552.297326, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.476715613286258339, + "tokenlist": false + }, { + "id": 210, + "address": "0xaf1250fa68d7decd34fd75de8742bc03b29bd58e", + "name": "Invictus Hyperion", + "buyable": false, + "symbol": "IHF", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00011182854722664, + "ccyValue": 0.149045, + "ethDayChange": -0.032293525925490047, + "ccyDayChange": 0.003866 + }, + "onchainEthPrice": 0.00011764752341702, + "tokenlist": false + }, { + "id": 1709, + "address": "0xcec2387e04f9815bf12670dbf6cf03bba26df25f", + "name": "Yfilend", + "buyable": true, + "symbol": "Yfild", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yfild.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FD7341", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00076051, + "ccyValue": 1.02, + "ethDayChange": -0.050857399595636872, + "ccyDayChange": 0 + }, + "onchainEthPrice": 0.00076221, + "tokenlist": true + }, { + "id": 374, + "address": "0xdf2c7238198ad8b389666574f2d8bc411a4b7428", + "name": "Mainframe Token", + "buyable": true, + "symbol": "MFT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000050374, + "ccyValue": 0.006698, + "ethDayChange": 0.387618201433043172, + "ccyDayChange": 0.434876 + }, + "onchainEthPrice": 0.000004501672577695, + "tokenlist": true + }, { + "id": 1124, + "address": "0xbc86727e770de68b1060c91f6bb6945c73e10388", + "name": "Ink Protocol", + "buyable": true, + "symbol": "XNK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/xnk.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3C82B4", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 9.19685697205E-7, + "ccyValue": 0.001226, + "ethDayChange": -0.000341633472826087, + "ccyDayChange": 0.036348 + }, + "onchainEthPrice": 9.2E-7, + "tokenlist": true + }, { + "id": 637, + "address": "0x09e4bdfb273245063ef5e800d891eff7d04f9b83", + "name": "ETH Price Action Candlestick Set", + "buyable": false, + "symbol": "ETHPA", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-18", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.736771, + "ccyValue": 982.425574, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.736771, + "tokenlist": false + }, { + "id": 3036, + "address": "0xffffffff2ba8f66d4e51811c5190992176930278", + "name": "Furucombo", + "buyable": true, + "symbol": "COMBO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001546888473318734, + "ccyValue": 2.061247, + "ethDayChange": -0.152478112788951287, + "ccyDayChange": -0.115345 + }, + "onchainEthPrice": 0.00183913, + "tokenlist": true + }, { + "id": 2, + "address": "0xb98d4c97425d9908e66e53a6fdf673acca0be986", + "name": "ArcBlock", + "buyable": false, + "symbol": "ABT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/abt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#44CDC6", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000078152809653575, + "ccyValue": 0.104162, + "ethDayChange": -0.068944369149690255, + "ccyDayChange": -0.02863 + }, + "onchainEthPrice": 0.000090104607140003, + "tokenlist": false + }, { + "id": 2207, + "address": "0xadb2437e6f65682b85f814fbc12fec0508a7b1d0", + "name": "UniCrypt", + "buyable": false, + "symbol": "UNCX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.09367150129889032, + "ccyValue": 124.845354, + "ethDayChange": 0.113473735111260835, + "ccyDayChange": 0.162217 + }, + "tokenlist": false + }, { + "id": 287, + "address": "0x8d9a1088169bf4f9721a687e4669d14345504606", + "name": "2UP", + "buyable": false, + "symbol": "2UP", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2224, + "address": "0x05a0d55bbb2c047a3624af4db6d3a3ce2ea7da09", + "name": "Penguin Finance", + "buyable": false, + "symbol": "Penguin", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.020626796606932965, + "ccyValue": 27.526551, + "ethDayChange": -0.012067819318965166, + "ccyDayChange": 0.028427 + }, + "tokenlist": false + }, { + "id": 1685, + "address": "0xcd453276f4db9c38855056a036c4a99a8cac7b8d", + "name": "Yakuza DAO", + "buyable": false, + "symbol": "YKZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006908, + "ccyValue": 0.083402, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1264, + "address": "0x64a60493d888728cf42616e034a0dfeae38efcf0", + "name": "Oneledger Token", + "buyable": false, + "symbol": "OLT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000003497573807156, + "ccyValue": 0.004661, + "ethDayChange": -0.011984800238418079, + "ccyDayChange": 0.03188 + }, + "tokenlist": false + }, { + "id": 2756, + "address": "0xc299004a310303d1c0005cb14c70ccc02863924d", + "name": "Trinity", + "buyable": false, + "symbol": "TRI", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000028254655510192, + "ccyValue": 0.03765, + "ethDayChange": -0.077325847612270143, + "ccyDayChange": -0.041204 + }, + "tokenlist": false + }, { + "id": 548, + "address": "0x1003ec54f51565ff86ac611184ea23d6310cae71", + "name": "ETH Trending Alpha LT", + "buyable": false, + "symbol": "ETA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-33", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.21735188, + "ccyValue": 289.821458, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2971, + "address": "0xfd2a8fa60abd58efe3eee34dd494cd491dc14900", + "name": "Curve.fi aDAI/aUSDC/aUSDT", + "buyable": false, + "symbol": "a3CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2352, + "address": "0x32d588fd4d0993378995306563a04af5fa162dec", + "name": "ETH-SURF Uniswap pool token", + "buyable": false, + "symbol": "ETH-SURF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2660, + "address": "0xcdb49e21b5c3d6d2a38a648ceb97fbfabbf15832", + "name": "OXO Project", + "buyable": false, + "symbol": "OXO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2870, + "address": "0x2781246fe707bb15cee3e5ea354e2154a2877b16", + "name": "ELYSIA", + "buyable": false, + "symbol": "EL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00000186884610952, + "ccyValue": 0.00249, + "ethDayChange": -0.041617379733333333, + "ccyDayChange": -0.000803 + }, + "tokenlist": false + }, { + "id": 291, + "address": "0x423d8321be3dd7ebff5b6c7da2ef6614b8547acf", + "name": "Fundament RE 1", + "buyable": false, + "symbol": "FUND", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1513, + "address": "0x39a9e9583405d1ec12e3f018a2fcf89a4e2628b7", + "name": "aYeld.finance", + "buyable": false, + "symbol": "AIY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2120, + "address": "0xa54a6767afdd9e1d3cb9045fc9612abbf3da0de9", + "name": "Yolk Finance", + "buyable": false, + "symbol": "YOLK", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1867, + "address": "0x408e75c26e6182476940ece5b0ba6491b4f13359", + "name": "Cream Pool Token", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1893, + "address": "0x34612903db071e888a4dadcaa416d3ee263a87b9", + "name": "ethart", + "buyable": false, + "symbol": "arte", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001690800397961022, + "ccyValue": 2.253012, + "ethDayChange": -0.048500280273459615, + "ccyDayChange": -0.011267 + }, + "tokenlist": false + }, { + "id": 389, + "address": "0x8207c1ffc5b6804f6024322ccf34f29c3541ae26", + "name": "OriginToken", + "buyable": true, + "symbol": "OGN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ogn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#4083F7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000139115851684348, + "ccyValue": 0.185374, + "ethDayChange": -0.01084004536144664, + "ccyDayChange": 0.0259 + }, + "onchainEthPrice": 0.0001605, + "tokenlist": true + }, { + "id": 586, + "address": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "name": "UMA Voting Token v1", + "buyable": true, + "symbol": "UMA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/uma.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF4A4A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.007784, + "ccyValue": 10.37, + "ethDayChange": -0.02942643391521197, + "ccyDayChange": 0.009737 + }, + "onchainEthPrice": 0.00855112, + "tokenlist": true + }, { + "id": 597, + "address": "0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9", + "name": "Compound USDT", + "buyable": false, + "symbol": "cUSDT", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/compound/cusdt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867640, + "ethValue": 0.00001551144627771, + "ccyValue": 0.020624, + "ethDayChange": -0.044273180670979667, + "ccyDayChange": -0.004633 + }, + "onchainEthPrice": 0.000015652902023624, + "tokenlist": false + }, { + "id": 2379, + "address": "0xf5d669627376ebd411e34b98f19c868c8aba5ada", + "name": "Axie Infinity Shard", + "buyable": true, + "symbol": "AXS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/axs.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0F97FF", + "description": "Axie Infinity Shards are an ERC 20 governance token for the Axie universe. Holders will shape the future of Axie Infinity by signaling their support for upgrades to the ecosystem and directing usage of a Community Treasury. Axie Infinity Shards (AXS) are the glue that binds all Axie community members together. AXS holders will be able to claim rewards if they stake their tokens, play the game, and participate in key governance votes. Players will also be able to earn $AXS when they play various games within the Axie Infinity Universe and through user generated content initiatives.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0006385, + "ccyValue": 0.8506, + "ethDayChange": -0.108738135120044668, + "ccyDayChange": -0.075535 + }, + "onchainEthPrice": 0.000704784538748926, + "tokenlist": true + }, { + "id": 308, + "address": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", + "name": "Nexo", + "buyable": true, + "symbol": "NEXO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/nexo.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1A4199", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00056254, + "ccyValue": 0.749468, + "ethDayChange": -0.001703637976929902, + "ccyDayChange": 0.037901 + }, + "onchainEthPrice": 0.0004993138, + "tokenlist": true + }, { + "id": 1981, + "address": "0xf52cdcd458bf455aed77751743180ec4a595fd3f", + "name": "IdleSUSD v4 [Best yield]", + "buyable": false, + "symbol": "idleSUSDYiel", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 233, + "address": "0xbeb9ef514a379b997e0798fdcc901ee474b6d9a1", + "name": "Melon Token", + "buyable": false, + "symbol": "MLN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.028408264272148494, + "ccyValue": 37.862528, + "ethDayChange": 0.078982643389773309, + "ccyDayChange": 0.126191 + }, + "tokenlist": false + }, { + "id": 1411, + "address": "0x3da1313ae46132a397d90d95b1424a9a7e3e0fce", + "name": "ETH-CRV Uniswap pool token", + "buyable": false, + "symbol": "ETH-CRV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 631, + "address": "0xffee21b4bb7084a9416205544101ae9f472c7159", + "name": "Fart Set", + "buyable": false, + "symbol": "FART", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-5", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.515282510854384934, + "ccyValue": 687.081739, + "ethDayChange": -0.001906502111099591, + "ccyDayChange": 0.035796 + }, + "tokenlist": false + }, { + "id": 729, + "address": "0x954b890704693af242613edef1b603825afcd708", + "name": "Cardstack", + "buyable": false, + "symbol": "CARD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000159, + "ccyValue": 0.002107, + "ethDayChange": 0.006329113924050633, + "ccyDayChange": 0.041522 + }, + "tokenlist": false + }, { + "id": 2900, + "address": "0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a", + "name": "Aegis", + "buyable": false, + "symbol": "AGS", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00005849, + "ccyValue": 0.077874, + "ethDayChange": -0.037518512423893368, + "ccyDayChange": 0.003117 + }, + "tokenlist": false + }, { + "id": 2025, + "address": "0x6c32803ecf2f91b356be7a6b76e802282032647f", + "name": "BOOTY-H4KR Uniswap pool token", + "buyable": false, + "symbol": "BOOTY-H4KR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1710, + "address": "0x84294fc9710e1252d407d3d80a84bc39001bd4a8", + "name": "Squirrel Finance", + "buyable": true, + "symbol": "NUTS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/nuts.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#B67C4C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.001378576680155941, + "ccyValue": 1.839717, + "ethDayChange": 0.006848917611446797, + "ccyDayChange": 0.048511 + }, + "onchainEthPrice": 0.001249, + "tokenlist": true + }, { + "id": 2305, + "address": "0x0391d2021f89dc339f60fff84546ea23e337750f", + "name": "BarnBridge Governance Token", + "buyable": true, + "symbol": "BOND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bond.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF4339", + "description": "BarnBridge is a cross-platform protocol for tokenizing risk.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.0401223847038019, + "ccyValue": 53.475105, + "ethDayChange": 0.116642853710164909, + "ccyDayChange": 0.165035 + }, + "onchainEthPrice": 0.03909121450183059, + "tokenlist": true + }, { + "id": 3020, + "address": "0x6e9730ecffbed43fd876a264c982e254ef05a0de", + "name": "Nord Token", + "buyable": false, + "symbol": "NORD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.003689821171312608, + "ccyValue": 4.917793, + "ethDayChange": -0.008437778117765679, + "ccyDayChange": 0.035325 + }, + "tokenlist": false + }, { + "id": 1930, + "address": "0xa25d75e60d2bdfb4bf0fe5e80edadee69fd50513", + "name": "SAUCY NUGS", + "buyable": false, + "symbol": "NUGS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1474, + "address": "0xb784ced6994c928170b417bbd052a096c6fb17e2", + "name": "NMR-ETH Uniswap pool token", + "buyable": false, + "symbol": "NMR-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 706, + "address": "0xbe22ec66710caa72ab690bf816f8bce785fbbac2", + "name": "Add A New Token", + "buyable": false, + "symbol": "AANT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2719, + "address": "0x1cfac8036ed2db5f217846c6fa4f3f2aaf7a8bb3", + "name": "World Reality Coin", + "buyable": false, + "symbol": "WRCO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1340, + "address": "0xa858bc1b71a895ee83b92f149616f9b3f6afa0fb", + "name": "Kambria Token", + "buyable": false, + "symbol": "KAT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 8.95080820019E-7, + "ccyValue": 0.001193, + "ethDayChange": 0.004129668004721254, + "ccyDayChange": 0.043745 + }, + "tokenlist": false + }, { + "id": 2463, + "address": "0xd98f75b1a3261dab9eed4956c93f33749027a964", + "name": "ShareToken", + "buyable": false, + "symbol": "SHR", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000119, + "ccyValue": 0.015854, + "ethDayChange": -0.038772213247172859, + "ccyDayChange": 0.0012 + }, + "tokenlist": false + }, { + "id": 2093, + "address": "0xb6c8e5f00117136571d260bfb1baff62ddfd9960", + "name": "HOLY-ETH Uniswap pool token", + "buyable": false, + "symbol": "HOLY-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1839, + "address": "0xb93cc05334093c6b3b8bfd29933bb8d5c031cabc", + "name": "Uniswap V2 YAM-yyDAI+yUSDC+yUSDT+yTUSD", + "buyable": false, + "symbol": "YAM-yyDAI+yU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 767, + "address": "0xd6f0bb2a45110f819e908a915237d652ac7c5aa8", + "name": "DFOHub", + "buyable": false, + "symbol": "BUIDL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001080924656880139, + "ccyValue": 1.440656, + "ethDayChange": -0.02433056208241055, + "ccyDayChange": 0.014546 + }, + "tokenlist": false + }, { + "id": 1173, + "address": "0xfd510a3c53666035900ceb4d4743bd869d98d57a", + "name": "OLD RealToken 9166 Devonshire Rd Detroit MI", + "buyable": false, + "symbol": "9166 Devonsh", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1078, + "address": "0x6b63e2fa764e96b2757de65066c64dc2bfbb6f3d", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3101, + "address": "0x30647a72dc82d7fbb1123ea74716ab8a317eac19", + "name": "Interest bearing mUSD", + "buyable": false, + "symbol": "imUSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2704, + "address": "0xfb5453340c03db5ade474b27e68b6a9c6b2823eb", + "name": "MetaFactory", + "buyable": false, + "symbol": "ROBOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3174, + "address": "0x0a50c93c762fdd6e56d86215c24aaad43ab629aa", + "name": "LGO Token", + "buyable": false, + "symbol": "LGO", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000094152657890873, + "ccyValue": 0.125487, + "ethDayChange": 0.126632259074703841, + "ccyDayChange": 0.175434 + }, + "tokenlist": false + }, { + "id": 180, + "address": "0x65be44c747988fbf606207698c944df4442efe19", + "name": "Finally Usable Crypto Karma", + "buyable": false, + "symbol": "FUCK", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.000005, + "ccyValue": 0.006663, + "ethDayChange": 0, + "ccyDayChange": 0.036559 + }, + "tokenlist": false + }, { + "id": 1931, + "address": "0xb8b84ce0cade916988bd129eafd7934ade5fa6a9", + "name": "Uniswap V2 HAKKA-MKR", + "buyable": false, + "symbol": "HAKKA-MKR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1606, + "address": "0x40d03207e263adb005519882d99228c04e44ee82", + "name": "QQQ Finance", + "buyable": false, + "symbol": "QQQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2781, + "address": "0x4c8341379e95f70c08defb76c4f9c036525edc30", + "name": "RFI-ETH Uniswap pool token", + "buyable": false, + "symbol": "RFI-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 575, + "address": "0x1f6deaddc2a81704a206fd587d8e3643bd2d449c", + "name": "Ruletka", + "buyable": false, + "symbol": "RTK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 720, + "address": "0xfa281ef55b906adb561d0f807c249441e1b53a21", + "name": "Crux", + "buyable": false, + "symbol": "CRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 188, + "address": "0x2e91e3e54c5788e9fdd6a181497fdcea1de1bcc1", + "name": "Hercules", + "buyable": false, + "symbol": "HERC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003193, + "ccyValue": 0.004726, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1135, + "address": "0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd", + "name": "GRID Token", + "buyable": true, + "symbol": "GRID", + "decimals": 12, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/grid.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00011906, + "ccyValue": 0.15862, + "ethDayChange": -0.118811185001563583, + "ccyDayChange": -0.084497 + }, + "onchainEthPrice": 0.00014, + "tokenlist": true + }, { + "id": 298, + "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", + "name": "DGD", + "buyable": false, + "symbol": "DGD", + "decimals": 9, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.1926, + "ccyValue": 256.67, + "ethDayChange": 0.000856267346857791, + "ccyDayChange": 0.040135 + }, + "onchainEthPrice": 0.1931347112, + "tokenlist": false + }, { + "id": 999, + "address": "0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7", + "name": "Akropolis", + "buyable": true, + "symbol": "AKRO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/akro.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#D93CEF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.000015, + "ccyValue": 0.019985, + "ethDayChange": -0.119201409277745156, + "ccyDayChange": -0.080769 + }, + "onchainEthPrice": 0.000014519076702154, + "tokenlist": true + }, { + "id": 603, + "address": "0x78e29d35573bea6265aedfcb9f45481b717ebfde", + "name": "LINK Profit Taker Set", + "buyable": false, + "symbol": "LINKPT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-3", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.451117764015380667, + "ccyValue": 603.191283, + "ethDayChange": 0.040118539052873725, + "ccyDayChange": 0.082834 + }, + "onchainEthPrice": 0.457713049868998009, + "tokenlist": false + }, { + "id": 2264, + "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30", + "name": "Injective Token", + "buyable": true, + "symbol": "INJ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/inj.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2E3547", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.006138884218542824, + "ccyValue": 8.181903, + "ethDayChange": 0.001587800313578104, + "ccyDayChange": 0.041006 + }, + "onchainEthPrice": 0.006219, + "tokenlist": true + }, { + "id": 892, + "address": "0xa0471cdd5c0dc2614535fd7505b17a651a8f0dab", + "name": "EasySwap", + "buyable": false, + "symbol": "ESWA", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004829, + "ccyValue": 0.065052, + "ethDayChange": -0.009232663110381617, + "ccyDayChange": 0.151078 + }, + "tokenlist": false + }, { + "id": 1670, + "address": "0x327682779bab2bf4d1337e8974ab9de8275a7ca8", + "name": "Blockport Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000040310800195184, + "ccyValue": 0.053726, + "ethDayChange": 0.087423798089668195, + "ccyDayChange": 0.134441 + }, + "tokenlist": false + }, { + "id": 1470, + "address": "0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5", + "name": "Lympo tokens", + "buyable": false, + "symbol": "LYM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002530438800457, + "ccyValue": 0.003373, + "ethDayChange": -0.011547343571484375, + "ccyDayChange": 0.032762 + }, + "tokenlist": false + }, { + "id": 2035, + "address": "0xb637e3bd588871a98a212671bf2d4ba4a2f5183b", + "name": "Azizos", + "buyable": false, + "symbol": "AZIZ", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2175, + "address": "0x2e6539edc3b76f1e21b71d214527faba875f70f3", + "name": "yfdot.finance", + "buyable": false, + "symbol": "YFDOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.04981926, + "ccyValue": 66.36, + "ethDayChange": -0.079010206495543204, + "ccyDayChange": -0.042691 + }, + "tokenlist": false + }, { + "id": 2221, + "address": "0xba7435a4b4c747e0101780073eeda872a69bdcd4", + "name": "AirdropToken", + "buyable": false, + "symbol": "AIRDROP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 6E-10, + "ccyValue": 0, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2567, + "address": "0xfd609a03b393f1a1cfcacedabf068cad09a924e2", + "name": "Cream Cream ETH 2", + "buyable": false, + "symbol": "crCRETH2", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3080, + "address": "0x515d7e9d75e2b76db60f8a051cd890eba23286bc", + "name": "Governor", + "buyable": false, + "symbol": "GDAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00039748, + "ccyValue": 0.529473, + "ethDayChange": 0.107495123989969351, + "ccyDayChange": 0.155368 + }, + "tokenlist": false + }, { + "id": 2856, + "address": "0xf4c05296c449edcee3e3f1524fac919510b168a2", + "name": "Absorber", + "buyable": false, + "symbol": "ABS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00041703, + "ccyValue": 0.556799, + "ethDayChange": -0.101983246839940567, + "ccyDayChange": -0.024807 + }, + "tokenlist": false + }, { + "id": 1620, + "address": "0x50115097fc70dfe175dd8463a2dadd4c7b2a1075", + "name": "Burn", + "buyable": false, + "symbol": "BRN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1404, + "address": "0xaf71d6c242a00e8364ea0ef3c007f3413e975011", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1405, + "address": "0x9dcc2104f25d40db2f455b458fcbe538c6812bbc", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3140, + "address": "0xae8bc96da4f9a9613c323478be181fdb2aa0e1bf", + "name": "Voting MTA", + "buyable": false, + "symbol": "vMTA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2652, + "address": "0xe09216f1d343dd39d6aa732a08036fee48555af0", + "name": "Contribute", + "buyable": false, + "symbol": "TRIB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00131431, + "ccyValue": 1.62, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1587, + "address": "0x3505f494c3f0fed0b594e01fa41dd3967645ca39", + "name": "SWARM", + "buyable": false, + "symbol": "SWM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001309, + "ccyValue": 0.017436, + "ethDayChange": 0.258653846153846154, + "ccyDayChange": 0.285177 + }, + "tokenlist": false + }, { + "id": 1371, + "address": "0xc6e64729931f60d2c8bc70a27d66d9e0c28d1bf9", + "name": "Flow Protocol", + "buyable": false, + "symbol": "FLOW", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000024294864983472, + "ccyValue": 0.032422, + "ethDayChange": 0.162990185901005266, + "ccyDayChange": 0.215035 + }, + "tokenlist": false + }, { + "id": 2636, + "address": "0x71fbc1d795fcfbca43a3ebf6de0101952f31a410", + "name": "revelation.finance", + "buyable": false, + "symbol": "ADAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.00500742089712392, + "ccyValue": 6.682425, + "ethDayChange": 0.022484932553077322, + "ccyDayChange": 0.064396 + }, + "tokenlist": false + }, { + "id": 955, + "address": "0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a", + "name": "Chad Link Set", + "buyable": false, + "symbol": "CHADLINK", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-37", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.333377315533565395, + "ccyValue": 445.82999, + "ethDayChange": 0.044628397346356976, + "ccyDayChange": 0.087355 + }, + "onchainEthPrice": 0.336307514714410134, + "tokenlist": false + }, { + "id": 351, + "address": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", + "name": "BiLira", + "buyable": false, + "symbol": "TRYB", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tryb.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#04144C", + "description": "BiLira (TRYB) is a fully backed stablecoin, representing the Turkish Lira on the Ethereum blockchain. Founded by a team that has extensive experience in the digital currency industry, from companies such as Coinbase, Consensys and RBC.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001024, + "ccyValue": 0.1365, + "ethDayChange": -0.022073833736685362, + "ccyDayChange": 0.01657 + }, + "onchainEthPrice": 0.00011738, + "tokenlist": false + }, { + "id": 370, + "address": "0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c", + "name": "Amon", + "buyable": false, + "symbol": "AMN", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000307, + "ccyValue": 0.004091, + "ethDayChange": 0.077192982456140351, + "ccyDayChange": 0.124519 + }, + "onchainEthPrice": 0.00000281, + "tokenlist": false + }, { + "id": 1657, + "address": "0xb0fa501e1f97d32133e742acbc499cf4d8840772", + "name": "Uniswap V2 SBTC-ETH", + "buyable": false, + "symbol": "SBTC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-26", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 207.446286978470932015, + "ccyValue": 277087.837843, + "ethDayChange": -0.000500062016110163, + "ccyDayChange": 0.017955 + }, + "onchainEthPrice": 223.978789459823105756, + "tokenlist": false + }, { + "id": 3047, + "address": "0x0000000000095413afc295d19edeb1ad7b71c952", + "name": "Tokenlon", + "buyable": true, + "symbol": "LON", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.005002374078798751, + "ccyValue": 6.67569, + "ethDayChange": 0.371471597636362664, + "ccyDayChange": 0.432552 + }, + "onchainEthPrice": 0.00331807, + "tokenlist": true + }, { + "id": 74, + "address": "0xb63b606ac810a52cca15e44bb630fd42d8d1d83d", + "name": "Crypto.com", + "buyable": false, + "symbol": "MCO", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mco.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#103F68", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.002036, + "ccyValue": 2.713, + "ethDayChange": -0.039083258999155186, + "ccyDayChange": 0.001107 + }, + "onchainEthPrice": 0.0023420446, + "tokenlist": false + }, { + "id": 553, + "address": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "name": "Binance USD", + "buyable": true, + "symbol": "BUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/busd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F0B90B", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00074876, + "ccyValue": 0.99532, + "ethDayChange": -0.037785580967115521, + "ccyDayChange": -0.004438 + }, + "onchainEthPrice": 0.00075816, + "tokenlist": true + }, { + "id": 1434, + "address": "0x68a118ef45063051eac49c7e647ce5ace48a68a5", + "name": "BASED", + "buyable": true, + "symbol": "BASED", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/based.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F7ACB2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000711204380586931, + "ccyValue": 0.947893, + "ethDayChange": 0.01069573522667767, + "ccyDayChange": 0.051172 + }, + "onchainEthPrice": 0.00073725, + "tokenlist": true + }, { + "id": 3088, + "address": "0xb8c408ef0229c79941c720e1dbddc9181d73a6bf", + "name": "Back to the future token", + "buyable": false, + "symbol": "BITFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 171, + "address": "0x80a7e048f37a50500351c204cb407766fa3bae7f", + "name": "CrypteriumToken", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002111, + "ccyValue": 0.2807, + "ethDayChange": 0.126222353142294396, + "ccyDayChange": 0.164619 + }, + "tokenlist": false + }, { + "id": 1458, + "address": "0x292211a96543b2040813a80b4ffb9e5b7c80a7e2", + "name": "sumtoken", + "buyable": false, + "symbol": "sum", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 423, + "address": "0xbd87447f48ad729c5c4b8bcb503e1395f62e8b98", + "name": "Pool Usdc", + "buyable": false, + "symbol": "plUsdc", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-pooltogether-2", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000749101482352019, + "ccyValue": 0.999475, + "ethDayChange": -0.038953740003691644, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 2368, + "address": "0x4214290310264a27b0ba8cff02b4c592d0234aa1", + "name": "Uniswap V2 RFOX-ETH", + "buyable": false, + "symbol": "RFOX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1071, + "address": "0x19edfbe9814af6eee88289fdd789bc473e84f8f7", + "name": "MINI ETHEREUM", + "buyable": false, + "symbol": "METH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00100282, + "ccyValue": 0.397198, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2529, + "address": "0x2f08119c6f07c006695e079aafc638b8789faf18", + "name": "yearn Tether USD", + "buyable": false, + "symbol": "yUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-5", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000795280683503317, + "ccyValue": 1.061306, + "ethDayChange": -0.037618459754503719, + "ccyDayChange": 0.002204 + }, + "tokenlist": false + }, { + "id": 3169, + "address": "0x2ec75589856562646afe393455986cad26c4cc5f", + "name": "Interop.Finance", + "buyable": false, + "symbol": "TROP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.03413673, + "ccyValue": 45.47, + "ethDayChange": -0.049619902716800288, + "ccyDayChange": -0.012155 + }, + "tokenlist": false + }, { + "id": 1499, + "address": "0x2cf9106faf2c5c8713035d40df655fb1b9b0f9b9", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 538, + "address": "0xaf3573e1e223c601340ade1f1d52cd106b264367", + "name": "Trifolium Coin", + "buyable": false, + "symbol": "TRF", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1E-8, + "ccyValue": 0.000012, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2689, + "address": "0x4e085036a1b732cbe4ffb1c12ddfdd87e7c3664d", + "name": "PRDZ Dex", + "buyable": false, + "symbol": "PRDZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.035961555904557333, + "ccyValue": 47.990854, + "ethDayChange": -0.056304992105803737, + "ccyDayChange": -0.017623 + }, + "tokenlist": false + }, { + "id": 1096, + "address": "0xb056c38f6b7dc4064367403e26424cd2c60655e1", + "name": "CEEK", + "buyable": false, + "symbol": "CEEK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000139, + "ccyValue": 0.001846, + "ethDayChange": -0.021126760563380282, + "ccyDayChange": 0.015402 + }, + "tokenlist": false + }, { + "id": 443, + "address": "0xb8243b4eeca27a4191e879760b88fe2270561796", + "name": "ETHUSD ADL 4H Set", + "buyable": false, + "symbol": "ETHUSDADL4", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-43", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.53338, + "ccyValue": 711.21984, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2249, + "address": "0xe7bc894cbeefb1d60f0401903a8377cbf52803c4", + "name": "RAMP DEFI", + "buyable": false, + "symbol": "RAMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1138, + "address": "0x0f8e31593857e182fab1b7bf38ae269ece69f4e1", + "name": "GRID-ETH Uniswap pool token", + "buyable": false, + "symbol": "GRID-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2110, + "address": "0x54ecde58e151cb79dafb221c9fef2f23fd29240a", + "name": "0x004d6f6e706f727465666575696c6c652e6469676974616c2047656e65736973", + "buyable": false, + "symbol": "MLNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 183, + "address": "0x1452f74a4e698230b893b49e6d1e1ac992119f27", + "name": "Matthew W Romano", + "buyable": false, + "symbol": "MR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1495, + "address": "0x9694eed198c1b7ab81addaf36255ea58acf13fab", + "name": "DoubleHelix", + "buyable": false, + "symbol": "DHX", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2955, + "address": "0x544288176bb6d7d198302a2d18fad38442e69b25", + "name": "Gains", + "buyable": false, + "symbol": "GFARM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00000489, + "ccyValue": 0.006489, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3050, + "address": "0xe6236a434fabe01254b9f9d7e4e393006623fe53", + "name": "DMUSD", + "buyable": false, + "symbol": "DMUSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1617, + "address": "0x4b0b0bf60abbf79a2fd028e4d52ac393982488ce", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 872, + "address": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", + "name": "Ankr Network", + "buyable": true, + "symbol": "ANKR", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ankr.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#006DFF", + "description": "Ankr Network is building a full-stack cloud infrastructure and marketplace for container-based cloud services. Data center owners can monetize on idle computational resources through the Ankr cloud platform. Node operators can utilize idle cloud resources from data centers to run blockchain nodes at favorable pricing. The ANKR token is used as an incentive, payment, and staking asset within the Ankr Network.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000965, + "ccyValue": 0.012823, + "ethDayChange": 0.233519765360762182, + "ccyDayChange": 0.27821 + }, + "onchainEthPrice": 0.00000781, + "tokenlist": true + }, { + "id": 473, + "address": "0x6fb3e0a217407efff7ca062d46c26e5d60a14d69", + "name": "IoTeX Network", + "buyable": true, + "symbol": "IOTX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/iotx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00D4D5", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000008718886910016, + "ccyValue": 0.011618, + "ethDayChange": -0.05271713703956762, + "ccyDayChange": -0.015674 + }, + "onchainEthPrice": 0.000009446863523527, + "tokenlist": true + }, { + "id": 690, + "address": "0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd", + "name": "PieDAO BTC++", + "buyable": true, + "symbol": "BTC++", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/btc-plus-plus.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FC02A7", + "description": "BTC++ is a weighed allocation between the different representations of Bitcoin on the Ethereum. Learn more at piedao.org", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 23.933986, + "ccyValue": 30636, + "ethDayChange": -0.000378063969994117, + "ccyDayChange": 0.01169 + }, + "onchainEthPrice": 27.877766, + "tokenlist": true + }, { + "id": 661, + "address": "0x2feb4a6322432cbe44dc54a4959ac141ece53d7c", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2588, + "address": "0xe867be952ee17d2d294f2de62b13b9f4af521e9a", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-11", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.025337350651261236, + "ccyValue": 33.766257, + "ethDayChange": 0.053484446050100375, + "ccyDayChange": 0.093681 + }, + "tokenlist": false + }, { + "id": 2774, + "address": "0x315699f1ba88383cff2f2f30fcad187adb2e4d72", + "name": "RealToken S 14078 Carlisle st Detroit MI", + "buyable": false, + "symbol": "14078 Carlis", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 921, + "address": "0x593114f03a0a575aece9ed675e52ed68d2172b8c", + "name": "BidiPass", + "buyable": false, + "symbol": "BDP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 2.47321995204E-7, + "ccyValue": 0.00033, + "ethDayChange": 0.075313022626086957, + "ccyDayChange": 0.114865 + }, + "tokenlist": false + }, { + "id": 2612, + "address": "0x3ed3b47dd13ec9a98b44e6204a523e766b225811", + "name": "Aave interest bearing USDT", + "buyable": false, + "symbol": "aUSDT", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/ausdt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-v2-2", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000750617988808581, + "ccyValue": 1.001703, + "ethDayChange": -0.038073989877786704, + "ccyDayChange": 0.001729 + }, + "tokenlist": false + }, { + "id": 320, + "address": "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d", + "name": "Aave Interest bearing DAI V1", + "buyable": false, + "symbol": "aDAI V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/adai.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-2", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000748885528516212, + "ccyValue": 0.999391, + "ethDayChange": -0.037669585561279877, + "ccyDayChange": -0.000609 + }, + "tokenlist": false + }, { + "id": 1983, + "address": "0xa059f9753893d185f96a9bd3ce40d96d3aa0a4ef", + "name": "Uniswap V2 ETH-LSWP", + "buyable": false, + "symbol": "ETH-LSWP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1578, + "address": "0xa8006c4ca56f24d6836727d106349320db7fef82", + "name": "Internxt", + "buyable": false, + "symbol": "INXT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001290234808858456, + "ccyValue": 1.719253, + "ethDayChange": -0.132247735942983583, + "ccyDayChange": -0.09513 + }, + "tokenlist": false + }, { + "id": 1875, + "address": "0x3d1be3fef769399cce7e504e85324d622f23cf85", + "name": "Tulip Seed", + "buyable": false, + "symbol": "sTLP", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00085789, + "ccyValue": 1.1, + "ethDayChange": -0.002905659061588349, + "ccyDayChange": 0.018519 + }, + "tokenlist": false + }, { + "id": 358, + "address": "0xfb6ccec5fe8567f5244549c20afa06f0f43c4c02", + "name": "TALE", + "buyable": false, + "symbol": "TALE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2155, + "address": "0xaa2ce7ae64066175e0b90497ce7d9c190c315db4", + "name": "Suterusu", + "buyable": false, + "symbol": "Suter", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000221, + "ccyValue": 0.002936, + "ethDayChange": 0.139175257731958763, + "ccyDayChange": 0.182917 + }, + "tokenlist": false + }, { + "id": 564, + "address": "0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9", + "name": "OLD RealToken 8342 Schaefer Hwy Detroit MI", + "buyable": false, + "symbol": "8342 Schaefe", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "8342 Schaefer is a quadruplex located less than a mile from five schools in a family-friendly neighborhood.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.04534733, + "ccyValue": 64.87, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2297, + "address": "0x761137dd355d2c86633f954feb0567af4d556dd1", + "name": "Unipig", + "buyable": false, + "symbol": "PIGI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2218, + "address": "0xab2efe93fbe4426f54c3d678279e3033c0f3218f", + "name": "Growth Hack", + "buyable": false, + "symbol": "GROW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 477, + "address": "0x0784dbabb6c6834bddfb7cfee116ba049e5dafab", + "name": "IBTC", + "buyable": false, + "symbol": "IBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2243, + "address": "0x509c02b4e40aa166058d0adb07c354b320eed1c9", + "name": "Yearn Family", + "buyable": false, + "symbol": "YFJZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1063, + "address": "0xae2d4004241254aed3f93873604d39883c8259f0", + "name": "Uniswap V2 ETH-PLR", + "buyable": false, + "symbol": "ETH-PLR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 555, + "address": "0x3212b29e33587a00fb1c83346f5dbfa69a458923", + "name": "The Tokenized Bitcoin", + "buyable": false, + "symbol": "imBTC", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 24.384845, + "ccyValue": 32488, + "ethDayChange": -0.009003877771951831, + "ccyDayChange": 0.032578 + }, + "tokenlist": false + }, { + "id": 527, + "address": "0xcf0425a35f1fa900bb347cb996d3094d1df3cd48", + "name": "Moose", + "buyable": false, + "symbol": "MM", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2454, + "address": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", + "name": "E-RADIX", + "buyable": true, + "symbol": "eXRD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/exrd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#052CC0", + "description": "Radix (www.radixdlt.com) is the first layer-one protocol specifically built to serve DeFi. Decentralized finance applications are currently built on protocols that are not fit for purpose, leading to congestion, hacks and developer frustration. Radix changes this by introducing a scalable, secure-by-design, composable platform with a DeFi specific build environment to make it easy to build and launch scalable DeFi.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00007379, + "ccyValue": 0.098088, + "ethDayChange": -0.032642894598846356, + "ccyDayChange": 0.00568 + }, + "onchainEthPrice": 0.000077336050117172, + "tokenlist": true + }, { + "id": 1116, + "address": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", + "name": "dfohub", + "buyable": true, + "symbol": "buidl", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001080924656880139, + "ccyValue": 1.440656, + "ethDayChange": -0.029341680979002311, + "ccyDayChange": 0.009531 + }, + "onchainEthPrice": 0.00105182, + "tokenlist": true + }, { + "id": 753, + "address": "0xe02b2ad63eff3ac1d5827cbd7ab9dd3dac4f4ad0", + "name": "Aave Interest bearing UniUSDC", + "buyable": false, + "symbol": "aUniUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3116, + "address": "0x19d3364a399d251e894ac732651be8b0e4e85001", + "name": "DAI yVault", + "buyable": false, + "symbol": "yvDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1841, + "address": "0xb9464ef80880c5aea54c7324c0b8dd6ca6d05a90", + "name": "LOCK Token", + "buyable": false, + "symbol": "LOCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00021536, + "ccyValue": 0.306347, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2481, + "address": "0x64eda51d3ad40d56b9dfc5554e06f94e1dd786fd", + "name": "Curve.fi tBTC/sbtcCrv", + "buyable": false, + "symbol": "tbtc/sbtcCrv", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2514, + "address": "0x73fa9181cd0752a18ddfa285033df0323a804457", + "name": "hypechill.finance", + "buyable": false, + "symbol": "CHILL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2116, + "address": "0x0954906da0bf32d5479e25f46056d22f08464cab", + "name": "Index", + "buyable": true, + "symbol": "INDEX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/index.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#262E51", + "description": "INDEX is used to vote in changes to the Index Coop including but not limited to: Smart contract upgrades to the Index Coop; How to allocate the Index Coop treasury; Add new Index Cooop products; Ratifying rebalance trades for Index Coop products.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.01224181462242406, + "ccyValue": 16.333413, + "ethDayChange": 0.071747838868043098, + "ccyDayChange": 0.119494 + }, + "onchainEthPrice": 0.00982193, + "tokenlist": true + }, { + "id": 956, + "address": "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7", + "name": "Robonomics", + "buyable": true, + "symbol": "XRT", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/xrt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#03A5ED", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.022816416900967652, + "ccyValue": 30.448609, + "ethDayChange": 0.014034876515533053, + "ccyDayChange": 0.055994 + }, + "onchainEthPrice": 0.02823533323423824, + "tokenlist": true + }, { + "id": 794, + "address": "0x6d57a53a45343187905aad6ad8ed532d105697c1", + "name": "RLC-ETH Uniswap pool token", + "buyable": false, + "symbol": "RLC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-19", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 2435.011708100244951216, + "ccyValue": 3239716.54749, + "ethDayChange": -0.010365852286480433, + "ccyDayChange": 0.024293 + }, + "onchainEthPrice": 2393.528795964750282837, + "tokenlist": false + }, { + "id": 1964, + "address": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "name": "Orion Protocol", + "buyable": true, + "symbol": "ORN", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/orn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#464672", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002293938107464292, + "ccyValue": 3.05736, + "ethDayChange": 0.058110827375345613, + "ccyDayChange": 0.099754 + }, + "onchainEthPrice": 0.002341, + "tokenlist": true + }, { + "id": 1972, + "address": "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093", + "name": "KardiaChain Token", + "buyable": true, + "symbol": "KAI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/kai.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#E13E35", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000016343161234686, + "ccyValue": 0.021782, + "ethDayChange": 0.010708796208163265, + "ccyDayChange": 0.051762 + }, + "onchainEthPrice": 0.00001888, + "tokenlist": true + }, { + "id": 508, + "address": "0xb705268213d593b8fd88d3fdeff93aff5cbdcfae", + "name": "IDEX Token", + "buyable": true, + "symbol": "IDEX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/idex.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#004B6A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000030129115227566, + "ccyValue": 0.040156, + "ethDayChange": -0.001355146583824992, + "ccyDayChange": 0.039691 + }, + "onchainEthPrice": 0.0000296, + "tokenlist": true + }, { + "id": 2873, + "address": "0x57b946008913b82e4df85f501cbaed910e58d26c", + "name": "Marlin POND", + "buyable": true, + "symbol": "POND", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pond.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3840C7", + "description": "High-performance network infrastructure for modern decentralized networks ", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000042938941969883, + "ccyValue": 0.057229, + "ethDayChange": 0.228230605545852403, + "ccyDayChange": 0.281552 + }, + "onchainEthPrice": 0.00003515, + "tokenlist": true + }, { + "id": 1, + "address": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "name": "Ether", + "buyable": true, + "symbol": "ETH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/eth.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#627EEA", + "category": "currencies", + "refundable": true, + "spotPrice": { + "date": 1611867603, + "ethValue": 1, + "ccyValue": 1329.611878, + "ethDayChange": 0, + "ccyDayChange": 0.034884 + }, + "onchainEthPrice": 1, + "tokenlist": false + }, { + "id": 797, + "address": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f", + "name": "Trace Token", + "buyable": true, + "symbol": "TRAC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/trac.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3DC89F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00013582, + "ccyValue": 0.180548, + "ethDayChange": -0.047144661147748001, + "ccyDayChange": -0.008479 + }, + "onchainEthPrice": 0.000148737638088803, + "tokenlist": true + }, { + "id": 1228, + "address": "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83", + "name": "YFII.finance", + "buyable": true, + "symbol": "YFII", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yfii.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF2A7C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.310362, + "ccyValue": 1745.49, + "ethDayChange": -0.012247961596163822, + "ccyDayChange": 0.026061 + }, + "onchainEthPrice": 1.3074961814289892, + "tokenlist": true + }, { + "id": 100, + "address": "0x607f4c5bb672230e8672085532f7e901544a7375", + "name": "RLC", + "buyable": true, + "symbol": "RLC", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rlc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F3C400", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00091143, + "ccyValue": 1.21, + "ethDayChange": -0.021316661596607828, + "ccyDayChange": 0.010438 + }, + "onchainEthPrice": 0.001023843423783543, + "tokenlist": true + }, { + "id": 238, + "address": "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac", + "name": "StorjToken", + "buyable": true, + "symbol": "STORJ", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/storj.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2683FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0003026, + "ccyValue": 0.4032, + "ethDayChange": 0.026552641800634833, + "ccyDayChange": 0.066675 + }, + "onchainEthPrice": 0.000289023355306049, + "tokenlist": true + }, { + "id": 2275, + "address": "0x18aaa7115705e8be94bffebde57af9bfc265b998", + "name": "Audius", + "buyable": true, + "symbol": "AUDIO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/audio.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#8E52CF", + "description": "AUDIO is the native platform token of the Audius streaming protocol. AUDIO is staked for security, feature access and governance and earned by artists, fans and node operators who drive Audius.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000173021837030868, + "ccyValue": 0.230603, + "ethDayChange": -0.011077749023388203, + "ccyDayChange": 0.031795 + }, + "onchainEthPrice": 0.00018289, + "tokenlist": true + }, { + "id": 2169, + "address": "0x793786e2dd4cc492ed366a94b88a3ff9ba5e7546", + "name": "AXIA TOKEN (axiaprotocol.io)", + "buyable": false, + "symbol": "AXIAv3", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005038, + "ccyValue": 0.067604, + "ethDayChange": -0.596883843844587904, + "ccyDayChange": -0.578163 + }, + "tokenlist": false + }, { + "id": 2839, + "address": "0xa74476443119a942de498590fe1f2454d7d4ac0d", + "name": "Golem Network Token", + "buyable": false, + "symbol": "GNT", + "decimals": 18, + "sendable": false, + "dailyLimit": false, + "brandColor": "#001D57", + "displayAddress": "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008898, + "ccyValue": 0.118277, + "ethDayChange": 0.039121803106387948, + "ccyDayChange": 0.081706 + }, + "tokenlist": false + }, { + "id": 2533, + "address": "0x912084b70ec38d6b57d63c43bb388e664eb4728c", + "name": "CHILL-ETH Uniswap pool token", + "buyable": false, + "symbol": "CHILL-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1545, + "address": "0xf063806d07fe742b031a543145fb46d1bc670fe8", + "name": "OCEAN-ETH Uniswap pool token", + "buyable": false, + "symbol": "OCEAN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 554, + "address": "0x8c4f045c35288f899fe7b034dbe13bab2bb454ab", + "name": "Eurodollar", + "buyable": false, + "symbol": "eUSD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 363, + "address": "0x78e14b9a8d006ec7e23988a0a87263569c3f4839", + "name": "BullBearBitcoin Set", + "buyable": false, + "symbol": "BBB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.35356872, + "ccyValue": 122.86, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 980, + "address": "0xa19a40fbd7375431fab013a4b08f00871b9a2791", + "name": "SWAGG", + "buyable": false, + "symbol": "SWAGG", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00004033, + "ccyValue": 0.054207, + "ethDayChange": 0.020237794080445231, + "ccyDayChange": 0.081178 + }, + "tokenlist": false + }, { + "id": 3075, + "address": "0x797aab1ce7c01eb727ab980762ba88e7133d2157", + "name": "Cream USDT", + "buyable": false, + "symbol": "crUSDT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1316, + "address": "0xbbd890a2475a3ff3a7470fa816a45bee6c98b387", + "name": "ETH-LEVI Uniswap pool token", + "buyable": false, + "symbol": "ETH-LEVI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1629, + "address": "0x0ef3b2024ae079e6dbc2b37435ce30d2731f0101", + "name": "UNIFI", + "buyable": false, + "symbol": "UNIFI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000007793059210118, + "ccyValue": 0.010384, + "ethDayChange": -0.074458526114251781, + "ccyDayChange": -0.041536 + }, + "tokenlist": false + }, { + "id": 2741, + "address": "0x3863ea7577fc91bfbaeae6a6a3e403524afcf787", + "name": "xETH-G", + "buyable": false, + "symbol": "xETH-G", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00008684270054695, + "ccyValue": 0.115719, + "ethDayChange": -0.000429321513006446, + "ccyDayChange": 0.142497 + }, + "tokenlist": false + }, { + "id": 2194, + "address": "0x3b8c698c5bdaa059f93bae370f00a01c4fa5352b", + "name": "Ecto", + "buyable": false, + "symbol": "ECTO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1526, + "address": "0xabfd235c6ff1b3e6b52e878f06130e9ac1b2ade4", + "name": "CROW Finance", + "buyable": false, + "symbol": "CROW", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2105, + "address": "0x661b94d96adb18646e791a06576f7905a8d1bef6", + "name": "Cream Pool Token", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1579, + "address": "0xe431a4c5db8b73c773e06cf2587da1eb53c41373", + "name": "Trias Token", + "buyable": false, + "symbol": "TRY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.615E-7, + "ccyValue": 0.000481, + "ethDayChange": 0.102806589383770592, + "ccyDayChange": 0.147971 + }, + "tokenlist": false + }, { + "id": 1180, + "address": "0xfc5621c3ddee2f6cbfd5a8e5cd2ea6afc0f4cbec", + "name": "Diamond Real Estate", + "buyable": false, + "symbol": "DRE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 181, + "address": "0x43688910273f199b8ae2ca018c13918fb3d37b58", + "name": "OLD RealToken 5942 Audubon Road Detroit MI", + "buyable": false, + "symbol": "5942 Audubon", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "A classic 1930s home in the Morningside neighborhood of Detroit is the epitome of a promising single-family property investment.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.09676905, + "ccyValue": 133.6, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1836, + "address": "0x96b0bf939d9460095c15251f71fda11e41dcbddb", + "name": "Sharpay", + "buyable": false, + "symbol": "S", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.304E-7, + "ccyValue": 0.000276, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3176, + "address": "0x696c1de4e7f475d5231372c47a627e4cd6ce555a", + "name": "Impulse by FDR", + "buyable": false, + "symbol": "IMPULSE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.058516170825993694, + "ccyValue": 78.074109, + "ethDayChange": 0.020098652468372171, + "ccyDayChange": 0.062091 + }, + "tokenlist": false + }, { + "id": 2665, + "address": "0x24e3794605c84e580eea4972738d633e8a7127c8", + "name": "Katalyo Token", + "buyable": false, + "symbol": "KTLYO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000080506981201807, + "ccyValue": 0.1073, + "ethDayChange": 0.143817056481363181, + "ccyDayChange": 0.188841 + }, + "tokenlist": false + }, { + "id": 1711, + "address": "0x19b3de48392778f8e6ef332fee002aa5e15fe41a", + "name": "Uniswap V2 DREAM-ETH", + "buyable": false, + "symbol": "DREAM-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1059, + "address": "0x1f6deadcb526c4710cf941872b86dcdfbbbd9211", + "name": "Ruletka", + "buyable": false, + "symbol": "RTK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rtk.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#CD2C24", + "description": "Ruletka (RTK), the Russian Roulette ERC20 Token", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00006976, + "ccyValue": 0.088636, + "ethDayChange": -0.011197732104890149, + "ccyDayChange": 0.003351 + }, + "tokenlist": false + }, { + "id": 1872, + "address": "0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097", + "name": "Realio Network", + "buyable": false, + "symbol": "RIO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000719777260048089, + "ccyValue": 0.959319, + "ethDayChange": 0.00083312167964547, + "ccyDayChange": 0.040222 + }, + "tokenlist": false + }, { + "id": 2134, + "address": "0xdb1e51aa841312e90f21c687f77823857fe77abc", + "name": "coffer_token", + "buyable": false, + "symbol": "CT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2596, + "address": "0xa1faa113cbe53436df28ff0aee54275c13b40975", + "name": "AlphaToken", + "buyable": false, + "symbol": "ALPHA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00126705, + "ccyValue": 1.69, + "ethDayChange": 0.04637910958055645, + "ccyDayChange": 0.090323 + }, + "tokenlist": false + }, { + "id": 1773, + "address": "0x1aa61c196e76805fcbe394ea00e4ffced24fc469", + "name": "yieldfarming.insure", + "buyable": false, + "symbol": "SAFE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.8776, + "ccyValue": 1169.58, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2050, + "address": "0x22222c03318440305ac3e8a7820563d6a9fd777f", + "name": "Clover", + "buyable": false, + "symbol": "CLV", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00143618, + "ccyValue": 1.93, + "ethDayChange": 0.011123783776172574, + "ccyDayChange": 0.054645 + }, + "tokenlist": false + }, { + "id": 536, + "address": "0xf2e08356588ec5cd9e437552da87c0076b4970b0", + "name": "Synth sTRX", + "buyable": false, + "symbol": "sTRX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1934, + "address": "0xf059afa5239ed6463a00fc06a447c14fe26406e1", + "name": "ETH WBTC Yield Farm", + "buyable": false, + "symbol": "WBTCAPY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2698, + "address": "0xced90b981d15be3ec81d89038f4b55f193d224bb", + "name": "BID-ETH Uniswap pool token", + "buyable": false, + "symbol": "BID-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2773, + "address": "0x2a32dcbb121d48c106f6d94cf2b4714c0b4dfe48", + "name": "FARM_UNI-V2", + "buyable": false, + "symbol": "fUNI-V2", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2716, + "address": "0x154f0dce06eb0e7ea5d6cf1bc70039ca22b5fb17", + "name": "DEFIBase", + "buyable": false, + "symbol": "DEFIB", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2223, + "address": "0xeca82185adce47f39c684352b0439f030f860318", + "name": "Perlin", + "buyable": false, + "symbol": "PERL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/perl.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#18D3C7", + "description": "PerlinX is a decentralized finance interface platform, allowing users to trade assets of any kind with each other through incentivized liquidity mining and synthetic asset generation.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000029234686698506, + "ccyValue": 0.038956, + "ethDayChange": -0.078489951676270732, + "ccyDayChange": -0.042427 + }, + "tokenlist": false + }, { + "id": 2988, + "address": "0x299749b7920803ae9c619ac15313234471a7bdc5", + "name": "AlfaBit", + "buyable": false, + "symbol": "ALF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1692, + "address": "0xbca5fb00eb680c093cd19829d91ccd612ef8fd38", + "name": "BRJ REBORN", + "buyable": false, + "symbol": "BRJR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2014, + "address": "0xe6d910c9650194b12861bcbc50ec88dc3e5424cf", + "name": "Mandi", + "buyable": false, + "symbol": "Mandi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2649, + "address": "0x04ab43d32d0172c76f5287b6619f0aa50af89303", + "name": "unilock.network", + "buyable": false, + "symbol": "UNL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.2724429960853646, + "ccyValue": 363.111959, + "ethDayChange": -0.017441533435906491, + "ccyDayChange": 0.025161 + }, + "tokenlist": false + }, { + "id": 295, + "address": "0xd73be539d6b2076bab83ca6ba62dfe189abc6bbe", + "name": "BlockchainCuties", + "buyable": false, + "symbol": "BC", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1548, + "address": "0x446420744a50be7e1272c956bbe53e82ab19cb7c", + "name": "XWallet Token", + "buyable": false, + "symbol": "XAL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1790, + "address": "0x54b8c98268da0055971652a95f2bfd3a9349a38c", + "name": "Printer.Finance", + "buyable": false, + "symbol": "PRINT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.07880531090366227, + "ccyValue": 105.031699, + "ethDayChange": 13.188315755830189189, + "ccyDayChange": 14.266235 + }, + "tokenlist": false + }, { + "id": 2791, + "address": "0xe477292f1b3268687a29376116b0ed27a9c76170", + "name": "Herocoin", + "buyable": false, + "symbol": "PLAY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000209, + "ccyValue": 0.002777, + "ethDayChange": -0.153846153846153846, + "ccyDayChange": -0.11981 + }, + "tokenlist": false + }, { + "id": 3163, + "address": "0x63a2ccd492e316eefab5b3326db3c7b0a94c3726", + "name": "Cercle", + "buyable": false, + "symbol": "CIRCL", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2720, + "address": "0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988", + "name": "Terra Virtua Kolect", + "buyable": false, + "symbol": "TVK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00009153, + "ccyValue": 0.121657, + "ethDayChange": 0.109320082414252818, + "ccyDayChange": 0.154701 + }, + "tokenlist": false + }, { + "id": 459, + "address": "0xc719d010b63e5bbf2c0551872cd5316ed26acd83", + "name": "Decentralized Insurance Protocol", + "buyable": true, + "symbol": "DIP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dip.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#5081F4", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000113352292867802, + "ccyValue": 0.151238, + "ethDayChange": 0.001964932978007602, + "ccyDayChange": 0.047007 + }, + "onchainEthPrice": 0.00012866, + "tokenlist": true + }, { + "id": 1746, + "address": "0x37d19d1c4e1fa9dc47bd1ea12f742a0887eda74a", + "name": "yearn TrueUSD", + "buyable": false, + "symbol": "yTUSD", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-yearn-3", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.00081331385480228, + "ccyValue": 1.083985, + "ethDayChange": -0.035956821633848889, + "ccyDayChange": -0.000766 + }, + "onchainEthPrice": 0.000817396076178831, + "tokenlist": false + }, { + "id": 1178, + "address": "0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06", + "name": "Parachute", + "buyable": false, + "symbol": "PAR", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000372, + "ccyValue": 0.004954, + "ethDayChange": -0.0778177186450092, + "ccyDayChange": -0.041594 + }, + "onchainEthPrice": 0.000004327985630834, + "tokenlist": false + }, { + "id": 525, + "address": "0x037a54aab062628c9bbae1fdb1583c195585fe41", + "name": "LCX", + "buyable": true, + "symbol": "LCX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/lcx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0B3B82", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001161, + "ccyValue": 0.015465, + "ethDayChange": -0.041288191577208918, + "ccyDayChange": -0.000065 + }, + "onchainEthPrice": 0.000012358134113412, + "tokenlist": true + }, { + "id": 80, + "address": "0xf433089366899d83a9f26a773d59ec7ecf30355e", + "name": "Metal", + "buyable": true, + "symbol": "MTL", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mtl.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333333", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.000307, + "ccyValue": 0.41, + "ethDayChange": -0.023186669839615566, + "ccyDayChange": 0.017317 + }, + "onchainEthPrice": 0.00031210786221492, + "tokenlist": true + }, { + "id": 480, + "address": "0xcc80c051057b774cd75067dc48f8987c4eb97a5e", + "name": "Ethfinex Nectar Token", + "buyable": true, + "symbol": "NEC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/nec.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272C54", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000075426085113683, + "ccyValue": 0.100656, + "ethDayChange": -0.056037602835491688, + "ccyDayChange": -0.016983 + }, + "onchainEthPrice": 0.00007661, + "tokenlist": true + }, { + "id": 335, + "address": "0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c", + "name": "Digital Rand", + "buyable": true, + "symbol": "DZAR", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dzar.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#07A2EF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00004534, + "ccyValue": 0.060401, + "ethDayChange": -0.009178321678321678, + "ccyDayChange": 0.026669 + }, + "onchainEthPrice": 0.00004152, + "tokenlist": true + }, { + "id": 299, + "address": "0x5e3346444010135322268a4630d2ed5f8d09446c", + "name": "LockChain", + "buyable": true, + "symbol": "LOC", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000476649299548794, + "ccyValue": 0.635174, + "ethDayChange": -0.079197443909405182, + "ccyDayChange": -0.044947 + }, + "onchainEthPrice": 0.0004943, + "tokenlist": true + }, { + "id": 1214, + "address": "0xefd4b921206b83b901e148996c621ca026ca0968", + "name": "Leviticus", + "buyable": false, + "symbol": "LEVI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3099, + "address": "0xc28df698475dec994be00c9c9d8658a548e6304f", + "name": "Saddle tBTC/WBTC/renBTC/sBTC", + "buyable": false, + "symbol": "saddleTWRenS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 292, + "address": "0xeb269732ab75a6fd61ea60b06fe994cd32a83549", + "name": "USDx", + "buyable": false, + "symbol": "USDx", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/usdx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0E006B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000741085485955335, + "ccyValue": 0.987719, + "ethDayChange": -0.039515957047917701, + "ccyDayChange": -0.001715 + }, + "tokenlist": false + }, { + "id": 356, + "address": "0x3cc83c2400e00a54fa1e588d62bc28bf15d5def5", + "name": "OPTICAL NETWORK", + "buyable": false, + "symbol": "OPTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1487, + "address": "0x11f4c6b3e8f50c50935c7889edc56c96f41b5399", + "name": "Synthetic YBDAO", + "buyable": false, + "symbol": "YBREE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00008826, + "ccyValue": 0.039291, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 317, + "address": "0x3dead2e2b9329c40666e6bc2bec445c7ebda8854", + "name": "Vulpos", + "buyable": false, + "symbol": "VPX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2426, + "address": "0x48598b64d88ab649e49e82f9e328eeee5011a8ff", + "name": "Uniswap V2 DAI-zLOT", + "buyable": false, + "symbol": "DAI-zLOT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2390, + "address": "0x96aa586923ec68fce6677289fa427a83c9ff6ff3", + "name": "Digital Coin", + "buyable": false, + "symbol": "DCB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2706, + "address": "0x4cfa6c06b29a5d3e802b99ea747bc52d79f30942", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2937, + "address": "0x134a99f72ef7cc733de8c5d5fb464f5e24a699a7", + "name": "Gempire.io", + "buyable": false, + "symbol": "GEMS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1148, + "address": "0xe74d6339890d6640ef12e6fbcaf7116f331d6d5d", + "name": "Triatics", + "buyable": false, + "symbol": "TRA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2592, + "address": "0x2e22a35a29f0ccafe8c6fb935f7d0269f706ea72", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-16", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 18.292431165656386885, + "ccyValue": 24391.503438, + "ethDayChange": 0.002836274414443556, + "ccyDayChange": 0.04262 + }, + "tokenlist": false + }, { + "id": 528, + "address": "0x00006100f7090010005f1bd7ae6122c3c2cf0090", + "name": "TrueAUD", + "buyable": false, + "symbol": "TAUD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00060415, + "ccyValue": 0.744023, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1392, + "address": "0x1be21dd1fa2aced16656b7d765b88afa6853cc98", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2338, + "address": "0x65abc1eca66ae5f3633b5df6bdbf0db0afc97c40", + "name": "Utility TENS", + "buyable": false, + "symbol": "uTENS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1077, + "address": "0x56d811088235f11c8920698a204a5010a788f4b3", + "name": "bZx Protocol Token", + "buyable": true, + "symbol": "BZRX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bzrx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#003CDA", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0002412, + "ccyValue": 0.3213, + "ethDayChange": -0.002275077559462254, + "ccyDayChange": 0.040857 + }, + "onchainEthPrice": 0.00027315, + "tokenlist": true + }, { + "id": 67, + "address": "0x514910771af9ca656af840dff83e8264ecf986ca", + "name": "Chain Link", + "buyable": true, + "symbol": "LINK", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/link.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#375CD2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.01742299, + "ccyValue": 23.3, + "ethDayChange": 0.044628397346356976, + "ccyDayChange": 0.087355 + }, + "onchainEthPrice": 0.017576128287001192, + "tokenlist": true + }, { + "id": 141, + "address": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", + "name": "Synth sUSD", + "buyable": true, + "symbol": "sUSD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/susd.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1E1A31", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000752840662136439, + "ccyValue": 1.003853, + "ethDayChange": -0.043606894855490986, + "ccyDayChange": -0.007387 + }, + "onchainEthPrice": 0.0008211091, + "tokenlist": true + }, { + "id": 444, + "address": "0x4a57e687b9126435a9b19e4a802113e266adebde", + "name": "Flexacoin - Deprecated", + "buyable": true, + "symbol": "FXC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/fxc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#8201FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000004010152377505, + "ccyValue": 0.005352, + "ethDayChange": -0.173164458246391753, + "ccyDayChange": -0.141344 + }, + "onchainEthPrice": 0.00000537, + "tokenlist": true + }, { + "id": 1788, + "address": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "name": "Aavegotchi GHST Token", + "buyable": true, + "symbol": "GHST", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ghst.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#63438E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00053831, + "ccyValue": 0.717183, + "ethDayChange": 0.092017445988436961, + "ccyDayChange": 0.138874 + }, + "onchainEthPrice": 0.000452750438382543, + "tokenlist": true + }, { + "id": 1765, + "address": "0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3", + "name": "Hxro", + "buyable": true, + "symbol": "HXRO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hxro.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FF00CA", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000152746206850638, + "ccyValue": 0.20384, + "ethDayChange": -0.016444257239935608, + "ccyDayChange": 0.000196 + }, + "onchainEthPrice": 0.000161664295166522, + "tokenlist": true + }, { + "id": 1873, + "address": "0xed0439eacf4c4965ae4613d77a5c2efe10e5f183", + "name": "shroom.finance", + "buyable": false, + "symbol": "SHROOM", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000082350918731103, + "ccyValue": 0.109734, + "ethDayChange": -0.091751199612848792, + "ccyDayChange": -0.058885 + }, + "onchainEthPrice": 0.0000994, + "tokenlist": false + }, { + "id": 867, + "address": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", + "name": "Synth sBTC", + "buyable": false, + "symbol": "sBTC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sbtc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1E1A31", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 24.715696123634267, + "ccyValue": 32933.960758, + "ethDayChange": -0.006048031456084466, + "ccyDayChange": 0.037257 + }, + "onchainEthPrice": 23.485409, + "tokenlist": false + }, { + "id": 57, + "address": "0x6810e776880c02933d47db1b9fc05908e5386b96", + "name": "Gnosis", + "buyable": true, + "symbol": "GNO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/gno.png", + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.08532697785784901, + "ccyValue": 113.699219, + "ethDayChange": -0.005839437855016571, + "ccyDayChange": 0.031085 + }, + "onchainEthPrice": 0.09267893, + "tokenlist": true + }, { + "id": 2480, + "address": "0x21cf09bc065082478dcc9ccb5fd215a978dc8d86", + "name": "JEM", + "buyable": false, + "symbol": "JEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.06410506, + "ccyValue": 85.39, + "ethDayChange": -0.033027717784640745, + "ccyDayChange": 0.006246 + }, + "tokenlist": false + }, { + "id": 2942, + "address": "0x7c62fe44a893268411e9f0bb1ed944f7c8598f92", + "name": "DAI-GRT Uniswap pool token", + "buyable": false, + "symbol": "DAI-GRT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1456, + "address": "0xa5da8cc7167070b62fdcb332ef097a55a68d8824", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-17", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.077132125067740058, + "ccyValue": 102.808326, + "ethDayChange": -0.040731572163943378, + "ccyDayChange": -0.002454 + }, + "tokenlist": false + }, { + "id": 1498, + "address": "0xa2d4e3520930542275191a8174e7bb20459d6c3a", + "name": "YFIIII.finance", + "buyable": false, + "symbol": "YFIIII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2662, + "address": "0x6871590148376fde7409cda1dbb5208e879e9253", + "name": "Tokenizer Platform Chain", + "buyable": false, + "symbol": "TOKN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1265, + "address": "0xa8892bfc33fa44053a9e402b1839966f4fec74a4", + "name": "Crypto User Base", + "buyable": false, + "symbol": "CUB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003305, + "ccyValue": 0.040383, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 359, + "address": "0xaf446174961cd544e51b89310581669e8fc00d16", + "name": "Dignity", + "buyable": false, + "symbol": "DIG", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1E-8, + "ccyValue": 0.00001, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2738, + "address": "0x80dc468671316e50d4e9023d3db38d3105c1c146", + "name": "xAAVE", + "buyable": false, + "symbol": "xAAVEa", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00207873, + "ccyValue": 2.8, + "ethDayChange": 0.007043925220062107, + "ccyDayChange": 0.056604 + }, + "tokenlist": false + }, { + "id": 158, + "address": "0x80f222a749a2e18eb7f676d371f19ad7efeee3b7", + "name": "Magnolia Token", + "buyable": false, + "symbol": "MGN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2392, + "address": "0x40e45890dff79e7d533797d964e64a2c0121f49a", + "name": "Smart Trade Coin", + "buyable": false, + "symbol": "TRADE", + "decimals": 7, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2428, + "address": "0x56ed2f7dac19243df100bac10364c56df20cb1e9", + "name": "BRAPPER", + "buyable": false, + "symbol": "BRAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 4.7E-9, + "ccyValue": 0.000002, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2837, + "address": "0x12480e24eb5bec1a9d4369cab6a80cad3c0a377a", + "name": "Substratum", + "buyable": false, + "symbol": "SUB", + "decimals": 2, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sub.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00000116161288467, + "ccyValue": 0.001548, + "ethDayChange": -0.022569633861311308, + "ccyDayChange": 0.015748 + }, + "tokenlist": false + }, { + "id": 2469, + "address": "0x684b00a5773679f88598a19976fbeb25a68e9a5f", + "name": "eXRD-USDC Uniswap pool token", + "buyable": false, + "symbol": "eXRD-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-38", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 484.264735351180270116, + "ccyValue": 644918.848711, + "ethDayChange": -0.03573992644358004, + "ccyDayChange": 0.001906 + }, + "tokenlist": false + }, { + "id": 1505, + "address": "0x889efb523cc39590b8483eb9491890ac71407f64", + "name": "Moon Juice", + "buyable": false, + "symbol": "JUICE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003829, + "ccyValue": 0.047271, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2593, + "address": "0xd0d3ebcad6a20ce69bc3bc0e1ec964075425e533", + "name": "Ethereum Stake", + "buyable": false, + "symbol": "ETHYS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.003426749281446832, + "ccyValue": 4.567171, + "ethDayChange": -0.029823905549736275, + "ccyDayChange": 0.019458 + }, + "tokenlist": false + }, { + "id": 652, + "address": "0x74d2cb65b1158300c3e6bea149d68509c7b2425d", + "name": "OLD RealToken 25097 Andover Drive Detroit MI", + "buyable": false, + "symbol": "25097 Andove", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.04378347, + "ccyValue": 58.25, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2349, + "address": "0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b", + "name": "Pteria", + "buyable": false, + "symbol": "PTERIA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00175951, + "ccyValue": 2.34, + "ethDayChange": -0.013879285348877512, + "ccyDayChange": 0.022713 + }, + "tokenlist": false + }, { + "id": 3173, + "address": "0x04d2a998b980bc5c4be113516c1fc6ce7f8d77c8", + "name": "ETH Profit Taker", + "buyable": false, + "symbol": "ETHPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2298, + "address": "0x30b1efb052205e6ca3c4888c3c50c5b339cc0602", + "name": "Cargo Gems", + "buyable": false, + "symbol": "GEM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00005895, + "ccyValue": 0.06206, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 163, + "address": "0xac9bb427953ac7fddc562adca86cf42d988047fd", + "name": "Scatter.cx", + "buyable": false, + "symbol": "STT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 2.96E-8, + "ccyValue": 0.00004, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2960, + "address": "0x8506a240a0319b5cb032b455cdfb7a2f2daa4aba", + "name": "Manifold Finance", + "buyable": false, + "symbol": "MFFI", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1863, + "address": "0x3b62f3820e0b035cc4ad602dece6d796bc325325", + "name": "DEUS", + "buyable": true, + "symbol": "DEUS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/deus.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2C1868", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.003259306068916482, + "ccyValue": 4.349558, + "ethDayChange": 0.066092566153371477, + "ccyDayChange": 0.109467 + }, + "onchainEthPrice": 0.00308941, + "tokenlist": true + }, { + "id": 425, + "address": "0x6710c63432a2de02954fc0f851db07146a6c0312", + "name": "SyncFab Manufacturing", + "buyable": true, + "symbol": "MFG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mfg.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FDBD12", + "description": "SyncFab claims to be 'the pioneer and creator of the smart manufacturing blockchain process architecture protocol' (patent pending). SyncFab is also a digital manufacturing platform that enables hardware supply chain buyers to transact POs (purchase orders) and source RFQs (requests for quotes) directly from a network of manufacturers (launched in 2013).", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000652, + "ccyValue": 0.00869, + "ethDayChange": -0.199935909883209456, + "ccyDayChange": -0.168421 + }, + "onchainEthPrice": 0.00000745, + "tokenlist": true + }, { + "id": 1593, + "address": "0xacd43e627e64355f1861cec6d3a6688b31a6f952", + "name": "yearn Dai Stablecoin", + "buyable": false, + "symbol": "yDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-yearn-4", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000829042721926194, + "ccyValue": 1.106361, + "ethDayChange": -0.03713759652698681, + "ccyDayChange": -0.000057 + }, + "onchainEthPrice": 0.000834873207867949, + "tokenlist": false + }, { + "id": 54, + "address": "0xd9a8cfe21c232d485065cb62a96866799d4645f7", + "name": "FingerPrint", + "buyable": false, + "symbol": "FGP", + "decimals": 18, + "iconUrl": "https://s3.eu-west-2.amazonaws.com/argent-assets/fpg_500px.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00001198, + "ccyValue": 0.016041, + "ethDayChange": -0.86560466681624411, + "ccyDayChange": -0.870154 + }, + "tokenlist": false + }, { + "id": 282, + "address": "0x1c5857e110cd8411054660f60b5de6a6958cfae2", + "name": "Reserve", + "buyable": false, + "symbol": "RSV", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rsv.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 2, + "brandColor": "#303030", + "category": "currencies", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0007499, + "ccyValue": 1, + "ethDayChange": -0.035994343745982774, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1797, + "address": "0xa279dab6ec190ee4efce7da72896eb58ad533262", + "name": "yfu.finance", + "buyable": false, + "symbol": "YFU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1798, + "address": "0xd03b6ae96cae26b743a6207dcee7cbe60a425c70", + "name": "unibot.cash", + "buyable": false, + "symbol": "UNDB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.99092957, + "ccyValue": 1320.2, + "ethDayChange": -0.170312746777982605, + "ccyDayChange": -0.137419 + }, + "tokenlist": false + }, { + "id": 1729, + "address": "0x0de0fa91b6dbab8c8503aaa2d1dfa91a192cb149", + "name": "WBTC-USDT Uniswap pool token", + "buyable": false, + "symbol": "WBTC-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 654, + "address": "0x476ae277b5c5dc199f82c681989b8021fd9d8d50", + "name": "Hegic ETH LP Token", + "buyable": false, + "symbol": "writeETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2523, + "address": "0x1a3e75d00aea904d3ba5ed76efd07697c7f53c94", + "name": "We Will All Make It", + "buyable": false, + "symbol": "PRAY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2355, + "address": "0x6bf728a2a12dd3404ee1d6562dcd6f12f8326e9c", + "name": "New Paradigm Classic", + "buyable": false, + "symbol": "NPC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2400, + "address": "0x8377ee6d3545bc6ff1425ee3015dc648b149c7b2", + "name": "ProChain", + "buyable": false, + "symbol": "PRO", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2337, + "address": "0x8bf92cad232f72a7c61eb42e9185e8d0ea470f6b", + "name": "SMPL Foundation", + "buyable": false, + "symbol": "SMPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.014869646411958537, + "ccyValue": 19.813982, + "ethDayChange": 0.000386601898461171, + "ccyDayChange": 0.089878 + }, + "tokenlist": false + }, { + "id": 1381, + "address": "0xda0c8f051db50bc5916b844d176b8a2651211f82", + "name": "Wings", + "buyable": false, + "symbol": "WING", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000001279999999999, + "ccyValue": 0.001706, + "ethDayChange": -0.01538461538235503, + "ccyDayChange": 0.023395 + }, + "tokenlist": false + }, { + "id": 2943, + "address": "0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5", + "name": "UniWhales.io", + "buyable": false, + "symbol": "UWL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000209827275178279, + "ccyValue": 0.279597, + "ethDayChange": -0.021542074077544374, + "ccyDayChange": 0.016746 + }, + "tokenlist": false + }, { + "id": 2804, + "address": "0x96700ffae33c651bc329c3f3fbfe56e1f291f117", + "name": "RealToken S 4380 Beaconsfield st Detroit MI", + "buyable": false, + "symbol": "4380 Beacons", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 173, + "address": "0xe1ac9eb7cddabfd9e5ca49c23bd521afcdf8be49", + "name": "Mycion", + "buyable": false, + "symbol": "MYC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.9E-8, + "ccyValue": 0.000007, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2577, + "address": "0xa00c7a61bcbb3f0abcafacd149a3008a153b2dab", + "name": "Dolphin Protocol", + "buyable": false, + "symbol": "DPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000209114969908671, + "ccyValue": 0.279065, + "ethDayChange": 0.017589328022161639, + "ccyDayChange": 0.059299 + }, + "tokenlist": false + }, { + "id": 1876, + "address": "0x32a7c02e79c4ea1008dd6564b35f131428673c41", + "name": "CRUST", + "buyable": false, + "symbol": "CRU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.005713546174829103, + "ccyValue": 7.615013, + "ethDayChange": -0.013543633763929377, + "ccyDayChange": 0.025279 + }, + "tokenlist": false + }, { + "id": 3022, + "address": "0x10be9a8dae441d276a5027936c3aaded2d82bc15", + "name": "https://unimex.network/", + "buyable": false, + "symbol": "UMX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000492471700057268, + "ccyValue": 0.657206, + "ethDayChange": -0.190795505287317413, + "ccyDayChange": -0.157872 + }, + "tokenlist": false + }, { + "id": 3037, + "address": "0x88ff79eb2bc5850f27315415da8685282c7610f9", + "name": "ESD-USDC Uniswap pool token", + "buyable": false, + "symbol": "ESD-USDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-43", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 22413.665844067761305762, + "ccyValue": 29908110.333707, + "ethDayChange": -0.177414864773325645, + "ccyDayChange": -0.143193 + }, + "tokenlist": false + }, { + "id": 984, + "address": "0x0996bfb5d057faa237640e2506be7b4f9c46de0b", + "name": "Render Token", + "buyable": false, + "symbol": "RNDR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2138, + "address": "0x276e62c70e0b540262491199bc1206087f523af6", + "name": "DRC-ETH Uniswap pool token", + "buyable": false, + "symbol": "DRC-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2083, + "address": "0x2830209f6573f10c481d946ba18b446429f30360", + "name": "OLD RealToken S 6923 Greenview ave Detroit MI", + "buyable": false, + "symbol": "6923 Greenvi", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 422, + "address": "0x49d716dfe60b37379010a75329ae09428f17118d", + "name": "Pool Dai", + "buyable": false, + "symbol": "plDai", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-pooltogether-1", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000748885528516212, + "ccyValue": 0.999391, + "ethDayChange": -0.037669585561279877, + "ccyDayChange": -0.000609 + }, + "tokenlist": false + }, { + "id": 1959, + "address": "0x98eb6be84183d46e435f693ca0aee4138d77eafb", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 16, + "address": "0xb3104b4b9da82025e8b9f8fb28b3553ce2f67069", + "name": "BIX Token", + "buyable": false, + "symbol": "BIX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bix.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000446076, + "ccyValue": 0.059311, + "ethDayChange": 0.004752680698495221, + "ccyDayChange": 0.041805 + }, + "tokenlist": false + }, { + "id": 1744, + "address": "0x322124122df407b0d0d902cb713b3714fb2e2e1f", + "name": "Soft Yearn Finance", + "buyable": false, + "symbol": "SYFI", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00069051, + "ccyValue": 0.94543, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 727, + "address": "0x34a0216c5057bc18e5d34d4405284564efd759b2", + "name": "sXAU-ETH Uniswap pool token", + "buyable": false, + "symbol": "sXAU-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1707, + "address": "0x6c4b85cab20c13af72766025f0e17e0fe558a553", + "name": "yffii.finance", + "buyable": false, + "symbol": "YFFII", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001917782153011531, + "ccyValue": 2.55602, + "ethDayChange": 0.004624611077130614, + "ccyDayChange": 0.044858 + }, + "tokenlist": false + }, { + "id": 330, + "address": "0x7ca598a636647b114292bb66e1336865fc262d11", + "name": "Invictus Margin Lending", + "buyable": false, + "symbol": "IML", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1911, + "address": "0xc2da6e42ec6dc74b537ecbdcbfd174e164c3bd07", + "name": "dontbuybomb.com", + "buyable": false, + "symbol": "$BOMB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 804, + "address": "0x54355ae0485f9420e6ce4c00c10172dc8e5728a3", + "name": "100 Waves ETH/USD Ether Hoard", + "buyable": false, + "symbol": "100WETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-34", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.37509028, + "ccyValue": 500.153078, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 3155, + "address": "0x3fa729b4548becbad4eab6ef18413470e6d5324c", + "name": "Holyheld", + "buyable": false, + "symbol": "HH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00057501, + "ccyValue": 0.770442, + "ethDayChange": 0.007393261970251756, + "ccyDayChange": 0.063582 + }, + "tokenlist": false + }, { + "id": 2895, + "address": "0x7e95b310724334ff74537dc08bfd3377d25e65ce", + "name": "RealToken S 15039 Ward Ave Detroit MI", + "buyable": false, + "symbol": "15039 Ward", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1478, + "address": "0x4fe5851c9af07df9e5ad8217afae1ea72737ebda", + "name": "Open Predict Token", + "buyable": false, + "symbol": "OPT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/opt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#1D2C49", + "description": "OpenPredict is a DeFi protocol that allows anyone to speculate on virtually any asset.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000771739604483244, + "ccyValue": 1.02989, + "ethDayChange": 0.490961764268234285, + "ccyDayChange": 0.552655 + }, + "tokenlist": false + }, { + "id": 1198, + "address": "0x39ab32006afe65a0b4d6a9a89877c2c33ad19eb5", + "name": "CTether USD", + "buyable": false, + "symbol": "CUSDT", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 387, + "address": "0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e", + "name": "Modum Token", + "buyable": false, + "symbol": "MOD", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0005784, + "ccyValue": 1.397, + "ethDayChange": -0.370825628195366039, + "ccyDayChange": 0.040984 + }, + "tokenlist": false + }, { + "id": 1995, + "address": "0x4d6b9f281af31916a0f16d1cea2ec7384851eaab", + "name": "Neuromorphic", + "buyable": false, + "symbol": "NMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002294, + "ccyValue": 0.030494, + "ethDayChange": 0.18522211900385136, + "ccyDayChange": 0.229448 + }, + "tokenlist": false + }, { + "id": 234, + "address": "0x43afc9058a3debf37eadf99138e449ce8a480a8a", + "name": "STAMP", + "buyable": false, + "symbol": "STAMP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 2.0014105558E-8, + "ccyValue": 0.000027, + "ethDayChange": 0.00206129259328794, + "ccyDayChange": 0.038462 + }, + "tokenlist": false + }, { + "id": 1947, + "address": "0xc325546ac158c670c4d0588254a0c21ea861abbb", + "name": "Milky Way Token Sale", + "buyable": false, + "symbol": "XWAY", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1238, + "address": "0x0417912b3a7af768051765040a55bb0925d4ddcf", + "name": "Liquidity Dividends Protocol", + "buyable": false, + "symbol": "LID", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000030134350108571, + "ccyValue": 0.040163, + "ethDayChange": 0.046050469205100826, + "ccyDayChange": 0.087927 + }, + "tokenlist": false + }, { + "id": 2622, + "address": "0xffc97d72e13e01096502cb8eb52dee56f74dad7b", + "name": "Aave interest bearing AAVE", + "buyable": false, + "symbol": "aAAVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-aave-v2-7", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.2204, + "ccyValue": 293.74, + "ethDayChange": -0.034180543382997371, + "ccyDayChange": 0.001056 + }, + "tokenlist": false + }, { + "id": 2858, + "address": "0x830b0e9a5ecf36d0a886d21e1c20043cd2d16515", + "name": "RealToken S 19201 Westphalia St Detroit MI", + "buyable": false, + "symbol": "19201 Westph", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": " #F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 492, + "address": "0xc1f5ba8bab3ca299f9817876a6715627f9e2b11a", + "name": "FIFA.win", + "buyable": false, + "symbol": "FIFAmini", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1418, + "address": "0xf4e4f9e5ba2b0892c289ef2de60ca44e1f6b2527", + "name": "DET Token", + "buyable": false, + "symbol": "DET", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000631, + "ccyValue": 0.007804, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 156, + "address": "0x06af07097c9eeb7fd685c692751d5c66db49c215", + "name": "Chai", + "buyable": false, + "symbol": "CHAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00069387, + "ccyValue": 0.939705, + "ethDayChange": -0.192216349623972619, + "ccyDayChange": -0.129903 + }, + "tokenlist": false + }, { + "id": 81, + "address": "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc", + "name": "MyBit", + "buyable": false, + "symbol": "MYB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 9.1345535544E-7, + "ccyValue": 0.001217, + "ethDayChange": -0.029684134862970045, + "ccyDayChange": 0.006617 + }, + "tokenlist": false + }, { + "id": 563, + "address": "0x25cef4fb106e76080e88135a0e4059276fa9be87", + "name": "Imperial", + "buyable": false, + "symbol": "UNITS", + "decimals": 5, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000282, + "ccyValue": 0.001203, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2914, + "address": "0xfd09911130e6930bf87f2b0554c44f400bd80d3e", + "name": "Ethix", + "buyable": false, + "symbol": "ETHIX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1082, + "address": "0x8ddf05c42c698329053c4f39b5bb05a350fd8132", + "name": "ETH Smart Beta Set", + "buyable": false, + "symbol": "ETHSB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-38", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.105192548691628903, + "ccyValue": 140.351241, + "ethDayChange": -0.03895374000369165, + "ccyDayChange": -0.001951 + }, + "tokenlist": false + }, { + "id": 703, + "address": "0x09fe5f0236f0ea5d930197dce254d77b04128075", + "name": "Wrapped CryptoKitties", + "buyable": false, + "symbol": "WCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00095773, + "ccyValue": 1.25, + "ethDayChange": -0.005327877365349064, + "ccyDayChange": 0.041667 + }, + "tokenlist": false + }, { + "id": 2381, + "address": "0x2e703d658f8dd21709a7b458967ab4081f8d3d05", + "name": "Shells", + "buyable": false, + "symbol": "SHL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2551, + "address": "0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32", + "name": "SYNC", + "buyable": false, + "symbol": "SYNC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000014861974087196, + "ccyValue": 0.019833, + "ethDayChange": 0.107389265095394316, + "ccyDayChange": 0.152746 + }, + "tokenlist": false + }, { + "id": 1826, + "address": "0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c", + "name": "Golff.finance", + "buyable": false, + "symbol": "GOF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000522414576388229, + "ccyValue": 0.696274, + "ethDayChange": 0.118660763143959315, + "ccyDayChange": 0.163171 + }, + "tokenlist": false + }, { + "id": 831, + "address": "0x827eed050df933f6fda3a606b5f716cec660ecba", + "name": "BurnDrop", + "buyable": false, + "symbol": "BD", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 5.92E-7, + "ccyValue": 0.000228, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2071, + "address": "0xbd05cee8741100010d8e93048a80ed77645ac7bf", + "name": "CYCLOPS TREASURE", + "buyable": false, + "symbol": "CYTR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.1882478052489733, + "ccyValue": 250.842453, + "ethDayChange": 0.021638900849469782, + "ccyDayChange": 0.061617 + }, + "tokenlist": false + }, { + "id": 710, + "address": "0x358a801f7464adc08ff4b5553cb0dedb675291c2", + "name": "Libra", + "buyable": false, + "symbol": "NOVI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2707, + "address": "0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2", + "name": "Plasma", + "buyable": false, + "symbol": "PPAY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000317, + "ccyValue": 0.042142, + "ethDayChange": 0.148967017035157666, + "ccyDayChange": 0.195619 + }, + "tokenlist": false + }, { + "id": 186, + "address": "0x261b45d85ccfeabb11f022eba346ee8d1cd488c0", + "name": "Redeemable DAI", + "buyable": false, + "symbol": "rDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00170899, + "ccyValue": 0.715135, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2824, + "address": "0x6fad7d44640c5cd0120deec0301e8cf850becb68", + "name": "CORE-cBTC Uniswap pool token", + "buyable": false, + "symbol": "CORE-cBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1222, + "address": "0x22de9912cd3d74953b1cd1f250b825133cc2c1b3", + "name": "DREP", + "buyable": false, + "symbol": "DREP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000318, + "ccyValue": 0.004243, + "ethDayChange": 0.077966101694915254, + "ccyDayChange": 0.128157 + }, + "tokenlist": false + }, { + "id": 229, + "address": "0xc0f1728d9513efc316d0e93a0758c992f88b0809", + "name": "SWTCoin", + "buyable": false, + "symbol": "SWAT", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 9.5E-9, + "ccyValue": 0.000012, + "ethDayChange": -0.789823008849557522, + "ccyDayChange": -0.803279 + }, + "tokenlist": false + }, { + "id": 2049, + "address": "0x606706aa6592f55c103b65c3693fc4937a834cba", + "name": "WBTC-CUSDC", + "buyable": false, + "symbol": "WBTCCUSDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2477, + "address": "0xd36a0e7b741542208ae0fbb35453c893d0136625", + "name": "ITO Utility Token", + "buyable": false, + "symbol": "IUT", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000147, + "ccyValue": 0.001831, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 744, + "address": "0xd559f20296ff4895da39b5bd9add54b442596a61", + "name": "FintruX Network", + "buyable": false, + "symbol": "FTX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000354, + "ccyValue": 0.004717, + "ethDayChange": 0.044247787610619469, + "ccyDayChange": 0.1125 + }, + "tokenlist": false + }, { + "id": 1584, + "address": "0xf1ff4c672dabf9aea4813dda6de66b860b0970b4", + "name": "BLT-ETH Uniswap pool token", + "buyable": false, + "symbol": "BLT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 43, + "address": "0xd49ff13661451313ca1553fd6954bd1d9b6e02b9", + "name": "ElectrifyAsia", + "buyable": false, + "symbol": "ELEC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/elec.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.44E-7, + "ccyValue": 0.00059, + "ethDayChange": 0.053363052246424807, + "ccyDayChange": 0.088561 + }, + "tokenlist": false + }, { + "id": 1409, + "address": "0x7d829fcc84f9dca5a3e6d9fb73545bacf350146a", + "name": "ETH-ZZZ Uniswap pool token", + "buyable": false, + "symbol": "ETH-ZZZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 936, + "address": "0x761185bed0c7413799aefe021e975b2e61a9c450", + "name": "HackMoney", + "buyable": false, + "symbol": "H4KR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2896, + "address": "0xfcdfebef6ba1fef310e073d7f88202721915e1b6", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 501, + "address": "0x9e2b209afc38b74b3278b4e3e2e61dcefc752bb2", + "name": "ICTA", + "buyable": false, + "symbol": "ICTA", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1121, + "address": "0x5a096c19470379f3e66f1e6d664a2112fb285287", + "name": "DomToken", + "buyable": false, + "symbol": "DOM", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 9, + "address": "0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db", + "name": "AppCoins", + "buyable": false, + "symbol": "APPC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/appc.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000249751, + "ccyValue": 0.033207, + "ethDayChange": -0.036525421770709512, + "ccyDayChange": -0.00375 + }, + "tokenlist": false + }, { + "id": 252, + "address": "0x3c0bad69bb30a93f449dc1398ad02c0d5c0724ab", + "name": "Star Sea Rocket", + "buyable": false, + "symbol": "SSR", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 871, + "address": "0x0000852600ceb001e08e00bc008be620d60031f2", + "name": "TrueHKD", + "buyable": false, + "symbol": "THKD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00007834, + "ccyValue": 0.10014, + "ethDayChange": -0.128199421322056532, + "ccyDayChange": -0.158289 + }, + "tokenlist": false + }, { + "id": 2008, + "address": "0xffa98a091331df4600f87c9164cd27e8a5cd2405", + "name": "POLS-ETH Uniswap pool token", + "buyable": false, + "symbol": "POLS-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-44", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.085010236538240709, + "ccyValue": 113.327919, + "ethDayChange": 0.013080502907342992, + "ccyDayChange": 0.052081 + }, + "tokenlist": false + }, { + "id": 886, + "address": "0x49e4cb1bebc5a060505d4571ec50bd2b65c3ed11", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1582, + "address": "0x62450755160e9347dcf947da31acc841e9668443", + "name": "Iscariot", + "buyable": false, + "symbol": "BLZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 454, + "address": "0xc06fb76e8d0616a8847484448c27c877ffbfdf89", + "name": "Frankfurt School Coin", + "buyable": false, + "symbol": "FSBC", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1461, + "address": "0xb81d70802a816b5dacba06d708b5acf19dcd436d", + "name": "Dextoken Governance", + "buyable": false, + "symbol": "DEXG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dexg.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2994A", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.2002, + "ccyValue": 266.75, + "ethDayChange": -0.014034834907717453, + "ccyDayChange": 0.021365 + }, + "tokenlist": false + }, { + "id": 2058, + "address": "0x2688213fedd489762a281a67ae4f2295d8e17ecc", + "name": "FUD.finance", + "buyable": false, + "symbol": "FUD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.007437720668593853, + "ccyValue": 9.910852, + "ethDayChange": -0.259137300959745778, + "ccyDayChange": -0.222068 + }, + "tokenlist": false + }, { + "id": 2179, + "address": "0x2c64ead1875c104a7a1c315f9cdf8f498f079373", + "name": "rupture finance", + "buyable": false, + "symbol": "RUPTR", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 730, + "address": "0xe25bcec5d3801ce3a794079bf94adf1b8ccd802d", + "name": "MATRIX AI Network", + "buyable": false, + "symbol": "MAN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00001851, + "ccyValue": 0.024601, + "ethDayChange": -0.073109664496745118, + "ccyDayChange": -0.03586 + }, + "tokenlist": false + }, { + "id": 37, + "address": "0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf", + "name": "Digix Gold", + "buyable": false, + "symbol": "DGX", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dgx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#131E32", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.03833, + "ccyValue": 56, + "ethDayChange": 0.182683939673553931, + "ccyDayChange": 0.344884 + }, + "onchainEthPrice": 0.041323753733428067, + "tokenlist": false + }, { + "id": 1029, + "address": "0x08ad83d779bdf2bbe1ad9cc0f78aa0d24ab97802", + "name": "Robonomics Web Services :: V1", + "buyable": true, + "symbol": "RWS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 44.411061, + "ccyValue": 58997, + "ethDayChange": -0.027052468789703849, + "ccyDayChange": 0.007924 + }, + "onchainEthPrice": 51.95625541448833, + "tokenlist": true + }, { + "id": 2700, + "address": "0x7db8e29b9a107351a2255f5065a7405b49d95cab", + "name": "covToken", + "buyable": false, + "symbol": "COVER_HARVES", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 931, + "address": "0xfb44d6ebd1c659ecdb199111f9dce55a8b4d5df1", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2141, + "address": "0x1368452bfb5cd127971c8de22c58fbe89d35a6bf", + "name": "JNTR/e", + "buyable": false, + "symbol": "JNTR/e", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000196, + "ccyValue": 0.024919, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1045, + "address": "0xe1bad922f84b198a08292fb600319300ae32471b", + "name": "[FCT] FirmaChain Token", + "buyable": false, + "symbol": "FCT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003644, + "ccyValue": 0.048436, + "ethDayChange": 0.017592851158894164, + "ccyDayChange": 0.058664 + }, + "tokenlist": false + }, { + "id": 1676, + "address": "0xec2d495f20adf65cd26e9e250c8cd5d863609afd", + "name": "OLD RealToken S 3432 Harding Street Detroit MI", + "buyable": false, + "symbol": "3432 Harding", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1664, + "address": "0x4b7dfae2567181e54776337c840e142acb42aa1f", + "name": "GOD KIMCHI", + "buyable": false, + "symbol": "gKIMCHI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 2.23993252E-8, + "ccyValue": 0.00003, + "ethDayChange": -0.002068265312708324, + "ccyDayChange": 0.034483 + }, + "tokenlist": false + }, { + "id": 1985, + "address": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "name": "CORE-ETH Uniswap pool token", + "buyable": false, + "symbol": "CORE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-34", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 3.926121394719905772, + "ccyValue": 5233.952754, + "ethDayChange": 0.001121748654914553, + "ccyDayChange": 0.038176 + }, + "tokenlist": false + }, { + "id": 3190, + "address": "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2", + "name": "Social Rocket", + "buyable": false, + "symbol": "ROCKS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000324369694117798, + "ccyValue": 0.432226, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2418, + "address": "0xdc05a13f89006d8a5bac0810b6f735699b010f92", + "name": "HEX3T", + "buyable": false, + "symbol": "HEX3T", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1598, + "address": "0x4dc02e1bb2ec1ce4c50c351e6e06505e7b1dce8d", + "name": "DIA-ETH Uniswap pool token", + "buyable": false, + "symbol": "DIA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.148366541280019325, + "ccyValue": 197.915331, + "ethDayChange": -0.000590974991980204, + "ccyDayChange": 0.04177 + }, + "tokenlist": false + }, { + "id": 2397, + "address": "0x95a4492f028aa1fd432ea71146b433e7b4446611", + "name": "APY Governance Token", + "buyable": false, + "symbol": "APY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000433795535268775, + "ccyValue": 0.578902, + "ethDayChange": -0.09036545980615353, + "ccyDayChange": -0.053356 + }, + "tokenlist": false + }, { + "id": 1468, + "address": "0x10bae51262490b4f4af41e12ed52a0e744c1137a", + "name": "Soft Link", + "buyable": false, + "symbol": "SLINK", + "decimals": 9, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.002413731019866422, + "ccyValue": 3.220476, + "ethDayChange": -0.138048637519981002, + "ccyDayChange": -0.127242 + }, + "onchainEthPrice": 0.002968746429671142, + "tokenlist": false + }, { + "id": 1965, + "address": "0x27702a26126e0b3702af63ee09ac4d1a084ef628", + "name": "aleph.im v2", + "buyable": true, + "symbol": "ALEPH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aleph.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#539BEF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000130319380889737, + "ccyValue": 0.173912, + "ethDayChange": 0.029460311949893357, + "ccyDayChange": 0.073206 + }, + "onchainEthPrice": 0.00012546, + "tokenlist": true + }, { + "id": 671, + "address": "0xe48972fcd82a274411c01834e2f031d4377fa2c0", + "name": "TwoKeyEconomy", + "buyable": true, + "symbol": "2KEY", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/2key.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#17936F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00002508, + "ccyValue": 0.03341, + "ethDayChange": 0.010598173780044839, + "ccyDayChange": 0.049837 + }, + "onchainEthPrice": 0.0000275, + "tokenlist": true + }, { + "id": 133, + "address": "0x158079ee67fce2f58472a96584a73c7ab9ac95c1", + "name": "Compound Augur", + "buyable": false, + "symbol": "cREP", + "decimals": 8, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0x158079ee67fce2f58472a96584a73c7ab9ac95c1.png", + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867641, + "ethValue": 0.000292607013773665, + "ccyValue": 0.389054, + "ethDayChange": -0.022832623449967406, + "ccyDayChange": 0.011255 + }, + "onchainEthPrice": 0.00035150557115427, + "tokenlist": false + }, { + "id": 3, + "address": "0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6", + "name": "ABYSS", + "buyable": true, + "symbol": "ABYSS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/abyss.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#901DE1", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000011772488220103, + "ccyValue": 0.01569, + "ethDayChange": 0.047988711244332418, + "ccyDayChange": 0.089205 + }, + "onchainEthPrice": 0.000012775189394837, + "tokenlist": true + }, { + "id": 565, + "address": "0xc12d099be31567add4e4e4d0d45691c3f58f5663", + "name": "Auctus Token", + "buyable": true, + "symbol": "AUC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/auc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#002D78", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000116853107132385, + "ccyValue": 0.155941, + "ethDayChange": -0.14973009097462864, + "ccyDayChange": -0.115138 + }, + "onchainEthPrice": 0.000119613079319478, + "tokenlist": true + }, { + "id": 1753, + "address": "0x584bc13c7d411c00c01a62e8019472de68768430", + "name": "Hegic", + "buyable": true, + "symbol": "HEGIC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hegic.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#19274D", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00024867, + "ccyValue": 0.331246, + "ethDayChange": 0.07463267070008643, + "ccyDayChange": 0.113432 + }, + "onchainEthPrice": 0.000284214298112871, + "tokenlist": true + }, { + "id": 590, + "address": "0x253444bd9ecf11e5516d6d00974e91c9f0857ccb", + "name": "ETHBTC Long-Only Alpha Portfolio", + "buyable": false, + "symbol": "EBLOAP", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-9", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.314888278398960108, + "ccyValue": 420.133809, + "ethDayChange": -0.000590623028024243, + "ccyDayChange": 0.037889 + }, + "onchainEthPrice": 0.301442041412999143, + "tokenlist": false + }, { + "id": 17, + "address": "0x5732046a883704404f284ce41ffadd5b007fd668", + "name": "Bluzelle", + "buyable": false, + "symbol": "BLZ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/blz.png", + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0001082, + "ccyValue": 0.1441, + "ethDayChange": 0.095615254109144622, + "ccyDayChange": 0.137871 + }, + "onchainEthPrice": 0.0001015, + "tokenlist": false + }, { + "id": 83, + "address": "0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3", + "name": "Pundi X Token", + "buyable": false, + "symbol": "NPXS", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/npxs.png", + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.31E-7, + "ccyValue": 0.000441, + "ethDayChange": 0.010130372654158656, + "ccyDayChange": 0.05 + }, + "onchainEthPrice": 3.688E-7, + "tokenlist": false + }, { + "id": 589, + "address": "0x8a63be90f095f6777be3ed25d9fc7cd2a63ddb30", + "name": "Long-Only Alpha Portfolio", + "buyable": false, + "symbol": "LELOAP", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-8", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.5032812, + "ccyValue": 671.085482, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.56045744, + "tokenlist": false + }, { + "id": 1517, + "address": "0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30", + "name": "Vidya", + "buyable": true, + "symbol": "VIDYA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/vidya.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#AC8AFF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002405, + "ccyValue": 0.032038, + "ethDayChange": 0.016913319238900634, + "ccyDayChange": 0.060264 + }, + "onchainEthPrice": 0.00002214, + "tokenlist": true + }, { + "id": 832, + "address": "0xe6354ed5bc4b393a5aad09f21c46e101e692d447", + "name": "Yearn USDT v3", + "buyable": false, + "symbol": "yUSDT v3", + "decimals": 6, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/yusdt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2934, + "address": "0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc", + "name": "VAULTZ", + "buyable": false, + "symbol": "VAULTZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0034749, + "ccyValue": 4.64, + "ethDayChange": -0.000559974253597534, + "ccyDayChange": 0.040715 + }, + "tokenlist": false + }, { + "id": 2637, + "address": "0x1105c20ac6f4de989faf05d17ab3f950963b75ad", + "name": "OLD RealToken S 15778 Manor St Detroit MI", + "buyable": false, + "symbol": "15778 Manor ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1945, + "address": "0xa49c8c60a5c0c2350012793d69dbb97f47ff4f76", + "name": "PuddleToken", + "buyable": false, + "symbol": "PUD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3103, + "address": "0x704de5696df237c5b9ba0de9ba7e0c63da8ea0df", + "name": "xAAVE", + "buyable": false, + "symbol": "xAAVEb", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00193982, + "ccyValue": 2.58, + "ethDayChange": -0.027034889553197039, + "ccyDayChange": 0.007813 + }, + "tokenlist": false + }, { + "id": 2248, + "address": "0x5a2508d76c4b3a18ced1ab9c6fea90810c66a14c", + "name": "Uniswap V2 XDCE-USDT", + "buyable": false, + "symbol": "XDCE-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2818, + "address": "0x9efd60f40e35b3ca7294cc268a35d3e35101be42", + "name": "PieDAO Staked BCP", + "buyable": false, + "symbol": "Staked BCP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1378, + "address": "0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20", + "name": "DuckDaoDime", + "buyable": false, + "symbol": "DDIM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.03207234, + "ccyValue": 42.63, + "ethDayChange": 0.021723602921814163, + "ccyDayChange": 0.059362 + }, + "tokenlist": false + }, { + "id": 623, + "address": "0x7deb5e830be29f91e298ba5ff1356bb7f8146998", + "name": "Aave Interest bearing MKR V1", + "buyable": false, + "symbol": "aMKR V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/amkr.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-13", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.062260620419618303, + "ccyValue": 1415.548765, + "ethDayChange": -0.010924995465879416, + "ccyDayChange": 0.025247 + }, + "tokenlist": false + }, { + "id": 1994, + "address": "0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3", + "name": "Rubic", + "buyable": false, + "symbol": "RBC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.000134927386037147, + "ccyValue": 0.180024, + "ethDayChange": 0.277369226102876103, + "ccyDayChange": 0.329061 + }, + "tokenlist": false + }, { + "id": 3095, + "address": "0x4c10bd19688b906665fbd53415f279f34b44ece7", + "name": "YUI Token", + "buyable": false, + "symbol": "YUI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.002050442755755434, + "ccyValue": 2.73224, + "ethDayChange": 0.137397174181352933, + "ccyDayChange": 0.17769 + }, + "tokenlist": false + }, { + "id": 2965, + "address": "0xd90e69f67203ebe02c917b5128629e77b4cd92dc", + "name": "ONC", + "buyable": false, + "symbol": "ONC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00059684, + "ccyValue": 0.795037, + "ethDayChange": 0.042816877682094435, + "ccyDayChange": 0.08327 + }, + "tokenlist": false + }, { + "id": 3097, + "address": "0x9a48bd0ec040ea4f1d3147c025cd4076a2e71e3e", + "name": "PieDAO USD++ Pool", + "buyable": false, + "symbol": "USD++", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1236, + "address": "0xc4d5c69439e028b9bc86af0ae5c038990bfac43c", + "name": "Emerging Markets Solar", + "buyable": false, + "symbol": "EMS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 3141, + "address": "0x9a96e767bfcce8e80370be00821ed5ba283d4a17", + "name": "GOGO Finance Token", + "buyable": false, + "symbol": "GOGO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2261, + "address": "0x0f9768ee0914c48f65234cf10e8aeb6028c8426c", + "name": "BID-ETH Uniswap pool token", + "buyable": false, + "symbol": "BID-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2241, + "address": "0x0a9f693fce6f00a51a8e0db4351b5a8078b4242e", + "name": "Resfinex", + "buyable": false, + "symbol": "RES", + "decimals": 5, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00001783, + "ccyValue": 0.023805, + "ethDayChange": -0.035173160173160173, + "ccyDayChange": 0.008174 + }, + "tokenlist": false + }, { + "id": 2299, + "address": "0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4", + "name": "HYVE", + "buyable": false, + "symbol": "HYVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000059270890243273, + "ccyValue": 0.078979, + "ethDayChange": 0.065065413176513926, + "ccyDayChange": 0.111441 + }, + "tokenlist": false + }, { + "id": 1502, + "address": "0x7567c09355c9cefdcc278cddc72c7b0332140d1f", + "name": "PITCH-PITCH Uniswap pool token", + "buyable": false, + "symbol": "PITCH-PITCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2474, + "address": "0x629c759d1e83efbf63d84eb3868b564d9521c129", + "name": "yearn Curve.fi cDAI/cUSDC", + "buyable": false, + "symbol": "yvcDAI+cUSDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-54", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1720, + "address": "0xbc396689893d065f41bc2c6ecbee5e0085233447", + "name": "Perpetual", + "buyable": true, + "symbol": "PERP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/perp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1A5D73", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.004561499476686165, + "ccyValue": 6.087341, + "ethDayChange": 0.082858822798593933, + "ccyDayChange": 0.131476 + }, + "onchainEthPrice": 0.005271240056909377, + "tokenlist": true + }, { + "id": 1713, + "address": "0x5150956e082c748ca837a5dfa0a7c10ca4697f9c", + "name": "Zeedex", + "buyable": true, + "symbol": "ZDEX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/zdex.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0BA6E8", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00011743, + "ccyValue": 0.15642, + "ethDayChange": 0.508801233457535655, + "ccyDayChange": 0.573943 + }, + "onchainEthPrice": 0.00008243, + "tokenlist": true + }, { + "id": 2201, + "address": "0xeef9f339514298c6a857efcfc1a762af84438dee", + "name": "Hermez Network Token", + "buyable": true, + "symbol": "HEZ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/hez.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#E75A2B", + "description": "Hermez is a decentralized zk-rollup focused on scaling payments and token transfers on top of Ethereum.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00378977, + "ccyValue": 5.04, + "ethDayChange": -0.061208464004201285, + "ccyDayChange": -0.023256 + }, + "onchainEthPrice": 0.004811, + "tokenlist": true + }, { + "id": 1435, + "address": "0x0ff6ffcfda92c53f615a4a75d982f399c989366b", + "name": "Unilayer", + "buyable": true, + "symbol": "LAYER", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/layer.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#191C7B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00009627, + "ccyValue": 0.128239, + "ethDayChange": -0.099234263989304733, + "ccyDayChange": -0.06429 + }, + "onchainEthPrice": 0.00012551, + "tokenlist": true + }, { + "id": 1571, + "address": "0xfffffffff15abf397da76f1dcc1a1604f45126db", + "name": "FalconSwap Token", + "buyable": true, + "symbol": "FSW", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/fsw.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2B6DEF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000192336779016813, + "ccyValue": 0.256346, + "ethDayChange": -0.1539949807701134, + "ccyDayChange": -0.120117 + }, + "onchainEthPrice": 0.00020308, + "tokenlist": true + }, { + "id": 1162, + "address": "0xbbd227e805b90b8fe8f4c01a3f4e48bdae0599af", + "name": "Phoneum Token", + "buyable": false, + "symbol": "PHT", + "decimals": 2, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 8.8772485255E-8, + "ccyValue": 0.000118, + "ethDayChange": -0.057626436371091886, + "ccyDayChange": -0.024793 + }, + "tokenlist": false + }, { + "id": 3126, + "address": "0x73d9e335669462cbdd6aa3adafe9efee86a37fe9", + "name": "Daiquilibrium", + "buyable": false, + "symbol": "DAIQ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000412583603665812, + "ccyValue": 0.550595, + "ethDayChange": 0.079469530139068704, + "ccyDayChange": 0.124136 + }, + "tokenlist": false + }, { + "id": 235, + "address": "0xfec0cf7fe078a500abf15f1284958f22049c2c7e", + "name": "Maecenas ART Token", + "buyable": false, + "symbol": "ART", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/art.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#C29B4E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 7.3E-7, + "ccyValue": 0.000979, + "ethDayChange": -0.528113024500387036, + "ccyDayChange": -0.506552 + }, + "tokenlist": false + }, { + "id": 1172, + "address": "0xcca0c9c383076649604ee31b20248bc04fdf61ca", + "name": "BitMax token", + "buyable": false, + "symbol": "BTMX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0000422, + "ccyValue": 0.05622, + "ethDayChange": -0.03500343234477028, + "ccyDayChange": 0.00255 + }, + "tokenlist": false + }, { + "id": 447, + "address": "0x9214ec02cb71cba0ada6896b8da260736a67ab10", + "name": "Real Estate Asset Ledger", + "buyable": false, + "symbol": "REAL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000037618835232755, + "ccyValue": 0.050128, + "ethDayChange": 0.068557194657799031, + "ccyDayChange": 0.110378 + }, + "tokenlist": false + }, { + "id": 204, + "address": "0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7", + "name": "Unicorns", + "buyable": false, + "symbol": "\uD83E\uDD84", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2303, + "address": "0xa838be6e4b760e6061d4732d6b9f11bf578f9a76", + "name": "Token for Television", + "buyable": false, + "symbol": "TTV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000424, + "ccyValue": 0.00565, + "ethDayChange": 0, + "ccyDayChange": 0.036507 + }, + "tokenlist": false + }, { + "id": 2273, + "address": "0xd6bd082cac5e76183aa95afdb3c5488447cecfb7", + "name": "Vox.Populi", + "buyable": false, + "symbol": "POPULI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2805, + "address": "0xb1f871ae9462f1b2c6826e88a7827e76f86751d4", + "name": "GNYerc20", + "buyable": false, + "symbol": "GNYerc20", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00195633, + "ccyValue": 2.61, + "ethDayChange": 0.817171041631834141, + "ccyDayChange": 0.891304 + }, + "tokenlist": false + }, { + "id": 1175, + "address": "0x4b3a0c6d668b43f3f07904e124328659b90bb4ca", + "name": "AceD", + "buyable": false, + "symbol": "AceD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002704357140478, + "ccyValue": 0.003604, + "ethDayChange": 0.006862153024968791, + "ccyDayChange": 0.046458 + }, + "tokenlist": false + }, { + "id": 1199, + "address": "0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff", + "name": "Vision Network", + "buyable": false, + "symbol": "VSN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 6.059E-7, + "ccyValue": 0.000815, + "ethDayChange": -0.005416940249507551, + "ccyDayChange": 0.069554 + }, + "tokenlist": false + }, { + "id": 328, + "address": "0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f", + "name": "OLD RealToken 9336 Patton Street Detroit MI", + "buyable": false, + "symbol": "9336 Patton", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "9336 Patton Street is a single-family home located in the Franklin Park neighborhood of the greater Detroit area. Patton is a mid-century 3 bed, 1 bath, single floor property. ", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.07498723, + "ccyValue": 105.33, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1780, + "address": "0x3b4caaaf6f3ce5bee2871c89987cbd825ac30822", + "name": "OFIN TOKEN", + "buyable": false, + "symbol": "ON", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000002795931387728, + "ccyValue": 0.003726, + "ethDayChange": 0.005730715010071942, + "ccyDayChange": 0.040201 + }, + "tokenlist": false + }, { + "id": 3108, + "address": "0xe3902e329ef2d3fd7666022c139d75bcc984b7a5", + "name": "RealToken S 15048 Freeland St Detroit MI", + "buyable": false, + "symbol": "15048 Freela", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2565, + "address": "0x1ddf85abdf165d2360b31d9603b487e0275e3928", + "name": "OPEN-ETH Uniswap pool token", + "buyable": false, + "symbol": "OPEN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2672, + "address": "0x244c5276ea5bb927575417156038d7381b44ab2c", + "name": "Bridge Finance Token", + "buyable": false, + "symbol": "BFR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 2.37849915969E-7, + "ccyValue": 0.000317, + "ethDayChange": 0.452075189065934066, + "ccyDayChange": 0.524038 + }, + "tokenlist": false + }, { + "id": 1849, + "address": "0xe4e915fd305693492ca0bf1cbbd2bf420f7d7818", + "name": "AIN Finance", + "buyable": false, + "symbol": "AINF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 392, + "address": "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04", + "name": "Aave Interest bearing ETH", + "buyable": false, + "symbol": "aETH", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/aeth.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-1", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 1, + "ccyValue": 1329.611878, + "ethDayChange": 0, + "ccyDayChange": 0.034884 + }, + "tokenlist": false + }, { + "id": 1589, + "address": "0xcb8d1260f9c92a3a545d409466280ffdd7af7042", + "name": "NFT Protocol", + "buyable": false, + "symbol": "NFT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000675, + "ccyValue": 0.089919, + "ethDayChange": -0.175084856061476627, + "ccyDayChange": -0.142477 + }, + "tokenlist": false + }, { + "id": 456, + "address": "0x395c47a421c254ae42253764a7f56e0ee0cddac5", + "name": "OLD RealToken 20200 Lesure Street Detroit MI", + "buyable": false, + "symbol": "20200 Lesure", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "description": "Lesure is a single-family property in Detroit Michigan, USA. It’s located in the Blackstone Park neighborhood, an area in the middle of the blue-collar revitalization of the Detroit industry.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0686971, + "ccyValue": 85.29, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2740, + "address": "0xf4eefce47c6b34215871cc6c3735c00869ac5b1a", + "name": "Pythos", + "buyable": false, + "symbol": "PTS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 877, + "address": "0xfdb655edff5c7e733074a739b2b713b5cf567a8a", + "name": "Daniell Mesquita", + "buyable": false, + "symbol": "DANI", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 694, + "address": "0x1844b21593262668b7248d0f57a220caaba46ab9", + "name": "Oyster Pearl", + "buyable": false, + "symbol": "PRL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000159, + "ccyValue": 0.000215, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1306, + "address": "0x8d6f9a1141821e8ef3a0fceffe6e912def66ef3e", + "name": "Updog", + "buyable": false, + "symbol": "UPDOG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2828, + "address": "0xba893b6a319bf522be24fc891f678e5e6f0f71f7", + "name": "BlueTaxyield", + "buyable": false, + "symbol": "BTxy", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 960, + "address": "0x26946ada5ecb57f3a1f91605050ce45c482c9eb1", + "name": "BitcoinSoV", + "buyable": false, + "symbol": "BSOV", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000042999999999999, + "ccyValue": 0.05731, + "ethDayChange": 0.02821616451456241, + "ccyDayChange": 0.072839 + }, + "tokenlist": false + }, { + "id": 1218, + "address": "0xfb7a3112c96bbcfe4bbf3e8627b0de6f49e5142a", + "name": "ETH-SHIP Uniswap pool token", + "buyable": false, + "symbol": "ETH-SHIP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2688, + "address": "0x419f97e6dcfbf89a70ea898b7f44472f75bf6137", + "name": "OLD RealToken S 19317 Gable St Detroit MI", + "buyable": false, + "symbol": "19317 Gable ", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1510, + "address": "0xa982b2e19e90b2d9f7948e9c1b65d119f1ce88d6", + "name": "WOM Token", + "buyable": false, + "symbol": "WOM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00012047, + "ccyValue": 0.160147, + "ethDayChange": -0.059122149328334895, + "ccyDayChange": -0.021788 + }, + "tokenlist": false + }, { + "id": 1847, + "address": "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da", + "name": "Gala", + "buyable": false, + "symbol": "GALA", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000115, + "ccyValue": 0.001532, + "ethDayChange": 0.036043254552607338, + "ccyDayChange": 0.076599 + }, + "tokenlist": false + }, { + "id": 1158, + "address": "0xbb97e381f1d1e94ffa2a5844f6875e6146981009", + "name": "WiBX Utility Token", + "buyable": false, + "symbol": "WBX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000265, + "ccyValue": 0.003571, + "ethDayChange": -0.107744107744107744, + "ccyDayChange": -0.059273 + }, + "tokenlist": false + }, { + "id": 176, + "address": "0xcf8335727b776d190f9d15a54e6b9b9348439eee", + "name": "Whackd", + "buyable": false, + "symbol": "WHACKD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 577, + "address": "0xddf993bebbd397f2a42de7c39f09f9c8e34ef322", + "name": "Cronos Coin", + "buyable": false, + "symbol": "CRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.46E-8, + "ccyValue": 0.000009, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 15, + "address": "0xff2b3353c3015e9f1fbf95b9bda23f58aa7ce007", + "name": "BitScreenerToken", + "buyable": false, + "symbol": "BITX", + "decimals": 18, + "iconUrl": "https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens/0xff2b3353c3015e9f1fbf95b9bda23f58aa7ce007.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000006819845954493, + "ccyValue": 0.009088, + "ethDayChange": 0.105323493434846029, + "ccyDayChange": 0.150817 + }, + "tokenlist": false + }, { + "id": 1472, + "address": "0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8", + "name": "Jupiter", + "buyable": false, + "symbol": "JUP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 4.739E-7, + "ccyValue": 0.000636, + "ethDayChange": 0.278047464940668824, + "ccyDayChange": 0.350318 + }, + "tokenlist": false + }, { + "id": 182, + "address": "0x80046305aaab08f6033b56a360c184391165dc2d", + "name": "Berlin Coin", + "buyable": false, + "symbol": "BRLN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/brln.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#fed130", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2146, + "address": "0xf4a81c18816c9b0ab98fac51b36dcb63b0e58fde", + "name": "yieldwars.com", + "buyable": false, + "symbol": "WAR", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000051859504464693, + "ccyValue": 0.069118, + "ethDayChange": 0.0050291562925, + "ccyDayChange": 0.019409 + }, + "tokenlist": false + }, { + "id": 1068, + "address": "0xf64f38ae6b1e6144f292ecfa0a7c9236885f032e", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 543, + "address": "0x5b25c197e6fbdcb331dc55609c20ecbfca5c8bca", + "name": "Turing AI", + "buyable": false, + "symbol": "TAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2630, + "address": "0x63125c0d5cd9071de9a1ac84c400982f41c697ae", + "name": "LexDAO", + "buyable": false, + "symbol": "LEX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1901, + "address": "0x8d588b66b9c605bd1f6e9b75cb9365aad5b97140", + "name": "FEW", + "buyable": false, + "symbol": "FEW", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2430, + "address": "0xa8580f3363684d76055bdc6660caefe8709744e1", + "name": "Folder Coin", + "buyable": false, + "symbol": "FOL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00052572537799884, + "ccyValue": 0.700687, + "ethDayChange": -0.326944363406909177, + "ccyDayChange": -0.300455 + }, + "tokenlist": false + }, { + "id": 367, + "address": "0xbbd1706d16418bb136e1497a73d3af4164586da0", + "name": "Humanity", + "buyable": false, + "symbol": "HUM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1898, + "address": "0x43d4f85a793f7354966b5a6199b3909fabe50fac", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1635, + "address": "0x3b3d4eefdc603b232907a7f3d0ed1eea5c62b5f7", + "name": "STAKE-ETH Uniswap pool token", + "buyable": false, + "symbol": "STAKE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-45", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.336606941153522508, + "ccyValue": 448.733607, + "ethDayChange": -0.014236504395947003, + "ccyDayChange": 0.023705 + }, + "tokenlist": false + }, { + "id": 2541, + "address": "0x6cfb6df56bbdb00226aeffcdb2cd1fe8da1abda7", + "name": "Komet", + "buyable": false, + "symbol": "KOMET", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.03357185339844755, + "ccyValue": 44.734896, + "ethDayChange": -0.145311793069510108, + "ccyDayChange": -0.111867 + }, + "tokenlist": false + }, { + "id": 1100, + "address": "0x9041fe5b3fdea0f5e4afdc17e75180738d877a01", + "name": "ProToken", + "buyable": false, + "symbol": "PRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00003171, + "ccyValue": 0.041988, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2515, + "address": "0xc6be0456b448aa40219c0d88fc55e92951455ee8", + "name": "CHILL-HPLSM Uniswap pool token", + "buyable": false, + "symbol": "CHILL-HPLSM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1087, + "address": "0x57e83505827788c9f92bcfd398a51a7b0c83dd8e", + "name": "Chainlink Trading Set", + "buyable": false, + "symbol": "CTS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-48", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.60068184, + "ccyValue": 800.961494, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2780, + "address": "0x5bd33542c023f49dca658649fa6edab602589e03", + "name": "Masonry", + "buyable": false, + "symbol": "MSNRY", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1491, + "address": "0xc6e2573029e91ea391dee58b2cd348133b944137", + "name": "Spook", + "buyable": false, + "symbol": "SKPL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 486, + "address": "0xca2796f9f61dc7b238aab043971e49c6164df375", + "name": "YGGDRASH", + "buyable": false, + "symbol": "YEED", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 7.4E-8, + "ccyValue": 0.000098, + "ethDayChange": -0.054302024114543718, + "ccyDayChange": -0.02 + }, + "tokenlist": false + }, { + "id": 641, + "address": "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f", + "name": "Aave Interest bearing ZRX V1", + "buyable": false, + "symbol": "aZRX V1", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/aave/azrx.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#B6509E", + "investmentId": "i-aave-16", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000486307693483444, + "ccyValue": 0.648011, + "ethDayChange": 0.132370170640907186, + "ccyDayChange": 0.169524 + }, + "tokenlist": false + }, { + "id": 2402, + "address": "0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1", + "name": "CoFi Token", + "buyable": false, + "symbol": "CoFi", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00042801818912346, + "ccyValue": 0.570339, + "ethDayChange": 0.318277039310890723, + "ccyDayChange": 0.375139 + }, + "tokenlist": false + }, { + "id": 1352, + "address": "0x4689a4e169eb39cc9078c0940e21ff1aa8a39b9c", + "name": "Proton Token", + "buyable": false, + "symbol": "PTT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 8.9E-9, + "ccyValue": 0.000012, + "ethDayChange": -0.24576271186440678, + "ccyDayChange": -0.2 + }, + "tokenlist": false + }, { + "id": 782, + "address": "0x6f275909fe7713bb336e42d5d6f29d7b195f4a65", + "name": "George Floyd Token", + "buyable": false, + "symbol": "FLYD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2714, + "address": "0xb90d8c0c2ace705fad8ad7e447dcf3e858c20448", + "name": "Mooniswap V1 (ETH-XOR)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1952, + "address": "0x8979a3ef9d540480342ac0f56e9d4c88807b1cba", + "name": "REPv2-ETH Uniswap pool token", + "buyable": false, + "symbol": "REPv2-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2640, + "address": "0xd622e61bdbb5f1d43614be5c6e86d572486b0888", + "name": "lightning exchange finance", + "buyable": false, + "symbol": "LEF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611791108, + "ethValue": 8.83516344138E-7, + "ccyValue": 0.001098, + "ethDayChange": 0.032004160113793353, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1367, + "address": "0x9235bda06b8807161b8fbb1e102cb654555b212f", + "name": "Feellike", + "buyable": false, + "symbol": "FLL", + "decimals": 3, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0000599, + "ccyValue": 0.07998, + "ethDayChange": -0.0399102420259657, + "ccyDayChange": -0.002818 + }, + "tokenlist": false + }, { + "id": 1903, + "address": "0xde201daec04ba73166d9917fdf08e1728e270f06", + "name": "MOJI Experience Points", + "buyable": false, + "symbol": "MEXP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.029639257265590566, + "ccyValue": 39.494665, + "ethDayChange": 8.508905122101561116, + "ccyDayChange": 8.863802 + }, + "tokenlist": false + }, { + "id": 2145, + "address": "0xa795600590a7da0057469049ab8f1284baed977e", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2456, + "address": "0x61d8c3d7ad3c3c00c9e4b8da089e19e57da90b91", + "name": "Uniswap V2 EMN-ETH", + "buyable": false, + "symbol": "EMN-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1534, + "address": "0x023ebb622f461a15a344edc45e6a5eabb5a68e03", + "name": "DYX Network", + "buyable": false, + "symbol": "DYX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1615, + "address": "0x596f7383223db0d484fd220d0ab036e042bafea4", + "name": "SBREE-ETH Uniswap pool token", + "buyable": false, + "symbol": "SBREE-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 514, + "address": "0xc53f6c2ac35d30cc47ddf3c320874b21dfa38791", + "name": "Gcash", + "buyable": false, + "symbol": "GCASH", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 642, + "address": "0xc19216eea17b2f4dd677f1024cda59c7d142f189", + "name": "ETH Long-Only Alpha Portfolio", + "buyable": false, + "symbol": "ELOAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-tokensets-social-11", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.37308312, + "ccyValue": 497.47669, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "tokenlist": false + }, { + "id": 2357, + "address": "0x5d0fa08aeb173ade44b0cf7f31d506d8e04f0ac8", + "name": "360APP", + "buyable": false, + "symbol": "DAPP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 451, + "address": "0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404", + "name": "SunContract", + "buyable": false, + "symbol": "SNC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00003229828330587, + "ccyValue": 0.043047, + "ethDayChange": 0.000876458192438798, + "ccyDayChange": 0.040285 + }, + "tokenlist": false + }, { + "id": 752, + "address": "0xfc82bb4ba86045af6f327323a46e80412b91b27d", + "name": "Token Prometeus Network", + "buyable": false, + "symbol": "PROM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001947071980279378, + "ccyValue": 2.595057, + "ethDayChange": -0.06660020120835187, + "ccyDayChange": -0.030248 + }, + "tokenlist": false + }, { + "id": 768, + "address": "0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6", + "name": "OLD RealToken 15634 Liberal Street", + "buyable": false, + "symbol": "15634 Libera", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "displayDecimals": 4, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 400, + "address": "0x5cf04716ba20127f1e2297addcf4b5035000c9eb", + "name": "NKN", + "buyable": false, + "symbol": "NKN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002141, + "ccyValue": 0.028524, + "ethDayChange": 0.119769874476987448, + "ccyDayChange": 0.167676 + }, + "tokenlist": false + }, { + "id": 519, + "address": "0xa2b0fde6d710e201d0d608e924a484d1a5fed57c", + "name": "Synth sXRP", + "buyable": false, + "symbol": "sXRP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.000197, + "ccyValue": 0.263987, + "ethDayChange": -0.136797826658487424, + "ccyDayChange": -0.01293 + }, + "tokenlist": false + }, { + "id": 1276, + "address": "0xbcd8756ea481608ea3dd5a555493305cf0a79640", + "name": "Pazzi", + "buyable": false, + "symbol": "PAZZI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 1.42671583565E-7, + "ccyValue": 0.00019, + "ethDayChange": -0.743719088261181965, + "ccyDayChange": -0.732771 + }, + "tokenlist": false + }, { + "id": 1337, + "address": "0x93ecd2ecdfb91ab2fee28a8779a6adfe2851cda6", + "name": "LoanBurst", + "buyable": false, + "symbol": "LBurst", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000023820964275466, + "ccyValue": 0.031742, + "ethDayChange": 0.014089581756747552, + "ccyDayChange": -0.015263 + }, + "tokenlist": false + }, { + "id": 1159, + "address": "0xe0cc5afc0ff2c76183416fb8d1a29f6799fb2cdf", + "name": "XIO-ETH Uniswap pool token", + "buyable": false, + "symbol": "XIO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-20", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.030390436885742769, + "ccyValue": 40.50335, + "ethDayChange": -0.02543629879585227, + "ccyDayChange": 0.012667 + }, + "tokenlist": false + }, { + "id": 691, + "address": "0x515ba0a2e286af10115284f151cf398688a69170", + "name": "TenX Token", + "buyable": false, + "symbol": "TENX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 137, + "address": "0x094c875704c14783049ddf8136e298b3a099c446", + "name": "Promotion Token @ https://kyber.network/swap", + "buyable": false, + "symbol": "PT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867601, + "ethValue": 0.000753388, + "ccyValue": 1.004583, + "ethDayChange": -0.036659685087295316, + "ccyDayChange": -0.000177 + }, + "tokenlist": false + }, { + "id": 576, + "address": "0x8ba6dcc667d3ff64c1a2123ce72ff5f0199e5315", + "name": "Alex Masmej", + "buyable": false, + "symbol": "ALEX", + "decimals": 4, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/alex.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#FFC95C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00012605, + "ccyValue": 0.168892, + "ethDayChange": -0.089891696750902527, + "ccyDayChange": -0.031477 + }, + "tokenlist": false + }, { + "id": 2142, + "address": "0xb9b752f7f4a4680eeb327ffe728f46666763a796", + "name": "BZRX-ETH Uniswap pool token", + "buyable": false, + "symbol": "BZRX-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 198, + "address": "0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5", + "name": "Hue", + "buyable": false, + "symbol": "HUE", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00001997, + "ccyValue": 0.025085, + "ethDayChange": 0.000501002004008016, + "ccyDayChange": -0.002981 + }, + "tokenlist": false + }, { + "id": 337, + "address": "0x1d8ca7baf0895da8afcf153657be064b5092a274", + "name": "EthLyteToken", + "buyable": false, + "symbol": "EtLyteT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00009, + "ccyValue": 0.020409, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1855, + "address": "0x5322a3556f979ce2180b30e689a9436fddcb1021", + "name": "yTSLA Finance", + "buyable": false, + "symbol": "yTSLA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00076503779116927, + "ccyValue": 1.019422, + "ethDayChange": 0.965061623264332683, + "ccyDayChange": 1.045516 + }, + "tokenlist": false + }, { + "id": 2366, + "address": "0xc45bafb21254e83d03d542f2da6e58714f626550", + "name": "Mooniswap V1 (ETH-OM)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2292, + "address": "0x6a8c66cab4f766e5e30b4e9445582094303cc322", + "name": "FARM DeFi", + "buyable": false, + "symbol": "PFARM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00186501, + "ccyValue": 2.5, + "ethDayChange": 0.012030344468320636, + "ccyDayChange": 0.037344 + }, + "tokenlist": false + }, { + "id": 2538, + "address": "0x5dc02ea99285e17656b8350722694c35154db1e8", + "name": "BOND", + "buyable": false, + "symbol": "BOND", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000011173940732177, + "ccyValue": 0.014889, + "ethDayChange": 0.026470579055047534, + "ccyDayChange": 0.066624 + }, + "tokenlist": false + }, { + "id": 1226, + "address": "0x32b87fb81674aa79214e51ae42d571136e29d385", + "name": "CyberFM", + "buyable": false, + "symbol": "CYFM", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 1E-8, + "ccyValue": 0.000003, + "ethDayChange": 0, + "ccyDayChange": 0.5 + }, + "tokenlist": false + }, { + "id": 540, + "address": "0xcc6f15be8573cb8243c42d300565566d328213dd", + "name": "OWN", + "buyable": false, + "symbol": "OWN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 1.355E-7, + "ccyValue": 0.00018, + "ethDayChange": -0.03421240199572345, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1338, + "address": "0xb736ba66aad83adb2322d1f199bfa32b3962f13c", + "name": "Bridge Protocol", + "buyable": false, + "symbol": "BRDG", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00000119, + "ccyValue": 0.001786, + "ethDayChange": 0, + "ccyDayChange": -0.205869 + }, + "tokenlist": false + }, { + "id": 189, + "address": "0xf222ba8af81d799c565241b0d3eedf9bdc4fc462", + "name": "betbeb.com空投1万个ETH", + "buyable": false, + "symbol": "BEB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 604, + "address": "0x426ca1ea2406c07d75db9585f22781c096e3d0e0", + "name": "Minereum", + "buyable": false, + "symbol": "MNE", + "decimals": 8, + "sendable": false, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2497, + "address": "0x95b3497bbcccc46a8f45f5cf54b0878b39f8d96c", + "name": "UniDex", + "buyable": false, + "symbol": "UNIDX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0005613, + "ccyValue": 0.7481, + "ethDayChange": -0.295682861475986798, + "ccyDayChange": -0.267965 + }, + "tokenlist": false + }, { + "id": 503, + "address": "0xf46f98a8f6032914921ae9cfb5aaab5083bd9376", + "name": "OpenSourceChain Token", + "buyable": false, + "symbol": "OSCH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 1E-8, + "ccyValue": 0.000013, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2236, + "address": "0x69c2fe4f5dfa40dd6d09fadd0681f9364a1aada0", + "name": "Cream Pool Token", + "buyable": false, + "symbol": "CRPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1281, + "address": "0x3408b204d67ba2dbca13b9c50e8a45701d8a1ca6", + "name": "Sendvibe", + "buyable": false, + "symbol": "SVB", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 2.49E-7, + "ccyValue": 0.000336, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1483, + "address": "0x8f57e8e38e61975a0433fa792542f453d8ed4d7d", + "name": "YFIEXCHANGE.FINANCE", + "buyable": false, + "symbol": "YFIE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001804439704542881, + "ccyValue": 2.404957, + "ethDayChange": -0.075952301440820606, + "ccyDayChange": -0.039585 + }, + "tokenlist": false + }, { + "id": 2679, + "address": "0x14c38e90a593b0bd5b7e9896a8ef4ae0a119d6ae", + "name": "Wav3Token", + "buyable": false, + "symbol": "WAV3", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.00395158299586749, + "ccyValue": 5.266669, + "ethDayChange": -0.011429551702164227, + "ccyDayChange": 0.049137 + }, + "tokenlist": false + }, { + "id": 2647, + "address": "0xc32cc5b70bee4bd54aa62b9aefb91346d18821c4", + "name": "IterationSyndicate", + "buyable": false, + "symbol": "ITS", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.01015256057067475, + "ccyValue": 13.53133, + "ethDayChange": 0.018793327187265435, + "ccyDayChange": 0.059198 + }, + "tokenlist": false + }, { + "id": 2887, + "address": "0x9f8d8df26d5ab71b492ddce9799f432e36c289df", + "name": "WBTC-pBTC Uniswap pool token", + "buyable": false, + "symbol": "WBTC-pBTC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1471, + "address": "0x11a2ab94ade17e96197c78f9d5f057332a19a0b9", + "name": "Orbicular", + "buyable": false, + "symbol": "ORBI", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 3.303E-7, + "ccyValue": 0.000402, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 3007, + "address": "0x9631483f28b7f5cbf7d435ab249be8f709215bc3", + "name": "Sperax", + "buyable": false, + "symbol": "SPA", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000009637148998909, + "ccyValue": 0.012844, + "ethDayChange": -0.028756686393857101, + "ccyDayChange": 0.009431 + }, + "tokenlist": false + }, { + "id": 2509, + "address": "0x1443e7c1cce72662545d94779120c59251447e91", + "name": "Molten", + "buyable": false, + "symbol": "MOL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00807101, + "ccyValue": 10.43, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 2488, + "address": "0xd0570ffee3424ee9f095da32ac949224b891e066", + "name": "DeFi Formation France", + "buyable": false, + "symbol": "DFFF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2803, + "address": "0x946c919d58390be564802ecf7ac7990627fac561", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2732, + "address": "0x526914ce1611849b9e1133ff8f8b03a8faa295cb", + "name": "ETH-CRD Uniswap pool token", + "buyable": false, + "symbol": "ETH-CRD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2750, + "address": "0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5", + "name": "renFIL", + "buyable": false, + "symbol": "renFIL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.01638735158107972, + "ccyValue": 21.836342, + "ethDayChange": -0.031860321041801559, + "ccyDayChange": 0.006024 + }, + "tokenlist": false + }, { + "id": 1157, + "address": "0x74faab6986560fd1140508e4266d8a7b87274ffd", + "name": "HyperDao", + "buyable": false, + "symbol": "HDAO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000005708034444566, + "ccyValue": 0.007608, + "ethDayChange": -0.085250890293910256, + "ccyDayChange": -0.051017 + }, + "tokenlist": false + }, { + "id": 2021, + "address": "0x1d773dd8a1614c39f4a558008c0e62323563285c", + "name": "bootycoin", + "buyable": false, + "symbol": "$BOOTY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1019, + "address": "0xc169f0eb31403c0bcc43dc9feca648a79fafc0f4", + "name": "CAP-ETH Uniswap pool token", + "buyable": false, + "symbol": "CAP-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2736, + "address": "0x4c16b17165abf7be7641bbde8c3279964b2f0539", + "name": "TurboBase", + "buyable": false, + "symbol": "TURBO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2645, + "address": "0xa49811140e1d6f653dec28037be0924c811c4538", + "name": "PRüF Network", + "buyable": false, + "symbol": "PRUF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2831, + "address": "0xaf162491c0b21900c01f4cc0f7110238aacdebe7", + "name": "arcane bear", + "buyable": false, + "symbol": "BEAR", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00059676, + "ccyValue": 0.809665, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "tokenlist": false + }, { + "id": 1444, + "address": "0xdadf443c086f9d3c556ebc57c398a852f6a02898", + "name": "DOS-ETH Uniswap pool token", + "buyable": false, + "symbol": "DOS-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.022192390394440793, + "ccyValue": 29.581674, + "ethDayChange": 0.031094473870893045, + "ccyDayChange": 0.07266 + }, + "tokenlist": false + }, { + "id": 2423, + "address": "0x9248c485b0b80f76da451f167a8db30f33c70907", + "name": "Debase", + "buyable": false, + "symbol": "DEBASE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000928531144158295, + "ccyValue": 1.239129, + "ethDayChange": -0.084590473522195953, + "ccyDayChange": -0.047347 + }, + "tokenlist": false + }, { + "id": 2996, + "address": "0x74159651a992952e2bf340d7628459aa4593fc05", + "name": "Tenet", + "buyable": false, + "symbol": "TEN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000507602610973097, + "ccyValue": 0.677398, + "ethDayChange": -0.058497946651200525, + "ccyDayChange": -0.019906 + }, + "tokenlist": false + }, { + "id": 518, + "address": "0xb2bfeb70b903f1baac7f2ba2c62934c7e5b974c4", + "name": "BetKing Bankroll Token", + "buyable": false, + "symbol": "BKB", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1341, + "address": "0x0557df767419296474c3f551bb0a0ed4c2dd3380", + "name": "Universal Gold", + "buyable": false, + "symbol": "UPXAU", + "decimals": 5, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2376, + "address": "0x4db7f6319ccc250f53f2a9fc03f4cada6eb66881", + "name": "Bitcoin Sun", + "buyable": false, + "symbol": "BTCSUN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1776, + "address": "0xbd301be09eb78df47019aa833d29edc5d815d838", + "name": "Fuel Finance", + "buyable": false, + "symbol": "YFUEL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00174454, + "ccyValue": 2.23, + "ethDayChange": -0.062831050228310502, + "ccyDayChange": -0.152091 + }, + "tokenlist": false + }, { + "id": 1034, + "address": "0x51591d295077bb02413aef0153c3feb1b2386dcf", + "name": "The Hopium Network", + "buyable": false, + "symbol": "HOPE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2436, + "address": "0x7f44bf5bf999a7148228bd0d278338e3b0a49430", + "name": "Uniswap V2 UNCL-UNCX", + "buyable": false, + "symbol": "UNCL-UNCX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1607, + "address": "0xd3e8695d2bef061eab38b5ef526c0f714108119c", + "name": "YFIVE.FINANCE", + "buyable": false, + "symbol": "YFIVE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002286319718735892, + "ccyValue": 3.047206, + "ethDayChange": -0.10873415116035786, + "ccyDayChange": -0.070974 + }, + "tokenlist": false + }, { + "id": 1523, + "address": "0x0de0322d3ac0d5002e2bc9c3a188728728d90799", + "name": "NAP-ZZZ Uniswap pool token", + "buyable": false, + "symbol": "NAP-ZZZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1658, + "address": "0x59f96b8571e3b11f859a09eaf5a790a138fc64d0", + "name": "STA-ETH Uniswap pool token", + "buyable": false, + "symbol": "STA-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-uniswap-v2-24", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.04247643108073646, + "ccyValue": 56.662026, + "ethDayChange": 0.037366548543289083, + "ccyDayChange": 0.078354 + }, + "tokenlist": false + }, { + "id": 2589, + "address": "0xd3c8dcfcf2a5203f6a3210591dabea14e181db2d", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-14", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000789105343136033, + "ccyValue": 1.051965, + "ethDayChange": -0.023392397504024762, + "ccyDayChange": 0.014207 + }, + "tokenlist": false + }, { + "id": 3025, + "address": "0xa1d7b2d891e3a1f9ef4bbc5be20630c2feb1c470", + "name": "SushiSwap LP Token", + "buyable": false, + "symbol": "SLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2833, + "address": "0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f", + "name": "DLP Duck Token", + "buyable": false, + "symbol": "DUCK", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00028224, + "ccyValue": 0.375106, + "ethDayChange": 0.011805479169502614, + "ccyDayChange": 0.048652 + }, + "tokenlist": false + }, { + "id": 1938, + "address": "0x1eb31daee931b9a00290ca2834ec933d2d337151", + "name": "0x000000000000000000000000000000000000000000475453204361706974616c", + "buyable": false, + "symbol": "MLNF", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1420, + "address": "0x53993d04758ee89bbe190e15a81c411688543aba", + "name": "OLD RealToken S 10616 McKinney Street Detroit MI", + "buyable": false, + "symbol": "10616 McKinn", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/realt.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#F2A91E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 421, + "address": "0x16de59092dae5ccf4a1e6439d611fd0653f0bd01", + "name": "Yearn DAI v2", + "buyable": false, + "symbol": "yDAI v2", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yearn/ydai.png", + "sendable": true, + "dailyLimit": false, + "brandColor": "#0070F2", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1791, + "address": "0xf8c3527cc04340b208c854e985240c02f7b7793f", + "name": "Frontier Token", + "buyable": true, + "symbol": "FRONT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/front.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2A1F21", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000520851543379181, + "ccyValue": 0.694191, + "ethDayChange": 0.112265356291153926, + "ccyDayChange": 0.156039 + }, + "onchainEthPrice": 0.00050259, + "tokenlist": true + }, { + "id": 1448, + "address": "0xa8b919680258d369114910511cc87595aec0be6d", + "name": "LUKSO Token", + "buyable": false, + "symbol": "LYXe", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.001771627949654746, + "ccyValue": 2.363762, + "ethDayChange": -0.049814143795012153, + "ccyDayChange": -0.0107 + }, + "onchainEthPrice": 0.001723, + "tokenlist": false + }, { + "id": 905, + "address": "0xc5be99a02c6857f9eac67bbce58df5572498f40c", + "name": "ETH-AMPL Uniswap pool token", + "buyable": false, + "symbol": "ETH-AMPL", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-17", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 9149.996176411761232672, + "ccyValue": 12204501.138395, + "ethDayChange": -0.014416710772551306, + "ccyDayChange": 0.023107 + }, + "onchainEthPrice": 9252.872669105896865662, + "tokenlist": false + }, { + "id": 201, + "address": "0x0f7f961648ae6db43c75663ac7e5414eb79b5704", + "name": "XIO Network", + "buyable": true, + "symbol": "XIO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/xio.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#BF4645", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00017222, + "ccyValue": 0.229414, + "ethDayChange": -0.049296163400496826, + "ccyDayChange": -0.010695 + }, + "onchainEthPrice": 0.000175506672715261, + "tokenlist": true + }, { + "id": 256, + "address": "0xb4efd85c19999d84251304bda99e90b92300bd93", + "name": "Rocket Pool", + "buyable": true, + "symbol": "RPL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rpl.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#ff656d", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.003103907154004129, + "ccyValue": 4.136209, + "ethDayChange": 0.053339400748733649, + "ccyDayChange": 0.094615 + }, + "onchainEthPrice": 0.002707811840007395, + "tokenlist": true + }, { + "id": 582, + "address": "0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6", + "name": "Morpheus Infrastructure Token", + "buyable": false, + "symbol": "MITx", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00002059, + "ccyValue": 0.027432, + "ethDayChange": -0.094283154860736708, + "ccyDayChange": -0.058355 + }, + "onchainEthPrice": 0.00002129, + "tokenlist": false + }, { + "id": 1171, + "address": "0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b", + "name": "Tokenbox", + "buyable": false, + "symbol": "TBX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000016469999999996, + "ccyValue": 0.021951, + "ethDayChange": -1.82149E-13, + "ccyDayChange": 0.039347 + }, + "tokenlist": false + }, { + "id": 851, + "address": "0xa7de087329bfcda5639247f96140f9dabe3deed1", + "name": "Statera", + "buyable": false, + "symbol": "STA", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/sta.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#0066CB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000082530138487004, + "ccyValue": 0.110137, + "ethDayChange": 0.071727585199657363, + "ccyDayChange": 0.11608 + }, + "onchainEthPrice": 0.00007694, + "tokenlist": false + }, { + "id": 1257, + "address": "0x5dbcf33d8c2e976c6b560249878e6f1491bca25c", + "name": "yearn Curve.fi yDAI/yUSDC/yUSDT/yTUSD", + "buyable": false, + "symbol": "yyDAI+yUSDC+", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-yearn-50", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000940703119036092, + "ccyValue": 1.255373, + "ethDayChange": 0.016499028428759468, + "ccyDayChange": 0.05856 + }, + "onchainEthPrice": 0.000886206959625395, + "tokenlist": false + }, { + "id": 521, + "address": "0x8eb24319393716668d768dcec29356ae9cffe285", + "name": "SingularityNET Token", + "buyable": true, + "symbol": "AGI", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/agi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1D0D4B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000058823307357266, + "ccyValue": 0.0785, + "ethDayChange": 0.070962550399493862, + "ccyDayChange": 0.114534 + }, + "onchainEthPrice": 0.000057486298267027, + "tokenlist": true + }, { + "id": 1648, + "address": "0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2", + "name": "PYLON", + "buyable": true, + "symbol": "PYLON", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pylon.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1345C0", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.1337, + "ccyValue": 178.17, + "ethDayChange": -0.049580661771792141, + "ccyDayChange": -0.011659 + }, + "onchainEthPrice": 0.128, + "tokenlist": true + }, { + "id": 591, + "address": "0x542156d51d10db5accb99f9db7e7c91b74e80a2c", + "name": "ETH/LINK PA Candlestick Set", + "buyable": false, + "symbol": "LINKETHPA", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-31", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.98985124, + "ccyValue": 1319.88796, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 1.015597597578320231, + "tokenlist": false + }, { + "id": 1406, + "address": "0x0f4ca92660efad97a9a70cb0fe969c755439772c", + "name": "Leverj", + "buyable": false, + "symbol": "LEV", + "decimals": 9, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/lev.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#F6921E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000092536300795805, + "ccyValue": 0.123332, + "ethDayChange": -0.037865650015769712, + "ccyDayChange": 0 + }, + "onchainEthPrice": 0.000089096101265057, + "tokenlist": false + }, { + "id": 1763, + "address": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", + "name": "Pickle Token", + "buyable": true, + "symbol": "PICKLE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/pickle.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#13A10E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.010247684677845174, + "ccyValue": 13.67558, + "ethDayChange": -0.00499657747074737, + "ccyDayChange": 0.035485 + }, + "onchainEthPrice": 0.011229919613140882, + "tokenlist": true + }, { + "id": 624, + "address": "0xba8ea15b647f54d9ff849670fcaacf35df21a457", + "name": "Intelligent Ratio Set", + "buyable": false, + "symbol": "INTRATIO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-12", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.9208932376, + "ccyValue": 1227.937944, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.782459647955285197, + "tokenlist": false + }, { + "id": 69, + "address": "0x58b6a8a3302369daec383334672404ee733ab239", + "name": "Livepeer", + "buyable": true, + "symbol": "LPT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/lpt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#333332", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002952567808346711, + "ccyValue": 3.934537, + "ethDayChange": -0.056218979117718349, + "ccyDayChange": -0.019236 + }, + "onchainEthPrice": 0.00320025, + "tokenlist": true + }, { + "id": 262, + "address": "0x9ea463ec4ce9e9e5bc9cfd0187c4ac3a70dd951d", + "name": "ETH 20 SMA Crossover Set", + "buyable": false, + "symbol": "ETH20SMACO", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-robo-12", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.934966717905, + "ccyValue": 1246.703812, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.979729087474378324, + "tokenlist": false + }, { + "id": 450, + "address": "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104", + "name": "ZAP TOKEN", + "buyable": true, + "symbol": "ZAP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/zap.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#1A90FE", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000066072523452025, + "ccyValue": 0.088061, + "ethDayChange": -0.082935619232233693, + "ccyDayChange": -0.046845 + }, + "onchainEthPrice": 0.000080184264726367, + "tokenlist": true + }, { + "id": 2877, + "address": "0xa92a861fc11b99b24296af880011b47f9cafb5ab", + "name": "PoolTogether UNI Ticket (Compound)", + "buyable": false, + "symbol": "PcUNI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/protocols/pool-together.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#27125F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.010954714351589297, + "ccyValue": 14.600441, + "ethDayChange": -0.068768192739583315, + "ccyDayChange": -0.033952 + }, + "onchainEthPrice": 0.01018359, + "tokenlist": false + }, { + "id": 2126, + "address": "0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c", + "name": "PieDAO DEFI Small Cap", + "buyable": true, + "symbol": "DEFI+S", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/defi-plus-s.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#FC02A7", + "description": "DEFI+S gives exposure to lower marketcap projects that have incredible potential for future growth. These projects are tackling a wide range of vital issues including scalable layer 2 decentralized exchanges, cross-chain DeFi composability, and decentralized contracts. DEFI+S tokens are fully backed, and can be redeemed for the underlying assets at any time at the press of a button.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00240849, + "ccyValue": 3.23, + "ethDayChange": 0.041486670558474411, + "ccyDayChange": 0.133333 + }, + "onchainEthPrice": 0.00236933, + "tokenlist": true + }, { + "id": 2778, + "address": "0x1fdab294eda5112b7d066ed8f2e4e562d5bcc664", + "name": "Spice", + "buyable": true, + "symbol": "SPICE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.000207881160829148, + "ccyValue": 0.277418, + "ethDayChange": -0.012347202446085139, + "ccyDayChange": 0.038455 + }, + "onchainEthPrice": 0.00018323, + "tokenlist": true + }, { + "id": 1429, + "address": "0x2baecdf43734f22fd5c152db08e3c27233f0c7d2", + "name": "OM Token", + "buyable": true, + "symbol": "OM", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000096028864740706, + "ccyValue": 0.127987, + "ethDayChange": 0.20021078291096113, + "ccyDayChange": 0.252196 + }, + "onchainEthPrice": 0.000074026056501538, + "tokenlist": true + }, { + "id": 159, + "address": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "name": "Paxos Gold", + "buyable": true, + "symbol": "PAXG", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/paxg.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#CCA727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 1.389613311, + "ccyValue": 1847.646364, + "ethDayChange": -0.041595612862681989, + "ccyDayChange": -0.008162 + }, + "onchainEthPrice": 1.6037854638, + "tokenlist": true + }, { + "id": 95, + "address": "0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6", + "name": "Ripio Credit Network", + "buyable": true, + "symbol": "RCN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/rcn.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3555F9", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.00003385008927325, + "ccyValue": 0.045108, + "ethDayChange": -0.025968469034945885, + "ccyDayChange": 0.009421 + }, + "onchainEthPrice": 0.000036534555138443, + "tokenlist": true + }, { + "id": 2886, + "address": "0x8438d64da58772e9f7fceaa1506ba300f935abbd", + "name": "Value Liquidity Provider", + "buyable": false, + "symbol": "VLP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2323, + "address": "0xde0999ee4e4bea6fecb03bf4ebef2626942ec6f5", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1866, + "address": "0x03dfd032c9f7bff5517c9307da100e738dfad75b", + "name": "Mooniswap V1 (ETH-CRV)", + "buyable": false, + "symbol": "MOON-V1-ETH-", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 265, + "address": "0x77fe30b2cf39245267c0a5084b66a560f1cf9e1f", + "name": "Azbit", + "buyable": false, + "symbol": "AZ", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 8E-9, + "ccyValue": 0.000011, + "ethDayChange": -0.012345679012345679, + "ccyDayChange": 0.1 + }, + "tokenlist": false + }, { + "id": 113, + "address": "0x8b353021189375591723e7384262f45709a3c3dc", + "name": "Tomocoin", + "buyable": false, + "symbol": "TOMO", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/tomo.png", + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000919999320446104, + "ccyValue": 1.225974, + "ethDayChange": -0.02259802596750043, + "ccyDayChange": 0.015702 + }, + "tokenlist": false + }, { + "id": 568, + "address": "0x2da35901659e6bc37045d4ea0a7eba88cb3d6b0a", + "name": "BLINK STOCK Token", + "buyable": false, + "symbol": "BSTK", + "decimals": 10, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2015, + "address": "0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0", + "name": "UNIFUND", + "buyable": false, + "symbol": "iFUND", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000358, + "ccyValue": 0.004796, + "ethDayChange": 0.166123778501628664, + "ccyDayChange": 0.252874 + }, + "tokenlist": false + }, { + "id": 2061, + "address": "0x74c99f3f5331676f6aec2756e1f39b4fc029a83e", + "name": "CRO Defi Swap", + "buyable": false, + "symbol": "CRO-SWAP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2904, + "address": "0xf1880d81ce7d3b4b0d96ea0665cdb03cb7332c52", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1621, + "address": "0xba6db13aeae3607d400ddffd675aa4e88ecc9a69", + "name": "Sensorium", + "buyable": false, + "symbol": "SENSO", + "decimals": 0, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000224434721073591, + "ccyValue": 0.299062, + "ethDayChange": -0.037418957237062164, + "ccyDayChange": 0.000248 + }, + "tokenlist": false + }, { + "id": 149, + "address": "0x301c755ba0fca00b1923768fffb3df7f4e63af31", + "name": "Global Digital Content", + "buyable": false, + "symbol": "GDC", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000004154875970369, + "ccyValue": 0.005536, + "ethDayChange": 0.033551236410199005, + "ccyDayChange": 0.068932 + }, + "tokenlist": false + }, { + "id": 2883, + "address": "0xfd29420060464b69f2e1804b685354c31687121e", + "name": "ETH-COL Uniswap pool token", + "buyable": false, + "symbol": "ETH-COL", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 268, + "address": "0x238be1a590e0e2c19c53a0950a9d288471d73945", + "name": "L Money", + "buyable": false, + "symbol": "LMY", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 951, + "address": "0xd4482b7cbf7573e5f5dc56bc270351a815f88829", + "name": "CryptoRevolution", + "buyable": false, + "symbol": "CRVT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2180, + "address": "0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a", + "name": "S4FE", + "buyable": false, + "symbol": "S4F", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000010085660700344, + "ccyValue": 0.013442, + "ethDayChange": 0.206418744060287081, + "ccyDayChange": 0.250768 + }, + "tokenlist": false + }, { + "id": 2938, + "address": "0xeeed4a568f801eedf02758bb72351fa28a663f3a", + "name": "Cover Protocol", + "buyable": false, + "symbol": "COVER", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1232, + "address": "0xcfb8cf118b4f0abb2e8ce6dbeb90d6bc0a62693d", + "name": "Uniswap V2 TEND-ETH", + "buyable": false, + "symbol": "TEND-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2164, + "address": "0x3868bd6e8b392eb8dbc8cdcd0c538dc66529adbe", + "name": "CryptoLevDotNet", + "buyable": false, + "symbol": "LEV", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 818, + "address": "0x60571e95e12c78cba5223042692908f0649435a5", + "name": "PLAAS FARMERS TOKEN", + "buyable": false, + "symbol": "PLAAS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000382, + "ccyValue": 0.004824, + "ethDayChange": 0, + "ccyDayChange": 0 + }, + "onchainEthPrice": 0.0000043, + "tokenlist": false + }, { + "id": 86, + "address": "0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca", + "name": "Open Simple Token", + "buyable": false, + "symbol": "OST", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ost.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#34445B", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000012709917576063, + "ccyValue": 0.016937, + "ethDayChange": 0.111631163111013631, + "ccyDayChange": 0.15202 + }, + "onchainEthPrice": 0.0000123753, + "tokenlist": false + }, { + "id": 774, + "address": "0x7b0c06043468469967dba22d1af33d77d44056c8", + "name": "Morpheus.Network", + "buyable": true, + "symbol": "MRPH", + "decimals": 4, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/mrph.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#022048", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000958938636570916, + "ccyValue": 1.277797, + "ethDayChange": -0.117056325493830048, + "ccyDayChange": -0.080722 + }, + "onchainEthPrice": 0.00108404, + "tokenlist": true + }, { + "id": 2386, + "address": "0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e", + "name": "zLOT", + "buyable": true, + "symbol": "zLOT", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.58901533, + "ccyValue": 782.82, + "ethDayChange": -0.147844174935196249, + "ccyDayChange": -0.115288 + }, + "onchainEthPrice": 0.644308474825404607, + "tokenlist": true + }, { + "id": 1333, + "address": "0x28cb7e841ee97947a86b06fa4090c8451f64c0be", + "name": "YFLink", + "buyable": true, + "symbol": "YFL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yfl.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2A5BDB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867638, + "ethValue": 0.368162774011620098, + "ccyValue": 491.21431, + "ethDayChange": 0.002164218547188314, + "ccyDayChange": 0.044537 + }, + "onchainEthPrice": 0.39232016, + "tokenlist": true + }, { + "id": 2968, + "address": "0x4b4d2e899658fb59b1d518b68fe836b100ee8958", + "name": "MIS", + "buyable": false, + "symbol": "MIS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.02997212, + "ccyValue": 39.8, + "ethDayChange": -0.056564955803021423, + "ccyDayChange": -0.028083 + }, + "onchainEthPrice": 0.04011106, + "tokenlist": false + }, { + "id": 765, + "address": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "name": "LINK-ETH Uniswap pool token", + "buyable": false, + "symbol": "LINK-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-8", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.343331762385718179, + "ccyValue": 458.473255, + "ethDayChange": 0.022118734867552271, + "ccyDayChange": 0.062259 + }, + "onchainEthPrice": 0.311820270170749409, + "tokenlist": false + }, { + "id": 64, + "address": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200", + "name": "Kyber Network", + "buyable": true, + "symbol": "KNC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/knc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#31CB9E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867634, + "ethValue": 0.000975466829720439, + "ccyValue": 1.301765, + "ethDayChange": 0.045628502219357916, + "ccyDayChange": 0.089343 + }, + "onchainEthPrice": 0.00097904, + "tokenlist": true + }, { + "id": 1126, + "address": "0x2e071d2966aa7d8decb1005885ba1977d6038a65", + "name": "DICE", + "buyable": false, + "symbol": "ROL", + "decimals": 16, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00050762, + "ccyValue": 0.677214, + "ethDayChange": 0.035747806570087737, + "ccyDayChange": 0.114026 + }, + "tokenlist": false + }, { + "id": 1145, + "address": "0x95ba34760ac3d7fbe98ee8b2ab33b4f1a6d18878", + "name": "DeCash", + "buyable": false, + "symbol": "DESH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000046697693208572, + "ccyValue": 0.062225, + "ethDayChange": -0.021309202803195149, + "ccyDayChange": 0.017663 + }, + "tokenlist": false + }, { + "id": 2030, + "address": "0x89020f0d5c5af4f3407eb5fe185416c457b0e93e", + "name": "Eden Coin", + "buyable": false, + "symbol": "EDN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611866703, + "ethValue": 0.00000116, + "ccyValue": 0.00154, + "ethDayChange": 0.008695652173913043, + "ccyDayChange": 0.047619 + }, + "tokenlist": false + }, { + "id": 2038, + "address": "0xe010fcda8894c16a8acfef7b37741a760faeddc4", + "name": "Balancer Pool Token", + "buyable": false, + "symbol": "BPT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-balancer-28", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 1.925217626890942361, + "ccyValue": 2570.86472, + "ethDayChange": 0.02160428824665713, + "ccyDayChange": 0.061722 + }, + "tokenlist": false + }, { + "id": 1481, + "address": "0xba8c0244fbdeb10f19f6738750daeedf7a5081eb", + "name": "Suterusu", + "buyable": false, + "symbol": "Suter", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000002172710721214, + "ccyValue": 0.002896, + "ethDayChange": 0.124866751172156267, + "ccyDayChange": 0.169156 + }, + "tokenlist": false + }, { + "id": 1066, + "address": "0xf421c3f2e695c2d4c0765379ccace8ade4a480d9", + "name": "BAND-ETH Uniswap pool token", + "buyable": false, + "symbol": "BAND-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1803, + "address": "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4", + "name": "Universal Liquidity Union", + "buyable": false, + "symbol": "ULU", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.0006382, + "ccyValue": 0.850123, + "ethDayChange": -0.097312588401697313, + "ccyDayChange": -0.059595 + }, + "tokenlist": false + }, { + "id": 2676, + "address": "0xa9a8377287ea9c6b8b4249dd502e75d34148fc5b", + "name": "stargazeprotocol.com", + "buyable": false, + "symbol": "STGZ", + "decimals": 9, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000626, + "ccyValue": 0.008433, + "ethDayChange": -0.079411764705882353, + "ccyDayChange": -0.076847 + }, + "tokenlist": false + }, { + "id": 3156, + "address": "0xbb0a009ba1eb20c5062c790432f080f6597662af", + "name": "BitBot V1", + "buyable": false, + "symbol": "BBP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.10659233, + "ccyValue": 141.68, + "ethDayChange": -0.291317009273825659, + "ccyDayChange": -0.265429 + }, + "tokenlist": false + }, { + "id": 551, + "address": "0x856c4388c56c2a613c60507a4701af627157fed6", + "name": "ETH Trending Alpha ST Set", + "buyable": false, + "symbol": "ETAS", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-32", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.22559068081886382, + "ccyValue": 300.67034, + "ethDayChange": -0.045009667094197752, + "ccyDayChange": -0.003384 + }, + "onchainEthPrice": 0.251106357557715429, + "tokenlist": false + }, { + "id": 1646, + "address": "0xc9ce70a381910d0a90b30d408cc9c7705ee882de", + "name": "Nyan.finance", + "buyable": true, + "symbol": "NYAN", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/nyan.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.001298186453265636, + "ccyValue": 1.730223, + "ethDayChange": -0.086646085197323652, + "ccyDayChange": -0.049328 + }, + "onchainEthPrice": 0.00155475, + "tokenlist": true + }, { + "id": 2666, + "address": "0x34950ff2b487d9e5282c5ab342d08a2f712eb79f", + "name": "EFFORCE IEO", + "buyable": true, + "symbol": "WOZX", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/wozx.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#272727", + "description": "Efforce (WOZX) is a platform which allows contributors to benefit from the energy savings generated by energy efficiency projects worldwide. Smart contracts and blockchain is used to redistribute energy savings to individuals and companies without intermediaries based on energy consumption/savings data. Founding team of Efforce consists of Jacopo Visetti, Jacopo Vanetti, Steve Wozniak, Ken Hardesty, Stefano Scozzese, and Andrea Castiglione.", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.001040485768881865, + "ccyValue": 1.386759, + "ethDayChange": -0.020387360534519931, + "ccyDayChange": 0.019676 + }, + "onchainEthPrice": 0.00102803, + "tokenlist": true + }, { + "id": 32, + "address": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", + "name": "Civic", + "buyable": true, + "symbol": "CVC", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/cvc.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#3AB03E", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000112534591722936, + "ccyValue": 0.149954, + "ethDayChange": 0.043496338174501398, + "ccyDayChange": 0.084329 + }, + "onchainEthPrice": 0.0001236286, + "tokenlist": true + }, { + "id": 19, + "address": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c", + "name": "Bancor", + "buyable": true, + "symbol": "BNT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bnt.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#002885", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00146, + "ccyValue": 1.946, + "ethDayChange": 0.06685382138783354, + "ccyDayChange": 0.105861 + }, + "onchainEthPrice": 0.001438, + "tokenlist": true + }, { + "id": 1094, + "address": "0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3", + "name": "Decentr", + "buyable": true, + "symbol": "DEC", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dec.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#4F80FF", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.00006714, + "ccyValue": 0.08947, + "ethDayChange": 0.36936572602177949, + "ccyDayChange": 0.423027 + }, + "onchainEthPrice": 0.000055250487348023, + "tokenlist": true + }, { + "id": 1453, + "address": "0xba2e7fed597fd0e3e70f5130bcdbbfe06bb94fe1", + "name": "yearn yearn.finance", + "buyable": false, + "symbol": "yYFI", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-yearn-7", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 22.931232132423613892, + "ccyValue": 30562.740609, + "ethDayChange": 0.017851592652049751, + "ccyDayChange": 0.05791 + }, + "onchainEthPrice": 22.657812994334074632, + "tokenlist": false + }, { + "id": 90, + "address": "0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195", + "name": "Po.et", + "buyable": true, + "symbol": "POE", + "decimals": 8, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/poe.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#B2A58F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 8.1796127755E-8, + "ccyValue": 0.000109, + "ethDayChange": -0.043831445817897337, + "ccyDayChange": -0.009091 + }, + "onchainEthPrice": 9.2331505644E-8, + "tokenlist": true + }, { + "id": 885, + "address": "0xba100000625a3754423978a60c9317c58a424e3d", + "name": "Balancer", + "buyable": true, + "symbol": "BAL", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/bal.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#212529", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.01728336, + "ccyValue": 23.02, + "ethDayChange": 0.110617050331840534, + "ccyDayChange": 0.153562 + }, + "onchainEthPrice": 0.01624331, + "tokenlist": true + }, { + "id": 613, + "address": "0x0ae055097c6d159879521c384f1d2123d1f195e6", + "name": "STAKE", + "buyable": true, + "symbol": "STAKE", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/stake.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#49A9A7", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.010781543987075648, + "ccyValue": 14.369639, + "ethDayChange": -0.029078123226127399, + "ccyDayChange": 0.009133 + }, + "onchainEthPrice": 0.012184336928396735, + "tokenlist": true + }, { + "id": 138, + "address": "0xc28e931814725bbeb9e670676fabbcb694fe7df2", + "name": "QuadrantProtocol", + "buyable": true, + "symbol": "eQUAD", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/equad.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2A2B6F", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867603, + "ethValue": 0.0000282227, + "ccyValue": 0.037525, + "ethDayChange": 0.957639404301955371, + "ccyDayChange": 1.02586 + }, + "onchainEthPrice": 0.000004600177803892, + "tokenlist": true + }, { + "id": 759, + "address": "0xa6fa6531acdf1f9f96eddd66a0f9481e35c2e42a", + "name": "Crypto BRL", + "buyable": false, + "symbol": "CBRL", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00014024, + "ccyValue": 0.186839, + "ethDayChange": -0.047282608695652174, + "ccyDayChange": -0.005943 + }, + "tokenlist": false + }, { + "id": 522, + "address": "0xd7efb00d12c2c13131fd319336fdf952525da2af", + "name": "Proton", + "buyable": false, + "symbol": "XPR", + "decimals": 4, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000003292435776674, + "ccyValue": 0.004387, + "ethDayChange": -0.16009291411377551, + "ccyDayChange": -0.125224 + }, + "tokenlist": false + }, { + "id": 413, + "address": "0x43c5bccb0233fcb6a9f5c6720fb7a195f15895e0", + "name": "Kee Dollars", + "buyable": false, + "symbol": "KEE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2757, + "address": "0xd8c82fbc4d8ed0644a7ec04cf973e84c6153c1d7", + "name": "Rizen Coin", + "buyable": false, + "symbol": "RZN", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.018880085879008169, + "ccyValue": 25.195558, + "ethDayChange": 0.642918070189889225, + "ccyDayChange": 0.768109 + }, + "tokenlist": false + }, { + "id": 340, + "address": "0xac8491258d2d93228e8b49aac2e332a96f04e56c", + "name": "0xETH Cash", + "buyable": false, + "symbol": "0xECH", + "decimals": 8, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2440, + "address": "0xa986f2a12d85c44429f574ba50c0e21052b18ba1", + "name": "XYO-ETH Uniswap pool token", + "buyable": false, + "symbol": "XYO-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1672, + "address": "0x74fb9da15d4f9a34d8c825798da0fa5c400dade1", + "name": "Corona Defi", + "buyable": false, + "symbol": "CORD", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.015450667075804107, + "ccyValue": 20.588199, + "ethDayChange": -0.007290664578697763, + "ccyDayChange": 0.017706 + }, + "tokenlist": false + }, { + "id": 1249, + "address": "0x597ad1e0c13bfe8025993d9e79c69e1c0233522e", + "name": "yearn USDC", + "buyable": false, + "symbol": "yUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "investmentId": "i-yearn-2", + "category": "savings", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.000792335911160318, + "ccyValue": 1.05716, + "ethDayChange": -0.038451942237400234, + "ccyDayChange": -0.00143 + }, + "tokenlist": false + }, { + "id": 2546, + "address": "0x5287407054dd77dcb94d69ba847210674a99a35c", + "name": "Torro DAO Token", + "buyable": false, + "symbol": "TORRO", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1133, + "address": "0xa10ae543db5d967a73e9abcc69c81a18a7fc0a78", + "name": "BLOCKCLOUT", + "buyable": false, + "symbol": "CLOUT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 3.00211583334E-7, + "ccyValue": 0.0004, + "ethDayChange": 2.934621013551769332, + "ccyDayChange": 2.738318 + }, + "tokenlist": false + }, { + "id": 2462, + "address": "0xab7fa2b2985bccfc13c6d86b1d5a17486ab1e04c", + "name": "FARM_DAI", + "buyable": false, + "symbol": "fDAI", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 1820, + "address": "0x5ac13261c181a9c3938bfe1b649e65d10f98566b", + "name": "UNI-USDT Uniswap pool token", + "buyable": false, + "symbol": "UNI-USDT", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }, { + "id": 2872, + "address": "0xe0ad1806fd3e7edf6ff52fdb822432e847411033", + "name": "OnX.finance", + "buyable": false, + "symbol": "ONX", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867623, + "ethValue": 0.002906129346532162, + "ccyValue": 3.878242, + "ethDayChange": -0.017828652348309837, + "ccyDayChange": 0.022131 + }, + "tokenlist": false + }, { + "id": 2370, + "address": "0xf3db7560e820834658b590c96234c333cd3d5e5e", + "name": "Poker Chips", + "buyable": false, + "symbol": "CHP", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867612, + "ethValue": 0.000005800000000002, + "ccyValue": 0.00773, + "ethDayChange": 0.327231121281922197, + "ccyDayChange": 0.38605 + }, + "tokenlist": false + }, { + "id": 1772, + "address": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", + "name": "DefiPulse Index", + "buyable": true, + "symbol": "DPI", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/dpi.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#8150E6", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.21455050634366823, + "ccyValue": 285.952863, + "ethDayChange": 0.010616399388196886, + "ccyDayChange": 0.054398 + }, + "onchainEthPrice": 0.2012458601548435, + "tokenlist": true + }, { + "id": 572, + "address": "0xf43b2f981efc5a611a97951ce4fd7d3bd87f4902", + "name": "BullBearEthereum Set II", + "buyable": false, + "symbol": "BBE", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-tokensets-social-14", + "category": "marketPositions", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.34521176, + "ccyValue": 460.312446, + "ethDayChange": -0.000999000999000999, + "ccyDayChange": 0.036608 + }, + "onchainEthPrice": 0.393691340192822204, + "tokenlist": false + }, { + "id": 1736, + "address": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "name": "Amp", + "buyable": true, + "symbol": "AMP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/amp.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#D9327C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00000438, + "ccyValue": 0.005836, + "ethDayChange": -0.037362637362637363, + "ccyDayChange": 0.003784 + }, + "onchainEthPrice": 0.00000489379363959, + "tokenlist": true + }, { + "id": 147, + "address": "0x960b236a07cf122663c4303350609a66a7b288c0", + "name": "Aragon Network Token", + "buyable": true, + "symbol": "ANT", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/ant.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#00CADB", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.002929, + "ccyValue": 3.902, + "ethDayChange": 0.022695530726256983, + "ccyDayChange": 0.060614 + }, + "onchainEthPrice": 0.003227918255062605, + "tokenlist": true + }, { + "id": 1048, + "address": "0xcc4304a31d09258b0029ea7fe63d032f52e44efe", + "name": "TrustSwap Token", + "buyable": true, + "symbol": "SWAP", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/swap.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#2BD3FD", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000428045211209841, + "ccyValue": 0.570499, + "ethDayChange": 0.021490099298016896, + "ccyDayChange": 0.065726 + }, + "onchainEthPrice": 0.00045157821936444, + "tokenlist": true + }, { + "id": 1838, + "address": "0x0aacfbec6a24756c20d41914f2caba817c0d8521", + "name": "YAM", + "buyable": true, + "symbol": "YAM", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/yam.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#EC0E5C", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.002615377085012807, + "ccyValue": 3.485021, + "ethDayChange": 0.205354795653934531, + "ccyDayChange": 0.253356 + }, + "onchainEthPrice": 0.00216863, + "tokenlist": true + }, { + "id": 672, + "address": "0xb6909b960dbbe7392d405429eb2b3649752b4838", + "name": "BAT-ETH Uniswap pool token", + "buyable": false, + "symbol": "BAT-ETH", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "investmentId": "i-uniswap-v2-3", + "category": "liquidityPools", + "refundable": false, + "spotPrice": { + "date": 1611867643, + "ethValue": 0.034979023958422545, + "ccyValue": 46.627112, + "ethDayChange": -0.026712352313914044, + "ccyDayChange": 0.009289 + }, + "onchainEthPrice": 0.03402791189867198, + "tokenlist": false + }, { + "id": 1300, + "address": "0x9f284e1337a815fe77d2ff4ae46544645b20c5ff", + "name": "Darwinia Commitment Token", + "buyable": true, + "symbol": "KTON", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/kton.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#40A965", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867602, + "ethValue": 0.0864, + "ccyValue": 115.14, + "ethDayChange": 0.111969111969111969, + "ccyDayChange": 0.152668 + }, + "onchainEthPrice": 0.083684191886479785, + "tokenlist": true + }, { + "id": 366, + "address": "0x4cd988afbad37289baaf53c13e98e2bd46aaea8c", + "name": "KEY", + "buyable": true, + "symbol": "KEY", + "decimals": 18, + "iconUrl": "https://dv3jj1unlp2jl.cloudfront.net/128/color/key.png", + "sendable": true, + "dailyLimit": true, + "brandColor": "#008DD3", + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 4.65262378057E-7, + "ccyValue": 0.00062, + "ethDayChange": -0.031556493627360621, + "ccyDayChange": 0.006494 + }, + "onchainEthPrice": 4.71849714149E-7, + "tokenlist": true + }, { + "id": 850, + "address": "0x0488401c3f535193fa8df029d9ffe615a06e74e6", + "name": "SparkPoint", + "buyable": false, + "symbol": "SRK", + "decimals": 18, + "sendable": true, + "dailyLimit": true, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867613, + "ethValue": 0.000001791558449162, + "ccyValue": 0.002388, + "ethDayChange": -0.058111756807175588, + "ccyDayChange": -0.02091 + }, + "onchainEthPrice": 0.000001950154817147, + "tokenlist": false + }, { + "id": 139, + "address": "0xe5a3229ccb22b6484594973a03a3851dcd948756", + "name": "RAE Token", + "buyable": false, + "symbol": "RAE", + "decimals": 18, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867635, + "ethValue": 0.00359558, + "ccyValue": 4.79, + "ethDayChange": -0.026200329332235559, + "ccyDayChange": 0.008421 + }, + "tokenlist": false + }, { + "id": 394, + "address": "0xa2609b2b43ac0f5ebe27deb944d2a399c201e3da", + "name": "yUSDC", + "buyable": false, + "symbol": "yUSDC", + "decimals": 6, + "sendable": true, + "dailyLimit": false, + "category": "tokens", + "refundable": false, + "spotPrice": { + "date": 1611867937 + }, + "tokenlist": false + }] +} \ No newline at end of file