diff --git a/ui/app/AppLayouts/Wallet/Components/TokenSettingsModalContent.qml b/ui/app/AppLayouts/Wallet/Components/TokenSettingsModalContent.qml new file mode 100644 index 0000000000..f4b1f88bd2 --- /dev/null +++ b/ui/app/AppLayouts/Wallet/Components/TokenSettingsModalContent.qml @@ -0,0 +1,151 @@ +import QtQuick 2.3 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import Qt.labs.platform 1.1 +import "../../../../imports" +import "../../../../shared" +import "../tokens/" + +Item { + id: element + + Text { + id: modalDialogTitle + text: "Add/Remove Tokens" + anchors.top: parent.top + anchors.left: parent.left + font.bold: true + font.pixelSize: 17 + anchors.leftMargin: 16 + anchors.topMargin: 16 + } + + Image { + id: closeModalImg + anchors.top: parent.top + anchors.right: parent.right + anchors.rightMargin: 16 + anchors.topMargin: 16 + source: "../../../img/close.svg" + MouseArea { + id: closeModalMouseArea + cursorShape: Qt.PointingHandCursor + anchors.fill: parent + onClicked: { + popup.close() + } + } + } + + Separator { + id: headerSeparator + anchors.top: modalDialogTitle.bottom + } + + Item { + id: modalBody + anchors.right: parent.right + anchors.rightMargin: 32 + anchors.top: headerSeparator.bottom + anchors.topMargin: Theme.padding + anchors.bottom: footerSeparator.top + anchors.bottomMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 32 + + ScrollView { + anchors.fill: parent + Layout.fillWidth: true + Layout.fillHeight: true + + ScrollBar.vertical.policy: ScrollBar.AlwaysOn + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + + ListView { + anchors.fill: parent + spacing: 4 + id: tokenListView + model: Tokens {} + Layout.fillWidth: true + Layout.fillHeight: true + delegate: Component { + + Item { + id: element + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + height: 40 + + Image { + id: assetInfoImage + width: 36 + height: 36 + source: "../../../img/tokens/SNT@3x.png" + anchors.left: parent.left + anchors.leftMargin: 0 + anchors.verticalCenter: parent.verticalCenter + } + Text { + id: assetFullTokenName + text: name + anchors.bottom: parent.bottom + anchors.bottomMargin: 0 + anchors.left: assetInfoImage.right + anchors.leftMargin: Theme.smallPadding + color: Theme.darkGrey + font.pixelSize: 15 + } + Text { + id: assetSymbol + text: symbol + anchors.left: assetInfoImage.right + anchors.leftMargin: Theme.smallPadding + anchors.top: assetInfoImage.top + anchors.topMargin: 0 + color: Theme.black + font.pixelSize: 15 + } + } + } + // delegate: Message { + // userName: model.userName + // message: model.message + // identicon: model.identicon + // isCurrentUser: model.isCurrentUser + // repeatMessageInfo: model.repeatMessageInfo + // timestamp: model.timestamp + // sticker: model.sticker + // contentType: model.contentType + // } + highlightFollowsCurrentItem: true + } + } + } + + Separator { + id: footerSeparator + anchors.bottom: parent.bottom + anchors.bottomMargin: 76 + } + + StyledButton { + anchors.right: parent.right + anchors.rightMargin: Theme.padding + label: "Apply to all accounts" + anchors.bottom: parent.bottom + anchors.bottomMargin: Theme.padding + onClicked: { + console.log(txtCurrency.textField.text) + assetsModel.setDefaultCurrency(txtCurrency.textField.text) + popup.close() + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/ui/app/AppLayouts/Wallet/Components/qmldir b/ui/app/AppLayouts/Wallet/Components/qmldir index bfd97c0c21..57ff9cf383 100644 --- a/ui/app/AppLayouts/Wallet/Components/qmldir +++ b/ui/app/AppLayouts/Wallet/Components/qmldir @@ -1,3 +1,4 @@ SendModalContent 1.0 SendModalContent.qml SettingsModalContent 1.0 SettingsModalContent.qml +TokenSettingsModalContent 1.0 TokenSettingsModalContent.qml AddAccount 1.0 AddAccount.qml diff --git a/ui/app/AppLayouts/Wallet/TokenSettingsModal.qml b/ui/app/AppLayouts/Wallet/TokenSettingsModal.qml new file mode 100644 index 0000000000..6b6cfcd4b0 --- /dev/null +++ b/ui/app/AppLayouts/Wallet/TokenSettingsModal.qml @@ -0,0 +1,45 @@ +import QtQuick 2.3 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import Qt.labs.platform 1.1 +import "../../../imports" +import "../../../shared" +import "./Components" + +Item { + function open() { + popup.open() + } + + function close() { + popup.close() + } + + Popup { + id: popup + modal: true + closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside + Overlay.modal: Rectangle { + color: "#60000000" + } + parent: Overlay.overlay + x: Math.round((parent.width - width) / 2) + y: Math.round((parent.height - height) / 2) + width: 480 + height: 510 + background: Rectangle { + color: Theme.white + radius: Theme.radius + } + padding: 0 + contentItem: TokenSettingsModalContent { + id: settingsModalContent + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/ui/app/AppLayouts/Wallet/WalletHeader.qml b/ui/app/AppLayouts/Wallet/WalletHeader.qml index fa80dcb772..52570004e8 100644 --- a/ui/app/AppLayouts/Wallet/WalletHeader.qml +++ b/ui/app/AppLayouts/Wallet/WalletHeader.qml @@ -73,6 +73,10 @@ Item { id: settingsModal } + TokenSettingsModal{ + id: tokenSettingsModal + } + Item { property int btnMargin: 8 property int btnOuterMargin: 32 @@ -179,7 +183,7 @@ Item { text: qsTr("Add/Remove Tokens") icon.source: "../../img/add_remove_token.svg" onTriggered: { - console.log("TODO: Add/Remove Tokens") + tokenSettingsModal.open() } } QQC2.Action { diff --git a/ui/app/AppLayouts/Wallet/tokens/qmldir b/ui/app/AppLayouts/Wallet/tokens/qmldir new file mode 100644 index 0000000000..f2dd8c3ffc --- /dev/null +++ b/ui/app/AppLayouts/Wallet/tokens/qmldir @@ -0,0 +1 @@ +Tokens 1.0 Tokens.qml \ No newline at end of file diff --git a/ui/app/AppLayouts/Wallet/tokens/tokens.qml b/ui/app/AppLayouts/Wallet/tokens/tokens.qml new file mode 100644 index 0000000000..ddabc4bf7e --- /dev/null +++ b/ui/app/AppLayouts/Wallet/tokens/tokens.qml @@ -0,0 +1,1152 @@ +import QtQuick 2.3 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import Qt.labs.platform 1.1 + +ListModel { + + ListElement { + symbol: "DAI" + name: "Dai Stablecoin" + address: "0x6b175474e89094c44da98b954eedeac495271d0f" + decimals: 18 + } + + ListElement { + symbol: "SAI" + name: "Sai Stablecoin v1.0" + address: "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359" + decimals: 18 + } + + ListElement { + symbol: "MKR" + name: "MKR" + address: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" + decimals: 18 + } + + ListElement { + symbol: "EOS" + name: "EOS" + address: "0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0" + decimals: 18 + } + + ListElement { + symbol: "OMG" + name: "OMGToken" + address: "0xd26114cd6ee289accf82350c8d8487fedb8a0c07" + decimals: 18 + } + + ListElement { + symbol: "PPT" + name: "Populous Platform" + address: "0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a" + decimals: 8 + } + + ListElement { + symbol: "REP" + name: "Reputation" + address: "0x1985365e9f78359a9b6ad760e32412f4a445e862" + decimals: 18 + } + + ListElement { + symbol: "POWR" + name: "PowerLedger" + address: "0x595832f8fc6bf59c85c527fec3740a1b7a361269" + decimals: 6 + } + + ListElement { + symbol: "PAY" + name: "TenX Pay Token" + address: "0xb97048628db6b661d4c2aa833e95dbe1a905b280" + decimals: 18 + } + + ListElement { + symbol: "VRS" + name: "Veros" + address: "0x92e78dae1315067a8819efd6dca432de9dcde2e9" + decimals: 6 + } + + ListElement { + symbol: "GNT" + name: "Golem Network Token" + address: "0xa74476443119a942de498590fe1f2454d7d4ac0d" + decimals: 18 + } + + ListElement { + symbol: "SALT" + name: "Salt" + address: "0x4156d3342d5c385a87d264f90653733592000581" + decimals: 8 + } + + ListElement { + symbol: "BNB" + name: "BNB" + address: "0xb8c77482e45f1f44de1745f52c74426c631bdd52" + decimals: 18 + } + + ListElement { + symbol: "BAT" + name: "Basic Attention Token" + address: "0x0d8775f648430679a709e98d2b0cb6250d2887ef" + decimals: 18 + } + + ListElement { + symbol: "KNC" + name: "Kyber Network Crystal" + address: "0xdd974d5c2e2928dea5f71b9825b8b646686bd200" + decimals: 18 + } + + ListElement { + symbol: "BTU" + name: "BTU Protocol" + address: "0xb683D83a532e2Cb7DFa5275eED3698436371cc9f" + decimals: 18 + } + + ListElement { + symbol: "DGD" + name: "Digix DAO" + address: "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a" + decimals: 9 + skipDecimalsCheck: true + } + + ListElement { + symbol: "AE" + name: "Aeternity" + address: "0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d" + decimals: 18 + } + + ListElement { + symbol: "TRX" + name: "Tronix" + address: "0xf230b790e05390fc8295f4d3f60332c93bed42e2" + decimals: 6 + } + + ListElement { + symbol: "ETHOS" + name: "Ethos" + address: "0x5af2be193a6abca9c8817001f45744777db30756" + decimals: 8 + } + + ListElement { + symbol: "RDN" + name: "Raiden Token" + address: "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6" + decimals: 18 + } + + ListElement { + symbol: "SNT" + name: "Status Network Token" + address: "0x744d70fdbe2ba4cf95131626614a1763df805b9e" + decimals: 18 + } + + ListElement { + symbol: "SNGLS" + name: "SingularDTV" + address: "0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009" + decimals: 0 + } + + ListElement { + symbol: "GNO" + name: "Gnosis Token" + address: "0x6810e776880c02933d47db1b9fc05908e5386b96" + decimals: 18 + } + + ListElement { + symbol: "STORJ" + name: "StorjToken" + address: "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac" + decimals: 8 + } + + ListElement { + symbol: "ADX" + name: "AdEx" + address: "0x4470bb87d77b963a013db939be332f927f2b992e" + decimals: 4 + } + + ListElement { + symbol: "FUN" + name: "FunFair" + address: "0x419d0d8bdd9af5e606ae2232ed285aff190e711b" + decimals: 8 + } + + ListElement { + symbol: "CVC" + name: "Civic" + address: "0x41e5560054824ea6b0732e656e3ad64e20e94e45" + decimals: 8 + } + + ListElement { + symbol: "ICN" + name: "ICONOMI" + address: "0x888666ca69e0f178ded6d75b5726cee99a87d698" + decimals: 18 + } + + ListElement { + symbol: "WTC" + name: "Walton Token" + address: "0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74" + decimals: 18 + } + + ListElement { + symbol: "BTM" + name: "Bytom" + address: "0xcb97e65f07da24d46bcdd078ebebd7c6e6e3d750" + decimals: 8 + } + + ListElement { + symbol: "ZRX" + name: "0x Protocol Token" + address: "0xe41d2489571d322189246dafa5ebde1f4699f498" + decimals: 18 + } + + ListElement { + symbol: "BNT" + name: "Bancor Network Token" + address: "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c" + decimals: 18 + } + + ListElement { + symbol: "MTL" + name: "Metal" + address: "0xf433089366899d83a9f26a773d59ec7ecf30355e" + decimals: 8 + } + + ListElement { + symbol: "PPP" + name: "PayPie" + address: "0xc42209accc14029c1012fb5680d95fbd6036e2a0" + decimals: 18 + } + + ListElement { + symbol: "LINK" + name: "ChainLink Token" + address: "0x514910771af9ca656af840dff83e8264ecf986ca" + decimals: 18 + } + + ListElement { + symbol: "KIN" + name: "Kin" + address: "0x818fc6c2ec5986bc6e2cbf00939d90556ab12ce5" + decimals: 18 + } + + ListElement { + symbol: "ANT" + name: "Aragon Network Token" + address: "0x960b236a07cf122663c4303350609a66a7b288c0" + decimals: 18 + } + + ListElement { + symbol: "MGO" + name: "MobileGo Token" + address: "0x40395044ac3c0c57051906da938b54bd6557f212" + decimals: 8 + } + + ListElement { + symbol: "MCO" + name: "Monaco" + address: "0xb63b606ac810a52cca15e44bb630fd42d8d1d83d" + decimals: 8 + } + + ListElement { + symbol: "LRC" + name: "loopring" + address: "0xef68e7c694f40c8202821edf525de3782458639f" + decimals: 18 + skipDecimalsCheck: true + } + + ListElement { + symbol: "ZSC" + name: "Zeus Shield Coin" + address: "0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63" + decimals: 18 + } + + ListElement { + symbol: "DATA" + name: "Streamr DATAcoin" + address: "0x0cf0ee63788a0849fe5297f3407f701e122cc023" + decimals: 18 + } + + ListElement { + symbol: "RCN" + name: "Ripio Credit Network Token" + address: "0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6" + decimals: 18 + } + + ListElement { + symbol: "WINGS" + name: "WINGS" + address: "0x667088b212ce3d06a1b553a7221e1fd19000d9af" + decimals: 18 + } + + ListElement { + symbol: "EDG" + name: "Edgeless" + address: "0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c" + decimals: 0 + } + + ListElement { + symbol: "MLN" + name: "Melon Token" + address: "0xbeb9ef514a379b997e0798fdcc901ee474b6d9a1" + decimals: 18 + } + + ListElement { + symbol: "MDA" + name: "Moeda Loyalty Points" + address: "0x51db5ad35c671a87207d88fc11d593ac0c8415bd" + decimals: 18 + } + + ListElement { + symbol: "PLR" + name: "PILLAR" + address: "0xe3818504c1b32bf1557b16c238b2e01fd3149c17" + decimals: 18 + } + + ListElement { + symbol: "QRL" + name: "QRL" + address: "0x697beac28b09e122c4332d163985e8a73121b97f" + decimals: 8 + } + + ListElement { + symbol: "MOD" + name: "Modum Token" + address: "0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e" + decimals: 0 + } + + ListElement { + symbol: "TAAS" + name: "Token-as-a-Service" + address: "0xe7775a6e9bcf904eb39da2b68c5efb4f9360e08c" + decimals: 6 + } + + ListElement { + symbol: "GRID" + name: "GRID Token" + address: "0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd" + decimals: 12 + } + + ListElement { + symbol: "SAN" + name: "SANtiment network token" + address: "0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098" + decimals: 18 + } + + ListElement { + symbol: "SNM" + name: "SONM Token" + address: "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63" + decimals: 18 + } + + ListElement { + symbol: "REQ" + name: "Request Token" + address: "0x8f8221afbb33998d8584a2b05749ba73c37a938a" + decimals: 18 + } + + ListElement { + symbol: "SUB" + name: "Substratum" + address: "0x12480e24eb5bec1a9d4369cab6a80cad3c0a377a" + decimals: 2 + } + + ListElement { + symbol: "MANA" + name: "Decentraland MANA" + address: "0x0f5d2fb29fb7d3cfee444a200298f468908cc942" + decimals: 18 + } + + ListElement { + symbol: "AST" + name: "AirSwap Token" + address: "0x27054b13b1b798b345b591a4d22e6562d47ea75a" + decimals: 4 + } + + ListElement { + symbol: "R" + name: "R token" + address: "0x48f775efbe4f5ece6e0df2f7b5932df56823b990" + decimals: 0 + } + + ListElement { + symbol: "1ST" + name: "FirstBlood Token" + address: "0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7" + decimals: 18 + } + + ListElement { + symbol: "CFI" + name: "Cofoundit" + address: "0x12fef5e57bf45873cd9b62e9dbd7bfb99e32d73e" + decimals: 18 + } + + ListElement { + symbol: "ENG" + name: "Enigma" + address: "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4" + decimals: 8 + } + + ListElement { + symbol: "AMB" + name: "Amber Token" + address: "0x4dc3643dbc642b72c158e7f3d2ff232df61cb6ce" + decimals: 18 + } + + ListElement { + symbol: "XPA" + name: "XPlay Token" + address: "0x90528aeb3a2b736b780fd1b6c478bb7e1d643170" + decimals: 18 + } + + ListElement { + symbol: "OTN" + name: "Open Trading Network" + address: "0x881ef48211982d01e2cb7092c915e647cd40d85c" + decimals: 18 + } + + ListElement { + symbol: "TRST" + name: "Trustcoin" + address: "0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b" + decimals: 6 + } + + ListElement { + symbol: "TKN" + name: "Monolith TKN" + address: "0xaaaf91d9b90df800df4f55c205fd6989c977e73a" + decimals: 8 + } + + ListElement { + symbol: "RHOC" + name: "RHOC" + address: "0x168296bb09e24a88805cb9c33356536b980d3fc5" + decimals: 8 + } + + ListElement { + symbol: "TGT" + name: "Target Coin" + address: "0xac3da587eac229c9896d919abc235ca4fd7f72c1" + decimals: 1 + } + + ListElement { + symbol: "EVX" + name: "Everex" + address: "0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8" + decimals: 4 + } + + ListElement { + symbol: "ICOS" + name: "ICOS" + address: "0x014b50466590340d41307cc54dcee990c8d58aa8" + decimals: 6 + } + + ListElement { + symbol: "DNT" + name: "district0x Network Token" + address: "0x0abdace70d3790235af448c88547603b945604ea" + decimals: 18 + } + + ListElement { + symbol: "٨" + name: "Dentacoin" + address: "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6" + decimals: 0 + } + + ListElement { + symbol: "EDO" + name: "Eidoo Token" + address: "0xced4e93198734ddaff8492d525bd258d49eb388e" + decimals: 18 + } + + ListElement { + symbol: "CSNO" + name: "BitDice" + address: "0x29d75277ac7f0335b2165d0895e8725cbf658d73" + decimals: 8 + } + + ListElement { + symbol: "COB" + name: "Cobinhood Token" + address: "0xb2f7eb1f2c37645be61d73953035360e768d81e6" + decimals: 18 + } + + ListElement { + symbol: "ENJ" + name: "Enjin Coin" + address: "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c" + decimals: 18 + } + + ListElement { + symbol: "AVT" + name: "AVENTUS" + address: "0x0d88ed6e74bbfd96b831231638b66c05571e824f" + decimals: 18 + } + + ListElement { + symbol: "TIME" + name: "Chronobank TIME" + address: "0x6531f133e6deebe7f2dce5a0441aa7ef330b4e53" + decimals: 8 + } + + ListElement { + symbol: "CND" + name: "Cindicator Token" + address: "0xd4c435f5b09f855c3317c8524cb1f586e42795fa" + decimals: 18 + } + + ListElement { + symbol: "STX" + name: "Stox" + address: "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45" + decimals: 18 + } + + ListElement { + symbol: "XAUR" + name: "Xaurum" + address: "0x4df812f6064def1e5e029f1ca858777cc98d2d81" + decimals: 8 + } + + ListElement { + symbol: "VIB" + name: "Vibe" + address: "0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724" + decimals: 18 + } + + ListElement { + symbol: "PRG" + name: "PRG" + address: "0x7728dfef5abd468669eb7f9b48a7f70a501ed29d" + decimals: 6 + } + + ListElement { + symbol: "DPY" + name: "Delphy Token" + address: "0x6c2adc2073994fb2ccc5032cc2906fa221e9b391" + decimals: 18 + } + + ListElement { + symbol: "CDT" + name: "CoinDash Token" + address: "0x2fe6ab85ebbf7776fee46d191ee4cea322cecf51" + decimals: 18 + } + + ListElement { + symbol: "TNT" + name: "Tierion Network Token" + address: "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8" + decimals: 8 + } + + ListElement { + symbol: "DRT" + name: "DomRaiderToken" + address: "0x9af4f26941677c706cfecf6d3379ff01bb85d5ab" + decimals: 8 + } + + ListElement { + symbol: "SPANK" + name: "SPANK" + address: "0x42d6622dece394b54999fbd73d108123806f6a18" + decimals: 18 + } + + ListElement { + symbol: "BRLN" + name: "Berlin Coin" + address: "0x80046305aaab08f6033b56a360c184391165dc2d" + decimals: 18 + } + + ListElement { + symbol: "USDC" + name: "USD//C" + address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + decimals: 6 + } + + ListElement { + symbol: "LPT" + name: "Livepeer Token" + address: "0x58b6a8a3302369daec383334672404ee733ab239" + decimals: 18 + } + + ListElement { + symbol: "ST" + name: "Simple Token" + address: "0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca" + decimals: 18 + } + + ListElement { + symbol: "WBTC" + name: "Wrapped BTC" + address: "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + decimals: 8 + } + + ListElement { + symbol: "BLT" + name: "Bloom Token" + address: "0x107c4504cd79c5d2696ea0030a8dd4e92601b82e" + decimals: 18 + } + + // NOTE(goranjovic): the following tokens are collectibles + + ListElement { + symbol: "CK" + nft: true + name: "CryptoKitties" + address: "0x06012c8cf97bead5deae237070f9587f8e7a266d" + } + + ListElement { + symbol: "EMONA" + nft: true + name: "EtheremonAsset" + address: "0xb2c0782ae4a299f7358758b2d15da9bf29e1dd99" + } + + ListElement { + symbol: "STRK" + nft: true + name: "CryptoStrikers" + address: "0xdcaad9fd9a74144d226dbf94ce6162ca9f09ed7e" + } + + ListElement { + symbol: "SUPR" + nft: true + name: "SupeRare" + address: "0x41a322b28d0ff354040e2cbc676f0320d8c8850d" + } + + ListElement { + symbol: "KDO" + nft: true + name: "KudosToken" + address: "0x2aea4add166ebf38b63d09a75de1a7b94aa24163" + } + + ListElement { + address: "0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d" + decimals: 18 + symbol: "QSP" + name: "Quantstamp Token" + } + + ListElement { + address: "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03" + decimals: 18 + symbol: "LEND" + name: "EHTLend" + } + + ListElement { + address: "0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3" + decimals: 18 + symbol: "NPXS" + name: "Pundi X Token" + } + + ListElement { + address: "0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0" + decimals: 18 + symbol: "LOOM" + name: "Loom Network" + } + + ListElement { + address: "0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195" + decimals: 8 + symbol: "POE" + name: "Po.et Tokens" + } + + ListElement { + address: "0x5732046A883704404F284Ce41FfADd5b007FD668" + decimals: 18 + symbol: "BLZ" + name: "Bluzelle" + } + + ListElement { + address: "0xFA1a856Cfa3409CFa145Fa4e20Eb270dF3EB21ab" + decimals: 18 + symbol: "IOST" + name: "IOSToken" + } + + ListElement { + address: "0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671" + decimals: 18 + symbol: "NMR" + name: "Numerai" + } + + ListElement { + address: "0x8E870D67F660D95d5be530380D0eC0bd388289E1" + decimals: 18 + symbol: "PAX" + name: "Paxos Standard (PAX)" + } + + ListElement { + address: "0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6" + decimals: 0 + symbol: "DCN" + name: "Dentacoin" + } + + ListElement { + address: "0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664" + decimals: 18 + symbol: "QKC" + name: "QuarkChain" + } + + ListElement { + address: "0x45804880De22913dAFE09f4980848ECE6EcbAf78" + decimals: 18 + symbol: "PAXG" + name: "Paxos Gold" + } + + ListElement { + address: "0x865ec58b06bF6305B886793AA20A2da31D034E68" + decimals: 18 + symbol: "MOC" + name: "Moss Coin" + } + + ListElement { + address: "0x408e41876cCCDC0F92210600ef50372656052a38" + decimals: 18 + symbol: "REN" + name: "Republic Token" + } + + ListElement { + address: "0x607F4C5BB672230e8672085532f7e901544a7375" + decimals: 9 + symbol: "RLC" + name: "IEx.ec" + } + + ListElement { + address: "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e" + decimals: 8 + symbol: "UBT" + name: "Unibright" + } + + ListElement { + address: "0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF" + decimals: 9 + symbol: "DGX" + name: "Digix Gold Token" + } + + ListElement { + address: "0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40" + decimals: 18 + symbol: "FUEL" + name: "Etherparty FUEL" + } + + ListElement { + address: "0x00000100F2A2bd000715001920eB70D229700085" + decimals: 18 + symbol: "TCAD" + name: "TrueCAD" + } + + ListElement { + address: "0x6710c63432A2De02954fc0f851db07146a6c0312" + decimals: 18 + symbol: "MFG" + name: "SyncFab Smart Manufacturing Blockchain" + } + + ListElement { + address: "0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf" + decimals: 18 + symbol: "GEN" + name: "DAOstack" + } + + ListElement { + address: "0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6" + decimals: 18 + symbol: "ABYSS" + name: "The Abyss" + } + + ListElement { + address: "0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206" + decimals: 18 + symbol: "NEXO" + name: "Nexo" + } + + ListElement { + address: "0x0000000000085d4780B73119b644AE5ecd22b376" + decimals: 18 + symbol: "TUSD" + name: "TrueUSD" + } + + ListElement { + address: "0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433" + decimals: 18 + symbol: "STORM" + name: "Storm Token" + } + + ListElement { + address: "0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16" + decimals: 5 + symbol: "MTH" + name: "Monetha" + } + + ListElement { + address: "0x00000000441378008EA67F4284A57932B1c000a5" + decimals: 18 + symbol: "TGBP" + name: "TrueGBP" + } + + ListElement { + address: "0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e" + decimals: 18 + symbol: "ELF" + name: "ELF Token" + } + + ListElement { + address: "0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC" + decimals: 18 + symbol: "POLY" + name: "Polymath Network" + } + + ListElement { + address: "0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A" + decimals: 6 + symbol: "SPN" + name: "Sapien" + } + + ListElement { + address: "0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB" + decimals: 18 + symbol: "APPC" + name: "AppCoins" + } + + ListElement { + address: "0xdAC17F958D2ee523a2206206994597C13D831ec7" + decimals: 6 + symbol: "USDT" + name: "USD Tether (erc20)" + } + + ListElement { + address: "0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e" + decimals: 18 + symbol: "MET" + name: "Metronome" + } + + ListElement { + address: "0x6f259637dcD74C767781E37Bc6133cd6A68aa161" + decimals: 18 + symbol: "HT" + name: "Huobi Token" + } + + ListElement { + address: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + decimals: 18 + symbol: "WETH" + name: "WETH" + } + + ListElement { + address: "0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374" + decimals: 18 + symbol: "VERI" + name: "Veritaseum" + } + + ListElement { + address: "0x00006100F7090010005F1bd7aE6122c3C2CF0090" + decimals: 18 + symbol: "TAUD" + name: "TrueAUD" + } + + ListElement { + address: "0x66497A283E0a007bA3974e837784C6AE323447de" + decimals: 18 + symbol: "PT" + name: "PornToken" + } + + ListElement { + address: "0xB24754bE79281553dc1adC160ddF5Cd9b74361a4" + decimals: 9 + symbol: "XRL" + name: "XRL" + } + + ListElement { + address: "0xC011A72400E58ecD99Ee497CF89E3775d4bd732F" + decimals: 18 + symbol: "SNX" + name: "Synthetix Network Token" + } + + ListElement { + address: "0x07e3c70653548B04f0A75970C1F81B4CBbFB606f" + decimals: 18 + symbol: "DLT" + name: "Agrello" + } + + ListElement { + address: "0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26" + decimals: 18 + symbol: "OGN" + name: "OriginToken" + } + + ListElement { + address: "0x554C20B7c486beeE439277b4540A434566dC4C02" + decimals: 18 + symbol: "HST" + name: "Decision Token" + } + + ListElement { + address: "0x286BDA1413a2Df81731D4930ce2F862a35A609fE" + decimals: 18 + symbol: "WABI" + name: "Tael" + } + + ListElement { + address: "0xE5a3229CCb22b6484594973A03a3851dCd948756" + decimals: 18 + symbol: "RAE" + name: "RAE Token" + } + + ListElement { + address: "0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B" + decimals: 18 + symbol: "UKG" + name: "UnikoinGold" + } + + ListElement { + address: "0xD46bA6D942050d489DBd938a2C909A5d5039A161" + decimals: 9 + symbol: "AMPL" + name: "Ampleforth" + } + + ListElement { + address: "0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe" + decimals: 6 + symbol: "USDS" + name: "StableUSD" + } + + ListElement { + address: "0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986" + decimals: 18 + symbol: "ABT" + name: "ArcBlock Token" + } + + ListElement { + address: "0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c" + decimals: 18 + symbol: "DAT" + name: "Datum Token" + } + + ListElement { + address: "0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE" + decimals: 18 + symbol: "EKO" + name: "EchoLink" + } + + ListElement { + address: "0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA" + decimals: 18 + symbol: "OST" + name: "Simple Token 'OST'" + } + + ListElement { + address: "0xc92D6E3E64302C59d734f3292E2A13A13D7E1817" + decimals: 8 + symbol: "FXC" + name: "FUTURAX" + } + + ListElement { + address: "0x4a57E687b9126435a9B19E4A802113e266AdeBde" + decimals: 18 + symbol: "FXC" + name: "Flexacoin" + } + + ListElement { + address: "0xC86D054809623432210c107af2e3F619DcFbf652" + decimals: 18 + symbol: "UPP" + name: "Sentinel Protocol" + } + + ListElement { + address: "0x5Af2Be193a6ABCa9c8817001F45744777Db30756" + decimals: 8 + symbol: "BQX" + name: "Bitquence" + } + + ListElement { + address: "0x69b148395ce0015c13e36bffbad63f49ef874e03" + symbol: "DTA" + name: "Data" + decimals: 18 + } + + ListElement { + address: "0x57ab1e02fee23774580c119740129eac7081e9d3" + symbol: "SUSD" + name: "Synth sUSD" + decimals: 18 + } + + ListElement { + address: "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643" + symbol: "CDAI" + name: "Compound Dai" + decimals: 8 + } + + ListElement { + address: "0xba11d00c5f74255f56a5e366f4f77f5a186d7f55" + symbol: "BAND" + name: "BandToken" + decimals: 18 + } + + ListElement { + address: "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650" + symbol: "SPIKE" + name: "Spiking" + decimals: 10 + } + +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/ui/app/img/tokens/0-native.png b/ui/app/img/tokens/0-native.png new file mode 100644 index 0000000000..0a964c3893 Binary files /dev/null and b/ui/app/img/tokens/0-native.png differ diff --git a/ui/app/img/tokens/0-native@2x.png b/ui/app/img/tokens/0-native@2x.png new file mode 100644 index 0000000000..a6c09642f9 Binary files /dev/null and b/ui/app/img/tokens/0-native@2x.png differ diff --git a/ui/app/img/tokens/0-native@3x.png b/ui/app/img/tokens/0-native@3x.png new file mode 100644 index 0000000000..33e8338773 Binary files /dev/null and b/ui/app/img/tokens/0-native@3x.png differ diff --git a/ui/app/img/tokens/1ST.png b/ui/app/img/tokens/1ST.png new file mode 100644 index 0000000000..6f5471ce28 Binary files /dev/null and b/ui/app/img/tokens/1ST.png differ diff --git a/ui/app/img/tokens/1ST@2x.png b/ui/app/img/tokens/1ST@2x.png new file mode 100644 index 0000000000..adc5be5bcc Binary files /dev/null and b/ui/app/img/tokens/1ST@2x.png differ diff --git a/ui/app/img/tokens/1ST@3x.png b/ui/app/img/tokens/1ST@3x.png new file mode 100644 index 0000000000..160e9f3c70 Binary files /dev/null and b/ui/app/img/tokens/1ST@3x.png differ diff --git a/ui/app/img/tokens/AE.png b/ui/app/img/tokens/AE.png new file mode 100644 index 0000000000..5c3d0bf92e Binary files /dev/null and b/ui/app/img/tokens/AE.png differ diff --git a/ui/app/img/tokens/AE@2x.png b/ui/app/img/tokens/AE@2x.png new file mode 100644 index 0000000000..9f1cee25e3 Binary files /dev/null and b/ui/app/img/tokens/AE@2x.png differ diff --git a/ui/app/img/tokens/AE@3x.png b/ui/app/img/tokens/AE@3x.png new file mode 100644 index 0000000000..12aa714e7d Binary files /dev/null and b/ui/app/img/tokens/AE@3x.png differ diff --git a/ui/app/img/tokens/AMB.png b/ui/app/img/tokens/AMB.png new file mode 100644 index 0000000000..3e919e93ee Binary files /dev/null and b/ui/app/img/tokens/AMB.png differ diff --git a/ui/app/img/tokens/AMB@2x.png b/ui/app/img/tokens/AMB@2x.png new file mode 100644 index 0000000000..2c28ba3881 Binary files /dev/null and b/ui/app/img/tokens/AMB@2x.png differ diff --git a/ui/app/img/tokens/AMB@3x.png b/ui/app/img/tokens/AMB@3x.png new file mode 100644 index 0000000000..cd92cc043f Binary files /dev/null and b/ui/app/img/tokens/AMB@3x.png differ diff --git a/ui/app/img/tokens/ANT.png b/ui/app/img/tokens/ANT.png new file mode 100644 index 0000000000..bd23280bcd Binary files /dev/null and b/ui/app/img/tokens/ANT.png differ diff --git a/ui/app/img/tokens/ANT@2x.png b/ui/app/img/tokens/ANT@2x.png new file mode 100644 index 0000000000..6fa27a6c86 Binary files /dev/null and b/ui/app/img/tokens/ANT@2x.png differ diff --git a/ui/app/img/tokens/ANT@3x.png b/ui/app/img/tokens/ANT@3x.png new file mode 100644 index 0000000000..1a30385d9d Binary files /dev/null and b/ui/app/img/tokens/ANT@3x.png differ diff --git a/ui/app/img/tokens/AST.png b/ui/app/img/tokens/AST.png new file mode 100644 index 0000000000..433e2ef2c1 Binary files /dev/null and b/ui/app/img/tokens/AST.png differ diff --git a/ui/app/img/tokens/AST@2x.png b/ui/app/img/tokens/AST@2x.png new file mode 100644 index 0000000000..bef6bf775c Binary files /dev/null and b/ui/app/img/tokens/AST@2x.png differ diff --git a/ui/app/img/tokens/AST@3x.png b/ui/app/img/tokens/AST@3x.png new file mode 100644 index 0000000000..4485562c3a Binary files /dev/null and b/ui/app/img/tokens/AST@3x.png differ diff --git a/ui/app/img/tokens/ATMChain.png b/ui/app/img/tokens/ATMChain.png new file mode 100644 index 0000000000..d5041aea1c Binary files /dev/null and b/ui/app/img/tokens/ATMChain.png differ diff --git a/ui/app/img/tokens/ATMChain@2x.png b/ui/app/img/tokens/ATMChain@2x.png new file mode 100644 index 0000000000..9a976441d8 Binary files /dev/null and b/ui/app/img/tokens/ATMChain@2x.png differ diff --git a/ui/app/img/tokens/ATMChain@3x.png b/ui/app/img/tokens/ATMChain@3x.png new file mode 100644 index 0000000000..5002833291 Binary files /dev/null and b/ui/app/img/tokens/ATMChain@3x.png differ diff --git a/ui/app/img/tokens/BAT.png b/ui/app/img/tokens/BAT.png new file mode 100644 index 0000000000..fe275e21d8 Binary files /dev/null and b/ui/app/img/tokens/BAT.png differ diff --git a/ui/app/img/tokens/BAT@2x.png b/ui/app/img/tokens/BAT@2x.png new file mode 100644 index 0000000000..2780ac538a Binary files /dev/null and b/ui/app/img/tokens/BAT@2x.png differ diff --git a/ui/app/img/tokens/BAT@3x.png b/ui/app/img/tokens/BAT@3x.png new file mode 100644 index 0000000000..b234722a51 Binary files /dev/null and b/ui/app/img/tokens/BAT@3x.png differ diff --git a/ui/app/img/tokens/BLT.png b/ui/app/img/tokens/BLT.png new file mode 100644 index 0000000000..67933a9e4b Binary files /dev/null and b/ui/app/img/tokens/BLT.png differ diff --git a/ui/app/img/tokens/BLT@2x.png b/ui/app/img/tokens/BLT@2x.png new file mode 100644 index 0000000000..6e07bc227c Binary files /dev/null and b/ui/app/img/tokens/BLT@2x.png differ diff --git a/ui/app/img/tokens/BLT@3x.png b/ui/app/img/tokens/BLT@3x.png new file mode 100644 index 0000000000..d37c487011 Binary files /dev/null and b/ui/app/img/tokens/BLT@3x.png differ diff --git a/ui/app/img/tokens/BNB.png b/ui/app/img/tokens/BNB.png new file mode 100644 index 0000000000..325166ccc5 Binary files /dev/null and b/ui/app/img/tokens/BNB.png differ diff --git a/ui/app/img/tokens/BNB@2x.png b/ui/app/img/tokens/BNB@2x.png new file mode 100644 index 0000000000..429a9bc890 Binary files /dev/null and b/ui/app/img/tokens/BNB@2x.png differ diff --git a/ui/app/img/tokens/BNB@3x.png b/ui/app/img/tokens/BNB@3x.png new file mode 100644 index 0000000000..356a3dbcb5 Binary files /dev/null and b/ui/app/img/tokens/BNB@3x.png differ diff --git a/ui/app/img/tokens/BNT.png b/ui/app/img/tokens/BNT.png new file mode 100644 index 0000000000..f3a99ca7c9 Binary files /dev/null and b/ui/app/img/tokens/BNT.png differ diff --git a/ui/app/img/tokens/BNT@2x.png b/ui/app/img/tokens/BNT@2x.png new file mode 100644 index 0000000000..107d35fc65 Binary files /dev/null and b/ui/app/img/tokens/BNT@2x.png differ diff --git a/ui/app/img/tokens/BNT@3x.png b/ui/app/img/tokens/BNT@3x.png new file mode 100644 index 0000000000..9357b679fc Binary files /dev/null and b/ui/app/img/tokens/BNT@3x.png differ diff --git a/ui/app/img/tokens/BRLN.png b/ui/app/img/tokens/BRLN.png new file mode 100644 index 0000000000..654440d66e Binary files /dev/null and b/ui/app/img/tokens/BRLN.png differ diff --git a/ui/app/img/tokens/BRLN@2x.png b/ui/app/img/tokens/BRLN@2x.png new file mode 100644 index 0000000000..966a1a028c Binary files /dev/null and b/ui/app/img/tokens/BRLN@2x.png differ diff --git a/ui/app/img/tokens/BRLN@3x.png b/ui/app/img/tokens/BRLN@3x.png new file mode 100644 index 0000000000..3f1da72de5 Binary files /dev/null and b/ui/app/img/tokens/BRLN@3x.png differ diff --git a/ui/app/img/tokens/BTM.png b/ui/app/img/tokens/BTM.png new file mode 100644 index 0000000000..07ce333fb4 Binary files /dev/null and b/ui/app/img/tokens/BTM.png differ diff --git a/ui/app/img/tokens/BTM@2x.png b/ui/app/img/tokens/BTM@2x.png new file mode 100644 index 0000000000..97df8bce36 Binary files /dev/null and b/ui/app/img/tokens/BTM@2x.png differ diff --git a/ui/app/img/tokens/BTM@3x.png b/ui/app/img/tokens/BTM@3x.png new file mode 100644 index 0000000000..c64902d97a Binary files /dev/null and b/ui/app/img/tokens/BTM@3x.png differ diff --git a/ui/app/img/tokens/BTU.png b/ui/app/img/tokens/BTU.png new file mode 100644 index 0000000000..8ed114417b Binary files /dev/null and b/ui/app/img/tokens/BTU.png differ diff --git a/ui/app/img/tokens/BTU@2x.png b/ui/app/img/tokens/BTU@2x.png new file mode 100644 index 0000000000..4cbcee7b8d Binary files /dev/null and b/ui/app/img/tokens/BTU@2x.png differ diff --git a/ui/app/img/tokens/BTU@3x.png b/ui/app/img/tokens/BTU@3x.png new file mode 100644 index 0000000000..69c2487457 Binary files /dev/null and b/ui/app/img/tokens/BTU@3x.png differ diff --git a/ui/app/img/tokens/CDT.png b/ui/app/img/tokens/CDT.png new file mode 100644 index 0000000000..39b393c203 Binary files /dev/null and b/ui/app/img/tokens/CDT.png differ diff --git a/ui/app/img/tokens/CDT@2x.png b/ui/app/img/tokens/CDT@2x.png new file mode 100644 index 0000000000..b3d9f4e8bc Binary files /dev/null and b/ui/app/img/tokens/CDT@2x.png differ diff --git a/ui/app/img/tokens/CDT@3x.png b/ui/app/img/tokens/CDT@3x.png new file mode 100644 index 0000000000..cb346974c2 Binary files /dev/null and b/ui/app/img/tokens/CDT@3x.png differ diff --git a/ui/app/img/tokens/CFI.png b/ui/app/img/tokens/CFI.png new file mode 100644 index 0000000000..8536b18845 Binary files /dev/null and b/ui/app/img/tokens/CFI.png differ diff --git a/ui/app/img/tokens/CFI@2x.png b/ui/app/img/tokens/CFI@2x.png new file mode 100644 index 0000000000..65c1de7912 Binary files /dev/null and b/ui/app/img/tokens/CFI@2x.png differ diff --git a/ui/app/img/tokens/CFI@3x.png b/ui/app/img/tokens/CFI@3x.png new file mode 100644 index 0000000000..113ab0b447 Binary files /dev/null and b/ui/app/img/tokens/CFI@3x.png differ diff --git a/ui/app/img/tokens/CK.png b/ui/app/img/tokens/CK.png new file mode 100644 index 0000000000..73aef9eb2d Binary files /dev/null and b/ui/app/img/tokens/CK.png differ diff --git a/ui/app/img/tokens/CK@2x.png b/ui/app/img/tokens/CK@2x.png new file mode 100644 index 0000000000..e74fffb4d5 Binary files /dev/null and b/ui/app/img/tokens/CK@2x.png differ diff --git a/ui/app/img/tokens/CK@3x.png b/ui/app/img/tokens/CK@3x.png new file mode 100644 index 0000000000..7508bf71f8 Binary files /dev/null and b/ui/app/img/tokens/CK@3x.png differ diff --git a/ui/app/img/tokens/CND.png b/ui/app/img/tokens/CND.png new file mode 100644 index 0000000000..d33088e0f3 Binary files /dev/null and b/ui/app/img/tokens/CND.png differ diff --git a/ui/app/img/tokens/CND@2x.png b/ui/app/img/tokens/CND@2x.png new file mode 100644 index 0000000000..ee25acaab1 Binary files /dev/null and b/ui/app/img/tokens/CND@2x.png differ diff --git a/ui/app/img/tokens/CND@3x.png b/ui/app/img/tokens/CND@3x.png new file mode 100644 index 0000000000..2624cdb4e8 Binary files /dev/null and b/ui/app/img/tokens/CND@3x.png differ diff --git a/ui/app/img/tokens/COB.png b/ui/app/img/tokens/COB.png new file mode 100644 index 0000000000..c2da194d4e Binary files /dev/null and b/ui/app/img/tokens/COB.png differ diff --git a/ui/app/img/tokens/COB@2x.png b/ui/app/img/tokens/COB@2x.png new file mode 100644 index 0000000000..93e7d47ba1 Binary files /dev/null and b/ui/app/img/tokens/COB@2x.png differ diff --git a/ui/app/img/tokens/COB@3x.png b/ui/app/img/tokens/COB@3x.png new file mode 100644 index 0000000000..8aadcccf7a Binary files /dev/null and b/ui/app/img/tokens/COB@3x.png differ diff --git a/ui/app/img/tokens/CVC.png b/ui/app/img/tokens/CVC.png new file mode 100644 index 0000000000..d992cb0ef3 Binary files /dev/null and b/ui/app/img/tokens/CVC.png differ diff --git a/ui/app/img/tokens/CVC@2x.png b/ui/app/img/tokens/CVC@2x.png new file mode 100644 index 0000000000..aa2c328843 Binary files /dev/null and b/ui/app/img/tokens/CVC@2x.png differ diff --git a/ui/app/img/tokens/CVC@3x.png b/ui/app/img/tokens/CVC@3x.png new file mode 100644 index 0000000000..8dd8a57801 Binary files /dev/null and b/ui/app/img/tokens/CVC@3x.png differ diff --git a/ui/app/img/tokens/Centra.png b/ui/app/img/tokens/Centra.png new file mode 100644 index 0000000000..34d21ee364 Binary files /dev/null and b/ui/app/img/tokens/Centra.png differ diff --git a/ui/app/img/tokens/Centra@2x.png b/ui/app/img/tokens/Centra@2x.png new file mode 100644 index 0000000000..3b3146c947 Binary files /dev/null and b/ui/app/img/tokens/Centra@2x.png differ diff --git a/ui/app/img/tokens/Centra@3x.png b/ui/app/img/tokens/Centra@3x.png new file mode 100644 index 0000000000..c7c9379375 Binary files /dev/null and b/ui/app/img/tokens/Centra@3x.png differ diff --git a/ui/app/img/tokens/DAI.png b/ui/app/img/tokens/DAI.png new file mode 100644 index 0000000000..4aa908bf51 Binary files /dev/null and b/ui/app/img/tokens/DAI.png differ diff --git a/ui/app/img/tokens/DAI@2x.png b/ui/app/img/tokens/DAI@2x.png new file mode 100644 index 0000000000..f090425b01 Binary files /dev/null and b/ui/app/img/tokens/DAI@2x.png differ diff --git a/ui/app/img/tokens/DAI@3x.png b/ui/app/img/tokens/DAI@3x.png new file mode 100644 index 0000000000..a6c31f2d81 Binary files /dev/null and b/ui/app/img/tokens/DAI@3x.png differ diff --git a/ui/app/img/tokens/DATA.png b/ui/app/img/tokens/DATA.png new file mode 100644 index 0000000000..87df33feeb Binary files /dev/null and b/ui/app/img/tokens/DATA.png differ diff --git a/ui/app/img/tokens/DATA@2x.png b/ui/app/img/tokens/DATA@2x.png new file mode 100644 index 0000000000..c19dd42952 Binary files /dev/null and b/ui/app/img/tokens/DATA@2x.png differ diff --git a/ui/app/img/tokens/DATA@3x.png b/ui/app/img/tokens/DATA@3x.png new file mode 100644 index 0000000000..2aaf4099e7 Binary files /dev/null and b/ui/app/img/tokens/DATA@3x.png differ diff --git a/ui/app/img/tokens/DCN.png b/ui/app/img/tokens/DCN.png new file mode 100644 index 0000000000..eeb8879b2e Binary files /dev/null and b/ui/app/img/tokens/DCN.png differ diff --git a/ui/app/img/tokens/DCN@2x.png b/ui/app/img/tokens/DCN@2x.png new file mode 100644 index 0000000000..4379aef92c Binary files /dev/null and b/ui/app/img/tokens/DCN@2x.png differ diff --git a/ui/app/img/tokens/DCN@3x.png b/ui/app/img/tokens/DCN@3x.png new file mode 100644 index 0000000000..d03c9313a7 Binary files /dev/null and b/ui/app/img/tokens/DCN@3x.png differ diff --git a/ui/app/img/tokens/DGD.png b/ui/app/img/tokens/DGD.png new file mode 100644 index 0000000000..04aca12321 Binary files /dev/null and b/ui/app/img/tokens/DGD.png differ diff --git a/ui/app/img/tokens/DGD@2x.png b/ui/app/img/tokens/DGD@2x.png new file mode 100644 index 0000000000..2b347143c7 Binary files /dev/null and b/ui/app/img/tokens/DGD@2x.png differ diff --git a/ui/app/img/tokens/DGD@3x.png b/ui/app/img/tokens/DGD@3x.png new file mode 100644 index 0000000000..bbc19815fd Binary files /dev/null and b/ui/app/img/tokens/DGD@3x.png differ diff --git a/ui/app/img/tokens/DLT.png b/ui/app/img/tokens/DLT.png new file mode 100644 index 0000000000..fcb92d64b7 Binary files /dev/null and b/ui/app/img/tokens/DLT.png differ diff --git a/ui/app/img/tokens/DLT@2x.png b/ui/app/img/tokens/DLT@2x.png new file mode 100644 index 0000000000..abf05a60f4 Binary files /dev/null and b/ui/app/img/tokens/DLT@2x.png differ diff --git a/ui/app/img/tokens/DLT@3x.png b/ui/app/img/tokens/DLT@3x.png new file mode 100644 index 0000000000..56f99e1f7c Binary files /dev/null and b/ui/app/img/tokens/DLT@3x.png differ diff --git a/ui/app/img/tokens/DNT.png b/ui/app/img/tokens/DNT.png new file mode 100644 index 0000000000..ea102dd808 Binary files /dev/null and b/ui/app/img/tokens/DNT.png differ diff --git a/ui/app/img/tokens/DNT@2x.png b/ui/app/img/tokens/DNT@2x.png new file mode 100644 index 0000000000..3ad914b3c3 Binary files /dev/null and b/ui/app/img/tokens/DNT@2x.png differ diff --git a/ui/app/img/tokens/DNT@3x.png b/ui/app/img/tokens/DNT@3x.png new file mode 100644 index 0000000000..9c37ddc729 Binary files /dev/null and b/ui/app/img/tokens/DNT@3x.png differ diff --git a/ui/app/img/tokens/DPY.png b/ui/app/img/tokens/DPY.png new file mode 100644 index 0000000000..a977cf0c76 Binary files /dev/null and b/ui/app/img/tokens/DPY.png differ diff --git a/ui/app/img/tokens/DPY@2x.png b/ui/app/img/tokens/DPY@2x.png new file mode 100644 index 0000000000..4f9544e317 Binary files /dev/null and b/ui/app/img/tokens/DPY@2x.png differ diff --git a/ui/app/img/tokens/DPY@3x.png b/ui/app/img/tokens/DPY@3x.png new file mode 100644 index 0000000000..23c9aee6f7 Binary files /dev/null and b/ui/app/img/tokens/DPY@3x.png differ diff --git a/ui/app/img/tokens/DRT.png b/ui/app/img/tokens/DRT.png new file mode 100644 index 0000000000..a4e8e29b04 Binary files /dev/null and b/ui/app/img/tokens/DRT.png differ diff --git a/ui/app/img/tokens/DRT@2x.png b/ui/app/img/tokens/DRT@2x.png new file mode 100644 index 0000000000..02340a3848 Binary files /dev/null and b/ui/app/img/tokens/DRT@2x.png differ diff --git a/ui/app/img/tokens/DRT@3x.png b/ui/app/img/tokens/DRT@3x.png new file mode 100644 index 0000000000..1ef8284633 Binary files /dev/null and b/ui/app/img/tokens/DRT@3x.png differ diff --git a/ui/app/img/tokens/EDG.png b/ui/app/img/tokens/EDG.png new file mode 100644 index 0000000000..881d716cb5 Binary files /dev/null and b/ui/app/img/tokens/EDG.png differ diff --git a/ui/app/img/tokens/EDG@2x.png b/ui/app/img/tokens/EDG@2x.png new file mode 100644 index 0000000000..5ffd704fda Binary files /dev/null and b/ui/app/img/tokens/EDG@2x.png differ diff --git a/ui/app/img/tokens/EDG@3x.png b/ui/app/img/tokens/EDG@3x.png new file mode 100644 index 0000000000..33cbf9d7ae Binary files /dev/null and b/ui/app/img/tokens/EDG@3x.png differ diff --git a/ui/app/img/tokens/EDO.png b/ui/app/img/tokens/EDO.png new file mode 100644 index 0000000000..0cb77f8933 Binary files /dev/null and b/ui/app/img/tokens/EDO.png differ diff --git a/ui/app/img/tokens/EDO@2x.png b/ui/app/img/tokens/EDO@2x.png new file mode 100644 index 0000000000..4d52235a32 Binary files /dev/null and b/ui/app/img/tokens/EDO@2x.png differ diff --git a/ui/app/img/tokens/EDO@3x.png b/ui/app/img/tokens/EDO@3x.png new file mode 100644 index 0000000000..33b306e8be Binary files /dev/null and b/ui/app/img/tokens/EDO@3x.png differ diff --git a/ui/app/img/tokens/EMONA.png b/ui/app/img/tokens/EMONA.png new file mode 100644 index 0000000000..2b2c51d695 Binary files /dev/null and b/ui/app/img/tokens/EMONA.png differ diff --git a/ui/app/img/tokens/EMONA@2x.png b/ui/app/img/tokens/EMONA@2x.png new file mode 100644 index 0000000000..290d6b16fe Binary files /dev/null and b/ui/app/img/tokens/EMONA@2x.png differ diff --git a/ui/app/img/tokens/EMONA@3x.png b/ui/app/img/tokens/EMONA@3x.png new file mode 100644 index 0000000000..5d57889716 Binary files /dev/null and b/ui/app/img/tokens/EMONA@3x.png differ diff --git a/ui/app/img/tokens/ENG.png b/ui/app/img/tokens/ENG.png new file mode 100644 index 0000000000..f4a71c5ed1 Binary files /dev/null and b/ui/app/img/tokens/ENG.png differ diff --git a/ui/app/img/tokens/ENG@2x.png b/ui/app/img/tokens/ENG@2x.png new file mode 100644 index 0000000000..5fb8d4e3d3 Binary files /dev/null and b/ui/app/img/tokens/ENG@2x.png differ diff --git a/ui/app/img/tokens/ENG@3x.png b/ui/app/img/tokens/ENG@3x.png new file mode 100644 index 0000000000..3e5d679b9b Binary files /dev/null and b/ui/app/img/tokens/ENG@3x.png differ diff --git a/ui/app/img/tokens/EOS.png b/ui/app/img/tokens/EOS.png new file mode 100644 index 0000000000..80ce8bc263 Binary files /dev/null and b/ui/app/img/tokens/EOS.png differ diff --git a/ui/app/img/tokens/EOS@2x.png b/ui/app/img/tokens/EOS@2x.png new file mode 100644 index 0000000000..10a5e64dcb Binary files /dev/null and b/ui/app/img/tokens/EOS@2x.png differ diff --git a/ui/app/img/tokens/EOS@3x.png b/ui/app/img/tokens/EOS@3x.png new file mode 100644 index 0000000000..b431ecaa4d Binary files /dev/null and b/ui/app/img/tokens/EOS@3x.png differ diff --git a/ui/app/img/tokens/ETHOS.png b/ui/app/img/tokens/ETHOS.png new file mode 100644 index 0000000000..c55d79ac0c Binary files /dev/null and b/ui/app/img/tokens/ETHOS.png differ diff --git a/ui/app/img/tokens/ETHOS@2x.png b/ui/app/img/tokens/ETHOS@2x.png new file mode 100644 index 0000000000..a00efd586c Binary files /dev/null and b/ui/app/img/tokens/ETHOS@2x.png differ diff --git a/ui/app/img/tokens/ETHOS@3x.png b/ui/app/img/tokens/ETHOS@3x.png new file mode 100644 index 0000000000..d675ca8b63 Binary files /dev/null and b/ui/app/img/tokens/ETHOS@3x.png differ diff --git a/ui/app/img/tokens/EVX.png b/ui/app/img/tokens/EVX.png new file mode 100644 index 0000000000..55b7ba8ef4 Binary files /dev/null and b/ui/app/img/tokens/EVX.png differ diff --git a/ui/app/img/tokens/EVX@2x.png b/ui/app/img/tokens/EVX@2x.png new file mode 100644 index 0000000000..f43e590f65 Binary files /dev/null and b/ui/app/img/tokens/EVX@2x.png differ diff --git a/ui/app/img/tokens/EVX@3x.png b/ui/app/img/tokens/EVX@3x.png new file mode 100644 index 0000000000..7e403ccec3 Binary files /dev/null and b/ui/app/img/tokens/EVX@3x.png differ diff --git a/ui/app/img/tokens/FUEL.png b/ui/app/img/tokens/FUEL.png new file mode 100644 index 0000000000..0697320081 Binary files /dev/null and b/ui/app/img/tokens/FUEL.png differ diff --git a/ui/app/img/tokens/FUEL@2x.png b/ui/app/img/tokens/FUEL@2x.png new file mode 100644 index 0000000000..bbfb0ece59 Binary files /dev/null and b/ui/app/img/tokens/FUEL@2x.png differ diff --git a/ui/app/img/tokens/FUEL@3x.png b/ui/app/img/tokens/FUEL@3x.png new file mode 100644 index 0000000000..9c1de4fa32 Binary files /dev/null and b/ui/app/img/tokens/FUEL@3x.png differ diff --git a/ui/app/img/tokens/FUN.png b/ui/app/img/tokens/FUN.png new file mode 100644 index 0000000000..e225aa35a1 Binary files /dev/null and b/ui/app/img/tokens/FUN.png differ diff --git a/ui/app/img/tokens/FUN@2x.png b/ui/app/img/tokens/FUN@2x.png new file mode 100644 index 0000000000..09aa6e1605 Binary files /dev/null and b/ui/app/img/tokens/FUN@2x.png differ diff --git a/ui/app/img/tokens/FUN@3x.png b/ui/app/img/tokens/FUN@3x.png new file mode 100644 index 0000000000..943b00642c Binary files /dev/null and b/ui/app/img/tokens/FUN@3x.png differ diff --git a/ui/app/img/tokens/GNO.png b/ui/app/img/tokens/GNO.png new file mode 100644 index 0000000000..1e9325cbcb Binary files /dev/null and b/ui/app/img/tokens/GNO.png differ diff --git a/ui/app/img/tokens/GNO@2x.png b/ui/app/img/tokens/GNO@2x.png new file mode 100644 index 0000000000..4ec9be18af Binary files /dev/null and b/ui/app/img/tokens/GNO@2x.png differ diff --git a/ui/app/img/tokens/GNO@3x.png b/ui/app/img/tokens/GNO@3x.png new file mode 100644 index 0000000000..10a1515f8b Binary files /dev/null and b/ui/app/img/tokens/GNO@3x.png differ diff --git a/ui/app/img/tokens/GNT.png b/ui/app/img/tokens/GNT.png new file mode 100644 index 0000000000..4b8393a6ef Binary files /dev/null and b/ui/app/img/tokens/GNT.png differ diff --git a/ui/app/img/tokens/GNT@2x.png b/ui/app/img/tokens/GNT@2x.png new file mode 100644 index 0000000000..faba1a1ac8 Binary files /dev/null and b/ui/app/img/tokens/GNT@2x.png differ diff --git a/ui/app/img/tokens/GNT@3x.png b/ui/app/img/tokens/GNT@3x.png new file mode 100644 index 0000000000..0d4db88fbf Binary files /dev/null and b/ui/app/img/tokens/GNT@3x.png differ diff --git a/ui/app/img/tokens/GRID.png b/ui/app/img/tokens/GRID.png new file mode 100644 index 0000000000..0800d72e85 Binary files /dev/null and b/ui/app/img/tokens/GRID.png differ diff --git a/ui/app/img/tokens/GRID@2x.png b/ui/app/img/tokens/GRID@2x.png new file mode 100644 index 0000000000..6ddda0b9d9 Binary files /dev/null and b/ui/app/img/tokens/GRID@2x.png differ diff --git a/ui/app/img/tokens/GRID@3x.png b/ui/app/img/tokens/GRID@3x.png new file mode 100644 index 0000000000..93ed82bfbe Binary files /dev/null and b/ui/app/img/tokens/GRID@3x.png differ diff --git a/ui/app/img/tokens/HST.png b/ui/app/img/tokens/HST.png new file mode 100644 index 0000000000..432de8bc10 Binary files /dev/null and b/ui/app/img/tokens/HST.png differ diff --git a/ui/app/img/tokens/HST@2x.png b/ui/app/img/tokens/HST@2x.png new file mode 100644 index 0000000000..5ea8055e7e Binary files /dev/null and b/ui/app/img/tokens/HST@2x.png differ diff --git a/ui/app/img/tokens/HST@3x.png b/ui/app/img/tokens/HST@3x.png new file mode 100644 index 0000000000..cf397544e5 Binary files /dev/null and b/ui/app/img/tokens/HST@3x.png differ diff --git a/ui/app/img/tokens/ICN.png b/ui/app/img/tokens/ICN.png new file mode 100644 index 0000000000..d50534a6a3 Binary files /dev/null and b/ui/app/img/tokens/ICN.png differ diff --git a/ui/app/img/tokens/ICN@2x.png b/ui/app/img/tokens/ICN@2x.png new file mode 100644 index 0000000000..2f5320c581 Binary files /dev/null and b/ui/app/img/tokens/ICN@2x.png differ diff --git a/ui/app/img/tokens/ICN@3x.png b/ui/app/img/tokens/ICN@3x.png new file mode 100644 index 0000000000..75db819028 Binary files /dev/null and b/ui/app/img/tokens/ICN@3x.png differ diff --git a/ui/app/img/tokens/ICOS.png b/ui/app/img/tokens/ICOS.png new file mode 100644 index 0000000000..b822a5bbd8 Binary files /dev/null and b/ui/app/img/tokens/ICOS.png differ diff --git a/ui/app/img/tokens/ICOS@2x.png b/ui/app/img/tokens/ICOS@2x.png new file mode 100644 index 0000000000..16bba6b6f6 Binary files /dev/null and b/ui/app/img/tokens/ICOS@2x.png differ diff --git a/ui/app/img/tokens/ICOS@3x.png b/ui/app/img/tokens/ICOS@3x.png new file mode 100644 index 0000000000..672fb9c8d5 Binary files /dev/null and b/ui/app/img/tokens/ICOS@3x.png differ diff --git a/ui/app/img/tokens/KDO.png b/ui/app/img/tokens/KDO.png new file mode 100644 index 0000000000..482fdb2501 Binary files /dev/null and b/ui/app/img/tokens/KDO.png differ diff --git a/ui/app/img/tokens/KDO@2x.png b/ui/app/img/tokens/KDO@2x.png new file mode 100644 index 0000000000..b8d9c5a747 Binary files /dev/null and b/ui/app/img/tokens/KDO@2x.png differ diff --git a/ui/app/img/tokens/KDO@3x.png b/ui/app/img/tokens/KDO@3x.png new file mode 100644 index 0000000000..bde4fa25a4 Binary files /dev/null and b/ui/app/img/tokens/KDO@3x.png differ diff --git a/ui/app/img/tokens/KIN.png b/ui/app/img/tokens/KIN.png new file mode 100644 index 0000000000..4d256c371a Binary files /dev/null and b/ui/app/img/tokens/KIN.png differ diff --git a/ui/app/img/tokens/KIN@2x.png b/ui/app/img/tokens/KIN@2x.png new file mode 100644 index 0000000000..5515bbf812 Binary files /dev/null and b/ui/app/img/tokens/KIN@2x.png differ diff --git a/ui/app/img/tokens/KIN@3x.png b/ui/app/img/tokens/KIN@3x.png new file mode 100644 index 0000000000..707c64f26d Binary files /dev/null and b/ui/app/img/tokens/KIN@3x.png differ diff --git a/ui/app/img/tokens/KNC.png b/ui/app/img/tokens/KNC.png new file mode 100644 index 0000000000..43f121aa91 Binary files /dev/null and b/ui/app/img/tokens/KNC.png differ diff --git a/ui/app/img/tokens/KNC@2x.png b/ui/app/img/tokens/KNC@2x.png new file mode 100644 index 0000000000..da302a4af4 Binary files /dev/null and b/ui/app/img/tokens/KNC@2x.png differ diff --git a/ui/app/img/tokens/KNC@3x.png b/ui/app/img/tokens/KNC@3x.png new file mode 100644 index 0000000000..e5bec34ec7 Binary files /dev/null and b/ui/app/img/tokens/KNC@3x.png differ diff --git a/ui/app/img/tokens/LINK.png b/ui/app/img/tokens/LINK.png new file mode 100644 index 0000000000..ae24d8799f Binary files /dev/null and b/ui/app/img/tokens/LINK.png differ diff --git a/ui/app/img/tokens/LINK@2x.png b/ui/app/img/tokens/LINK@2x.png new file mode 100644 index 0000000000..a7c3a6816e Binary files /dev/null and b/ui/app/img/tokens/LINK@2x.png differ diff --git a/ui/app/img/tokens/LINK@3x.png b/ui/app/img/tokens/LINK@3x.png new file mode 100644 index 0000000000..bc465cbee8 Binary files /dev/null and b/ui/app/img/tokens/LINK@3x.png differ diff --git a/ui/app/img/tokens/LISK.png b/ui/app/img/tokens/LISK.png new file mode 100644 index 0000000000..ae120a2644 Binary files /dev/null and b/ui/app/img/tokens/LISK.png differ diff --git a/ui/app/img/tokens/LISK@2x.png b/ui/app/img/tokens/LISK@2x.png new file mode 100644 index 0000000000..d71838c10e Binary files /dev/null and b/ui/app/img/tokens/LISK@2x.png differ diff --git a/ui/app/img/tokens/LISK@3x.png b/ui/app/img/tokens/LISK@3x.png new file mode 100644 index 0000000000..e8c9e70824 Binary files /dev/null and b/ui/app/img/tokens/LISK@3x.png differ diff --git a/ui/app/img/tokens/LPT.png b/ui/app/img/tokens/LPT.png new file mode 100644 index 0000000000..049df447e3 Binary files /dev/null and b/ui/app/img/tokens/LPT.png differ diff --git a/ui/app/img/tokens/LPT@2x.png b/ui/app/img/tokens/LPT@2x.png new file mode 100644 index 0000000000..6746fdaf8c Binary files /dev/null and b/ui/app/img/tokens/LPT@2x.png differ diff --git a/ui/app/img/tokens/LPT@3x.png b/ui/app/img/tokens/LPT@3x.png new file mode 100644 index 0000000000..d7601bfbb0 Binary files /dev/null and b/ui/app/img/tokens/LPT@3x.png differ diff --git a/ui/app/img/tokens/LRC.png b/ui/app/img/tokens/LRC.png new file mode 100644 index 0000000000..ba952f00a6 Binary files /dev/null and b/ui/app/img/tokens/LRC.png differ diff --git a/ui/app/img/tokens/LRC@2x.png b/ui/app/img/tokens/LRC@2x.png new file mode 100644 index 0000000000..d3ff2114a4 Binary files /dev/null and b/ui/app/img/tokens/LRC@2x.png differ diff --git a/ui/app/img/tokens/LRC@3x.png b/ui/app/img/tokens/LRC@3x.png new file mode 100644 index 0000000000..d0129539b3 Binary files /dev/null and b/ui/app/img/tokens/LRC@3x.png differ diff --git a/ui/app/img/tokens/MANA.png b/ui/app/img/tokens/MANA.png new file mode 100644 index 0000000000..238dc4ae23 Binary files /dev/null and b/ui/app/img/tokens/MANA.png differ diff --git a/ui/app/img/tokens/MANA@2x.png b/ui/app/img/tokens/MANA@2x.png new file mode 100644 index 0000000000..74bcb7be95 Binary files /dev/null and b/ui/app/img/tokens/MANA@2x.png differ diff --git a/ui/app/img/tokens/MANA@3x.png b/ui/app/img/tokens/MANA@3x.png new file mode 100644 index 0000000000..2ab70138d8 Binary files /dev/null and b/ui/app/img/tokens/MANA@3x.png differ diff --git a/ui/app/img/tokens/MCO.png b/ui/app/img/tokens/MCO.png new file mode 100644 index 0000000000..ffb6fb8c2a Binary files /dev/null and b/ui/app/img/tokens/MCO.png differ diff --git a/ui/app/img/tokens/MCO@2x.png b/ui/app/img/tokens/MCO@2x.png new file mode 100644 index 0000000000..d79344672a Binary files /dev/null and b/ui/app/img/tokens/MCO@2x.png differ diff --git a/ui/app/img/tokens/MCO@3x.png b/ui/app/img/tokens/MCO@3x.png new file mode 100644 index 0000000000..0c8ac5857a Binary files /dev/null and b/ui/app/img/tokens/MCO@3x.png differ diff --git a/ui/app/img/tokens/MDA.png b/ui/app/img/tokens/MDA.png new file mode 100644 index 0000000000..96f7951ea2 Binary files /dev/null and b/ui/app/img/tokens/MDA.png differ diff --git a/ui/app/img/tokens/MDA@2x.png b/ui/app/img/tokens/MDA@2x.png new file mode 100644 index 0000000000..61554a4a03 Binary files /dev/null and b/ui/app/img/tokens/MDA@2x.png differ diff --git a/ui/app/img/tokens/MDA@3x.png b/ui/app/img/tokens/MDA@3x.png new file mode 100644 index 0000000000..d5d9e883dc Binary files /dev/null and b/ui/app/img/tokens/MDA@3x.png differ diff --git a/ui/app/img/tokens/MGO.png b/ui/app/img/tokens/MGO.png new file mode 100644 index 0000000000..4b8495d236 Binary files /dev/null and b/ui/app/img/tokens/MGO.png differ diff --git a/ui/app/img/tokens/MGO@2x.png b/ui/app/img/tokens/MGO@2x.png new file mode 100644 index 0000000000..0e7b14ae5f Binary files /dev/null and b/ui/app/img/tokens/MGO@2x.png differ diff --git a/ui/app/img/tokens/MGO@3x.png b/ui/app/img/tokens/MGO@3x.png new file mode 100644 index 0000000000..92270bcd06 Binary files /dev/null and b/ui/app/img/tokens/MGO@3x.png differ diff --git a/ui/app/img/tokens/MKR.png b/ui/app/img/tokens/MKR.png new file mode 100644 index 0000000000..5c948c9cac Binary files /dev/null and b/ui/app/img/tokens/MKR.png differ diff --git a/ui/app/img/tokens/MKR@2x.png b/ui/app/img/tokens/MKR@2x.png new file mode 100644 index 0000000000..ee54467b68 Binary files /dev/null and b/ui/app/img/tokens/MKR@2x.png differ diff --git a/ui/app/img/tokens/MKR@3x.png b/ui/app/img/tokens/MKR@3x.png new file mode 100644 index 0000000000..1a8d6395a0 Binary files /dev/null and b/ui/app/img/tokens/MKR@3x.png differ diff --git a/ui/app/img/tokens/MLN.png b/ui/app/img/tokens/MLN.png new file mode 100644 index 0000000000..252988b634 Binary files /dev/null and b/ui/app/img/tokens/MLN.png differ diff --git a/ui/app/img/tokens/MLN@2x.png b/ui/app/img/tokens/MLN@2x.png new file mode 100644 index 0000000000..2b09909fa4 Binary files /dev/null and b/ui/app/img/tokens/MLN@2x.png differ diff --git a/ui/app/img/tokens/MLN@3x.png b/ui/app/img/tokens/MLN@3x.png new file mode 100644 index 0000000000..0d026d4d6e Binary files /dev/null and b/ui/app/img/tokens/MLN@3x.png differ diff --git a/ui/app/img/tokens/MOD.png b/ui/app/img/tokens/MOD.png new file mode 100644 index 0000000000..90de67b96b Binary files /dev/null and b/ui/app/img/tokens/MOD.png differ diff --git a/ui/app/img/tokens/MOD@2x.png b/ui/app/img/tokens/MOD@2x.png new file mode 100644 index 0000000000..226b912bab Binary files /dev/null and b/ui/app/img/tokens/MOD@2x.png differ diff --git a/ui/app/img/tokens/MOD@3x.png b/ui/app/img/tokens/MOD@3x.png new file mode 100644 index 0000000000..aca9baa6d9 Binary files /dev/null and b/ui/app/img/tokens/MOD@3x.png differ diff --git a/ui/app/img/tokens/MTH.png b/ui/app/img/tokens/MTH.png new file mode 100644 index 0000000000..03bd5752be Binary files /dev/null and b/ui/app/img/tokens/MTH.png differ diff --git a/ui/app/img/tokens/MTH@2x.png b/ui/app/img/tokens/MTH@2x.png new file mode 100644 index 0000000000..f6be85ca6c Binary files /dev/null and b/ui/app/img/tokens/MTH@2x.png differ diff --git a/ui/app/img/tokens/MTH@3x.png b/ui/app/img/tokens/MTH@3x.png new file mode 100644 index 0000000000..dde9b3fcc4 Binary files /dev/null and b/ui/app/img/tokens/MTH@3x.png differ diff --git a/ui/app/img/tokens/NMR.png b/ui/app/img/tokens/NMR.png new file mode 100644 index 0000000000..ffdcafd30f Binary files /dev/null and b/ui/app/img/tokens/NMR.png differ diff --git a/ui/app/img/tokens/NMR@2x.png b/ui/app/img/tokens/NMR@2x.png new file mode 100644 index 0000000000..dc568ea653 Binary files /dev/null and b/ui/app/img/tokens/NMR@2x.png differ diff --git a/ui/app/img/tokens/NMR@3x.png b/ui/app/img/tokens/NMR@3x.png new file mode 100644 index 0000000000..3c31ed7d21 Binary files /dev/null and b/ui/app/img/tokens/NMR@3x.png differ diff --git a/ui/app/img/tokens/OMG.png b/ui/app/img/tokens/OMG.png new file mode 100644 index 0000000000..0e823699c3 Binary files /dev/null and b/ui/app/img/tokens/OMG.png differ diff --git a/ui/app/img/tokens/OMG@2x.png b/ui/app/img/tokens/OMG@2x.png new file mode 100644 index 0000000000..11ae3894ac Binary files /dev/null and b/ui/app/img/tokens/OMG@2x.png differ diff --git a/ui/app/img/tokens/OMG@3x.png b/ui/app/img/tokens/OMG@3x.png new file mode 100644 index 0000000000..bd8b8ebec3 Binary files /dev/null and b/ui/app/img/tokens/OMG@3x.png differ diff --git a/ui/app/img/tokens/OTN.png b/ui/app/img/tokens/OTN.png new file mode 100644 index 0000000000..6c9e747a96 Binary files /dev/null and b/ui/app/img/tokens/OTN.png differ diff --git a/ui/app/img/tokens/OTN@2x.png b/ui/app/img/tokens/OTN@2x.png new file mode 100644 index 0000000000..64d139751a Binary files /dev/null and b/ui/app/img/tokens/OTN@2x.png differ diff --git a/ui/app/img/tokens/OTN@3x.png b/ui/app/img/tokens/OTN@3x.png new file mode 100644 index 0000000000..127bfef57a Binary files /dev/null and b/ui/app/img/tokens/OTN@3x.png differ diff --git a/ui/app/img/tokens/PAY.png b/ui/app/img/tokens/PAY.png new file mode 100644 index 0000000000..cb26a361a3 Binary files /dev/null and b/ui/app/img/tokens/PAY.png differ diff --git a/ui/app/img/tokens/PAY@2x.png b/ui/app/img/tokens/PAY@2x.png new file mode 100644 index 0000000000..b3b44d3fa1 Binary files /dev/null and b/ui/app/img/tokens/PAY@2x.png differ diff --git a/ui/app/img/tokens/PAY@3x.png b/ui/app/img/tokens/PAY@3x.png new file mode 100644 index 0000000000..33016cf733 Binary files /dev/null and b/ui/app/img/tokens/PAY@3x.png differ diff --git a/ui/app/img/tokens/PLR.png b/ui/app/img/tokens/PLR.png new file mode 100644 index 0000000000..7288464dc3 Binary files /dev/null and b/ui/app/img/tokens/PLR.png differ diff --git a/ui/app/img/tokens/PLR@2x.png b/ui/app/img/tokens/PLR@2x.png new file mode 100644 index 0000000000..66bfee6ffe Binary files /dev/null and b/ui/app/img/tokens/PLR@2x.png differ diff --git a/ui/app/img/tokens/PLR@3x.png b/ui/app/img/tokens/PLR@3x.png new file mode 100644 index 0000000000..dacf2094e5 Binary files /dev/null and b/ui/app/img/tokens/PLR@3x.png differ diff --git a/ui/app/img/tokens/POWR.png b/ui/app/img/tokens/POWR.png new file mode 100644 index 0000000000..7634ebe476 Binary files /dev/null and b/ui/app/img/tokens/POWR.png differ diff --git a/ui/app/img/tokens/POWR@2x.png b/ui/app/img/tokens/POWR@2x.png new file mode 100644 index 0000000000..c3ec5c767d Binary files /dev/null and b/ui/app/img/tokens/POWR@2x.png differ diff --git a/ui/app/img/tokens/POWR@3x.png b/ui/app/img/tokens/POWR@3x.png new file mode 100644 index 0000000000..6796d40cb3 Binary files /dev/null and b/ui/app/img/tokens/POWR@3x.png differ diff --git a/ui/app/img/tokens/PPP.png b/ui/app/img/tokens/PPP.png new file mode 100644 index 0000000000..268ae76302 Binary files /dev/null and b/ui/app/img/tokens/PPP.png differ diff --git a/ui/app/img/tokens/PPP@2x.png b/ui/app/img/tokens/PPP@2x.png new file mode 100644 index 0000000000..2995eb4352 Binary files /dev/null and b/ui/app/img/tokens/PPP@2x.png differ diff --git a/ui/app/img/tokens/PPP@3x.png b/ui/app/img/tokens/PPP@3x.png new file mode 100644 index 0000000000..caa1cd96a3 Binary files /dev/null and b/ui/app/img/tokens/PPP@3x.png differ diff --git a/ui/app/img/tokens/PPT.png b/ui/app/img/tokens/PPT.png new file mode 100644 index 0000000000..38a5c05e9e Binary files /dev/null and b/ui/app/img/tokens/PPT.png differ diff --git a/ui/app/img/tokens/PPT@2x.png b/ui/app/img/tokens/PPT@2x.png new file mode 100644 index 0000000000..2abc127367 Binary files /dev/null and b/ui/app/img/tokens/PPT@2x.png differ diff --git a/ui/app/img/tokens/PPT@3x.png b/ui/app/img/tokens/PPT@3x.png new file mode 100644 index 0000000000..aae1fb31c3 Binary files /dev/null and b/ui/app/img/tokens/PPT@3x.png differ diff --git a/ui/app/img/tokens/QRL.png b/ui/app/img/tokens/QRL.png new file mode 100644 index 0000000000..e879d0c929 Binary files /dev/null and b/ui/app/img/tokens/QRL.png differ diff --git a/ui/app/img/tokens/QRL@2x.png b/ui/app/img/tokens/QRL@2x.png new file mode 100644 index 0000000000..5a7251df71 Binary files /dev/null and b/ui/app/img/tokens/QRL@2x.png differ diff --git a/ui/app/img/tokens/QRL@3x.png b/ui/app/img/tokens/QRL@3x.png new file mode 100644 index 0000000000..eb435a7a08 Binary files /dev/null and b/ui/app/img/tokens/QRL@3x.png differ diff --git a/ui/app/img/tokens/QSP.png b/ui/app/img/tokens/QSP.png new file mode 100644 index 0000000000..db2f327546 Binary files /dev/null and b/ui/app/img/tokens/QSP.png differ diff --git a/ui/app/img/tokens/QSP@2x.png b/ui/app/img/tokens/QSP@2x.png new file mode 100644 index 0000000000..2cc7503fb1 Binary files /dev/null and b/ui/app/img/tokens/QSP@2x.png differ diff --git a/ui/app/img/tokens/QSP@3x.png b/ui/app/img/tokens/QSP@3x.png new file mode 100644 index 0000000000..0e0c482a5a Binary files /dev/null and b/ui/app/img/tokens/QSP@3x.png differ diff --git a/ui/app/img/tokens/R.png b/ui/app/img/tokens/R.png new file mode 100644 index 0000000000..f67a2ced39 Binary files /dev/null and b/ui/app/img/tokens/R.png differ diff --git a/ui/app/img/tokens/R@2x.png b/ui/app/img/tokens/R@2x.png new file mode 100644 index 0000000000..9bb0708e04 Binary files /dev/null and b/ui/app/img/tokens/R@2x.png differ diff --git a/ui/app/img/tokens/R@3x.png b/ui/app/img/tokens/R@3x.png new file mode 100644 index 0000000000..8ae06bf6f6 Binary files /dev/null and b/ui/app/img/tokens/R@3x.png differ diff --git a/ui/app/img/tokens/RCN.png b/ui/app/img/tokens/RCN.png new file mode 100644 index 0000000000..e8853c21a9 Binary files /dev/null and b/ui/app/img/tokens/RCN.png differ diff --git a/ui/app/img/tokens/RCN@2x.png b/ui/app/img/tokens/RCN@2x.png new file mode 100644 index 0000000000..76d3502fd9 Binary files /dev/null and b/ui/app/img/tokens/RCN@2x.png differ diff --git a/ui/app/img/tokens/RCN@3x.png b/ui/app/img/tokens/RCN@3x.png new file mode 100644 index 0000000000..569af97d03 Binary files /dev/null and b/ui/app/img/tokens/RCN@3x.png differ diff --git a/ui/app/img/tokens/RDN.png b/ui/app/img/tokens/RDN.png new file mode 100644 index 0000000000..b173079ca4 Binary files /dev/null and b/ui/app/img/tokens/RDN.png differ diff --git a/ui/app/img/tokens/RDN@2x.png b/ui/app/img/tokens/RDN@2x.png new file mode 100644 index 0000000000..2ba078378a Binary files /dev/null and b/ui/app/img/tokens/RDN@2x.png differ diff --git a/ui/app/img/tokens/RDN@3x.png b/ui/app/img/tokens/RDN@3x.png new file mode 100644 index 0000000000..f20885704a Binary files /dev/null and b/ui/app/img/tokens/RDN@3x.png differ diff --git a/ui/app/img/tokens/REP.png b/ui/app/img/tokens/REP.png new file mode 100644 index 0000000000..1cda886173 Binary files /dev/null and b/ui/app/img/tokens/REP.png differ diff --git a/ui/app/img/tokens/REP@2x.png b/ui/app/img/tokens/REP@2x.png new file mode 100644 index 0000000000..9ba7f85ddc Binary files /dev/null and b/ui/app/img/tokens/REP@2x.png differ diff --git a/ui/app/img/tokens/REP@3x.png b/ui/app/img/tokens/REP@3x.png new file mode 100644 index 0000000000..ca3da6e47d Binary files /dev/null and b/ui/app/img/tokens/REP@3x.png differ diff --git a/ui/app/img/tokens/REQ.png b/ui/app/img/tokens/REQ.png new file mode 100644 index 0000000000..c499e279d5 Binary files /dev/null and b/ui/app/img/tokens/REQ.png differ diff --git a/ui/app/img/tokens/REQ@2x.png b/ui/app/img/tokens/REQ@2x.png new file mode 100644 index 0000000000..6e3a490afc Binary files /dev/null and b/ui/app/img/tokens/REQ@2x.png differ diff --git a/ui/app/img/tokens/REQ@3x.png b/ui/app/img/tokens/REQ@3x.png new file mode 100644 index 0000000000..fe6c550ba0 Binary files /dev/null and b/ui/app/img/tokens/REQ@3x.png differ diff --git a/ui/app/img/tokens/RHOC.png b/ui/app/img/tokens/RHOC.png new file mode 100644 index 0000000000..269b9776c6 Binary files /dev/null and b/ui/app/img/tokens/RHOC.png differ diff --git a/ui/app/img/tokens/RHOC@2x.png b/ui/app/img/tokens/RHOC@2x.png new file mode 100644 index 0000000000..e756bd154f Binary files /dev/null and b/ui/app/img/tokens/RHOC@2x.png differ diff --git a/ui/app/img/tokens/RHOC@3x.png b/ui/app/img/tokens/RHOC@3x.png new file mode 100644 index 0000000000..30e47e848f Binary files /dev/null and b/ui/app/img/tokens/RHOC@3x.png differ diff --git a/ui/app/img/tokens/RLC.png b/ui/app/img/tokens/RLC.png new file mode 100644 index 0000000000..4223fd8c2f Binary files /dev/null and b/ui/app/img/tokens/RLC.png differ diff --git a/ui/app/img/tokens/RLC@2x.png b/ui/app/img/tokens/RLC@2x.png new file mode 100644 index 0000000000..fd15fcd6aa Binary files /dev/null and b/ui/app/img/tokens/RLC@2x.png differ diff --git a/ui/app/img/tokens/RLC@3x.png b/ui/app/img/tokens/RLC@3x.png new file mode 100644 index 0000000000..c15f02f0de Binary files /dev/null and b/ui/app/img/tokens/RLC@3x.png differ diff --git a/ui/app/img/tokens/ROL.png b/ui/app/img/tokens/ROL.png new file mode 100644 index 0000000000..5690648a4a Binary files /dev/null and b/ui/app/img/tokens/ROL.png differ diff --git a/ui/app/img/tokens/ROL@2x.png b/ui/app/img/tokens/ROL@2x.png new file mode 100644 index 0000000000..1acdc0eb3f Binary files /dev/null and b/ui/app/img/tokens/ROL@2x.png differ diff --git a/ui/app/img/tokens/ROL@3x.png b/ui/app/img/tokens/ROL@3x.png new file mode 100644 index 0000000000..bc829be037 Binary files /dev/null and b/ui/app/img/tokens/ROL@3x.png differ diff --git a/ui/app/img/tokens/SAI.png b/ui/app/img/tokens/SAI.png new file mode 100644 index 0000000000..4b7ab145cb Binary files /dev/null and b/ui/app/img/tokens/SAI.png differ diff --git a/ui/app/img/tokens/SAI@2x.png b/ui/app/img/tokens/SAI@2x.png new file mode 100644 index 0000000000..40e4737980 Binary files /dev/null and b/ui/app/img/tokens/SAI@2x.png differ diff --git a/ui/app/img/tokens/SAI@3x.png b/ui/app/img/tokens/SAI@3x.png new file mode 100644 index 0000000000..88f2df9151 Binary files /dev/null and b/ui/app/img/tokens/SAI@3x.png differ diff --git a/ui/app/img/tokens/SALT.png b/ui/app/img/tokens/SALT.png new file mode 100644 index 0000000000..c95031ca6e Binary files /dev/null and b/ui/app/img/tokens/SALT.png differ diff --git a/ui/app/img/tokens/SALT@2x.png b/ui/app/img/tokens/SALT@2x.png new file mode 100644 index 0000000000..468369bee8 Binary files /dev/null and b/ui/app/img/tokens/SALT@2x.png differ diff --git a/ui/app/img/tokens/SALT@3x.png b/ui/app/img/tokens/SALT@3x.png new file mode 100644 index 0000000000..6745c22c9b Binary files /dev/null and b/ui/app/img/tokens/SALT@3x.png differ diff --git a/ui/app/img/tokens/SAN.png b/ui/app/img/tokens/SAN.png new file mode 100644 index 0000000000..50cb8f484d Binary files /dev/null and b/ui/app/img/tokens/SAN.png differ diff --git a/ui/app/img/tokens/SAN@2x.png b/ui/app/img/tokens/SAN@2x.png new file mode 100644 index 0000000000..075e61892b Binary files /dev/null and b/ui/app/img/tokens/SAN@2x.png differ diff --git a/ui/app/img/tokens/SAN@3x.png b/ui/app/img/tokens/SAN@3x.png new file mode 100644 index 0000000000..c1452fc56a Binary files /dev/null and b/ui/app/img/tokens/SAN@3x.png differ diff --git a/ui/app/img/tokens/SNGLS.png b/ui/app/img/tokens/SNGLS.png new file mode 100644 index 0000000000..9b2fb3088c Binary files /dev/null and b/ui/app/img/tokens/SNGLS.png differ diff --git a/ui/app/img/tokens/SNGLS@2x.png b/ui/app/img/tokens/SNGLS@2x.png new file mode 100644 index 0000000000..74148d2fc9 Binary files /dev/null and b/ui/app/img/tokens/SNGLS@2x.png differ diff --git a/ui/app/img/tokens/SNGLS@3x.png b/ui/app/img/tokens/SNGLS@3x.png new file mode 100644 index 0000000000..0af8adc83d Binary files /dev/null and b/ui/app/img/tokens/SNGLS@3x.png differ diff --git a/ui/app/img/tokens/SNM.png b/ui/app/img/tokens/SNM.png new file mode 100644 index 0000000000..cc47f3de84 Binary files /dev/null and b/ui/app/img/tokens/SNM.png differ diff --git a/ui/app/img/tokens/SNM@2x.png b/ui/app/img/tokens/SNM@2x.png new file mode 100644 index 0000000000..8bbd87cc6f Binary files /dev/null and b/ui/app/img/tokens/SNM@2x.png differ diff --git a/ui/app/img/tokens/SNM@3x.png b/ui/app/img/tokens/SNM@3x.png new file mode 100644 index 0000000000..fd5796aabc Binary files /dev/null and b/ui/app/img/tokens/SNM@3x.png differ diff --git a/ui/app/img/tokens/SNT.png b/ui/app/img/tokens/SNT.png new file mode 100644 index 0000000000..460b4b2560 Binary files /dev/null and b/ui/app/img/tokens/SNT.png differ diff --git a/ui/app/img/tokens/SNT@2x.png b/ui/app/img/tokens/SNT@2x.png new file mode 100644 index 0000000000..9be343c212 Binary files /dev/null and b/ui/app/img/tokens/SNT@2x.png differ diff --git a/ui/app/img/tokens/SNT@3x.png b/ui/app/img/tokens/SNT@3x.png new file mode 100644 index 0000000000..0c84402224 Binary files /dev/null and b/ui/app/img/tokens/SNT@3x.png differ diff --git a/ui/app/img/tokens/SPANK.png b/ui/app/img/tokens/SPANK.png new file mode 100644 index 0000000000..4a89ff09c1 Binary files /dev/null and b/ui/app/img/tokens/SPANK.png differ diff --git a/ui/app/img/tokens/SPANK@2x.png b/ui/app/img/tokens/SPANK@2x.png new file mode 100644 index 0000000000..1ce947b238 Binary files /dev/null and b/ui/app/img/tokens/SPANK@2x.png differ diff --git a/ui/app/img/tokens/SPANK@3x.png b/ui/app/img/tokens/SPANK@3x.png new file mode 100644 index 0000000000..020dbdaa58 Binary files /dev/null and b/ui/app/img/tokens/SPANK@3x.png differ diff --git a/ui/app/img/tokens/ST.png b/ui/app/img/tokens/ST.png new file mode 100644 index 0000000000..0e64b0f1bd Binary files /dev/null and b/ui/app/img/tokens/ST.png differ diff --git a/ui/app/img/tokens/ST@2x.png b/ui/app/img/tokens/ST@2x.png new file mode 100644 index 0000000000..682eb17f39 Binary files /dev/null and b/ui/app/img/tokens/ST@2x.png differ diff --git a/ui/app/img/tokens/ST@3x.png b/ui/app/img/tokens/ST@3x.png new file mode 100644 index 0000000000..c5610e7ab5 Binary files /dev/null and b/ui/app/img/tokens/ST@3x.png differ diff --git a/ui/app/img/tokens/STORJ.png b/ui/app/img/tokens/STORJ.png new file mode 100644 index 0000000000..371c3a255c Binary files /dev/null and b/ui/app/img/tokens/STORJ.png differ diff --git a/ui/app/img/tokens/STORJ@2x.png b/ui/app/img/tokens/STORJ@2x.png new file mode 100644 index 0000000000..b0f4ece192 Binary files /dev/null and b/ui/app/img/tokens/STORJ@2x.png differ diff --git a/ui/app/img/tokens/STORJ@3x.png b/ui/app/img/tokens/STORJ@3x.png new file mode 100644 index 0000000000..1cf98e8747 Binary files /dev/null and b/ui/app/img/tokens/STORJ@3x.png differ diff --git a/ui/app/img/tokens/STRK.png b/ui/app/img/tokens/STRK.png new file mode 100644 index 0000000000..dfef339377 Binary files /dev/null and b/ui/app/img/tokens/STRK.png differ diff --git a/ui/app/img/tokens/STRK@2x.png b/ui/app/img/tokens/STRK@2x.png new file mode 100644 index 0000000000..df750209af Binary files /dev/null and b/ui/app/img/tokens/STRK@2x.png differ diff --git a/ui/app/img/tokens/STRK@3x.png b/ui/app/img/tokens/STRK@3x.png new file mode 100644 index 0000000000..f35a0676df Binary files /dev/null and b/ui/app/img/tokens/STRK@3x.png differ diff --git a/ui/app/img/tokens/STX.png b/ui/app/img/tokens/STX.png new file mode 100644 index 0000000000..ba5adee854 Binary files /dev/null and b/ui/app/img/tokens/STX.png differ diff --git a/ui/app/img/tokens/STX@2x.png b/ui/app/img/tokens/STX@2x.png new file mode 100644 index 0000000000..17f1fff4c5 Binary files /dev/null and b/ui/app/img/tokens/STX@2x.png differ diff --git a/ui/app/img/tokens/STX@3x.png b/ui/app/img/tokens/STX@3x.png new file mode 100644 index 0000000000..6f981c7f24 Binary files /dev/null and b/ui/app/img/tokens/STX@3x.png differ diff --git a/ui/app/img/tokens/SUB.png b/ui/app/img/tokens/SUB.png new file mode 100644 index 0000000000..db54d3928b Binary files /dev/null and b/ui/app/img/tokens/SUB.png differ diff --git a/ui/app/img/tokens/SUB@2x.png b/ui/app/img/tokens/SUB@2x.png new file mode 100644 index 0000000000..83998d15e8 Binary files /dev/null and b/ui/app/img/tokens/SUB@2x.png differ diff --git a/ui/app/img/tokens/SUB@3x.png b/ui/app/img/tokens/SUB@3x.png new file mode 100644 index 0000000000..2e5b07f716 Binary files /dev/null and b/ui/app/img/tokens/SUB@3x.png differ diff --git a/ui/app/img/tokens/SUPR.png b/ui/app/img/tokens/SUPR.png new file mode 100644 index 0000000000..7d8faa483d Binary files /dev/null and b/ui/app/img/tokens/SUPR.png differ diff --git a/ui/app/img/tokens/TAAS.png b/ui/app/img/tokens/TAAS.png new file mode 100644 index 0000000000..c5f205127e Binary files /dev/null and b/ui/app/img/tokens/TAAS.png differ diff --git a/ui/app/img/tokens/TAAS@2x.png b/ui/app/img/tokens/TAAS@2x.png new file mode 100644 index 0000000000..1575955a63 Binary files /dev/null and b/ui/app/img/tokens/TAAS@2x.png differ diff --git a/ui/app/img/tokens/TAAS@3x.png b/ui/app/img/tokens/TAAS@3x.png new file mode 100644 index 0000000000..810fc57a10 Binary files /dev/null and b/ui/app/img/tokens/TAAS@3x.png differ diff --git a/ui/app/img/tokens/TKN.png b/ui/app/img/tokens/TKN.png new file mode 100644 index 0000000000..7693a02d7d Binary files /dev/null and b/ui/app/img/tokens/TKN.png differ diff --git a/ui/app/img/tokens/TKN@2x.png b/ui/app/img/tokens/TKN@2x.png new file mode 100644 index 0000000000..a16fd85c9e Binary files /dev/null and b/ui/app/img/tokens/TKN@2x.png differ diff --git a/ui/app/img/tokens/TKN@3x.png b/ui/app/img/tokens/TKN@3x.png new file mode 100644 index 0000000000..c9f869bc7e Binary files /dev/null and b/ui/app/img/tokens/TKN@3x.png differ diff --git a/ui/app/img/tokens/TNT.png b/ui/app/img/tokens/TNT.png new file mode 100644 index 0000000000..b00f9da2a9 Binary files /dev/null and b/ui/app/img/tokens/TNT.png differ diff --git a/ui/app/img/tokens/TNT@2x.png b/ui/app/img/tokens/TNT@2x.png new file mode 100644 index 0000000000..e989f06eb9 Binary files /dev/null and b/ui/app/img/tokens/TNT@2x.png differ diff --git a/ui/app/img/tokens/TNT@3x.png b/ui/app/img/tokens/TNT@3x.png new file mode 100644 index 0000000000..618ca8f2d8 Binary files /dev/null and b/ui/app/img/tokens/TNT@3x.png differ diff --git a/ui/app/img/tokens/TRST.png b/ui/app/img/tokens/TRST.png new file mode 100644 index 0000000000..dde4b8283d Binary files /dev/null and b/ui/app/img/tokens/TRST.png differ diff --git a/ui/app/img/tokens/TRST@2x.png b/ui/app/img/tokens/TRST@2x.png new file mode 100644 index 0000000000..55716f6a61 Binary files /dev/null and b/ui/app/img/tokens/TRST@2x.png differ diff --git a/ui/app/img/tokens/TRST@3x.png b/ui/app/img/tokens/TRST@3x.png new file mode 100644 index 0000000000..1ad908aa8e Binary files /dev/null and b/ui/app/img/tokens/TRST@3x.png differ diff --git a/ui/app/img/tokens/TRX.png b/ui/app/img/tokens/TRX.png new file mode 100644 index 0000000000..15b2c08271 Binary files /dev/null and b/ui/app/img/tokens/TRX.png differ diff --git a/ui/app/img/tokens/TRX@2x.png b/ui/app/img/tokens/TRX@2x.png new file mode 100644 index 0000000000..f48265e514 Binary files /dev/null and b/ui/app/img/tokens/TRX@2x.png differ diff --git a/ui/app/img/tokens/TRX@3x.png b/ui/app/img/tokens/TRX@3x.png new file mode 100644 index 0000000000..66f19ded4a Binary files /dev/null and b/ui/app/img/tokens/TRX@3x.png differ diff --git a/ui/app/img/tokens/UKG.png b/ui/app/img/tokens/UKG.png new file mode 100644 index 0000000000..6866bfe5a3 Binary files /dev/null and b/ui/app/img/tokens/UKG.png differ diff --git a/ui/app/img/tokens/UKG@2x.png b/ui/app/img/tokens/UKG@2x.png new file mode 100644 index 0000000000..9d8eeb3cb5 Binary files /dev/null and b/ui/app/img/tokens/UKG@2x.png differ diff --git a/ui/app/img/tokens/UKG@3x.png b/ui/app/img/tokens/UKG@3x.png new file mode 100644 index 0000000000..231a09e177 Binary files /dev/null and b/ui/app/img/tokens/UKG@3x.png differ diff --git a/ui/app/img/tokens/USDC.png b/ui/app/img/tokens/USDC.png new file mode 100644 index 0000000000..67aee1eef6 Binary files /dev/null and b/ui/app/img/tokens/USDC.png differ diff --git a/ui/app/img/tokens/USDC@2x.png b/ui/app/img/tokens/USDC@2x.png new file mode 100644 index 0000000000..228179e886 Binary files /dev/null and b/ui/app/img/tokens/USDC@2x.png differ diff --git a/ui/app/img/tokens/USDC@3x.png b/ui/app/img/tokens/USDC@3x.png new file mode 100644 index 0000000000..caf400ca80 Binary files /dev/null and b/ui/app/img/tokens/USDC@3x.png differ diff --git a/ui/app/img/tokens/VERI.png b/ui/app/img/tokens/VERI.png new file mode 100644 index 0000000000..c7ef955682 Binary files /dev/null and b/ui/app/img/tokens/VERI.png differ diff --git a/ui/app/img/tokens/VERI@2x.png b/ui/app/img/tokens/VERI@2x.png new file mode 100644 index 0000000000..85323971d5 Binary files /dev/null and b/ui/app/img/tokens/VERI@2x.png differ diff --git a/ui/app/img/tokens/VERI@3x.png b/ui/app/img/tokens/VERI@3x.png new file mode 100644 index 0000000000..72408c659a Binary files /dev/null and b/ui/app/img/tokens/VERI@3x.png differ diff --git a/ui/app/img/tokens/VIB.png b/ui/app/img/tokens/VIB.png new file mode 100644 index 0000000000..73de4dcbe7 Binary files /dev/null and b/ui/app/img/tokens/VIB.png differ diff --git a/ui/app/img/tokens/VIB@2x.png b/ui/app/img/tokens/VIB@2x.png new file mode 100644 index 0000000000..0caebcefd3 Binary files /dev/null and b/ui/app/img/tokens/VIB@2x.png differ diff --git a/ui/app/img/tokens/VIB@3x.png b/ui/app/img/tokens/VIB@3x.png new file mode 100644 index 0000000000..0a74a94636 Binary files /dev/null and b/ui/app/img/tokens/VIB@3x.png differ diff --git a/ui/app/img/tokens/WBTC.png b/ui/app/img/tokens/WBTC.png new file mode 100644 index 0000000000..addefc7e0b Binary files /dev/null and b/ui/app/img/tokens/WBTC.png differ diff --git a/ui/app/img/tokens/WBTC@2x.png b/ui/app/img/tokens/WBTC@2x.png new file mode 100644 index 0000000000..3af598a373 Binary files /dev/null and b/ui/app/img/tokens/WBTC@2x.png differ diff --git a/ui/app/img/tokens/WBTC@3x.png b/ui/app/img/tokens/WBTC@3x.png new file mode 100644 index 0000000000..ad6e4e902d Binary files /dev/null and b/ui/app/img/tokens/WBTC@3x.png differ diff --git a/ui/app/img/tokens/WINGS.png b/ui/app/img/tokens/WINGS.png new file mode 100644 index 0000000000..2e412a9ec2 Binary files /dev/null and b/ui/app/img/tokens/WINGS.png differ diff --git a/ui/app/img/tokens/WINGS@2x.png b/ui/app/img/tokens/WINGS@2x.png new file mode 100644 index 0000000000..6d41d9afae Binary files /dev/null and b/ui/app/img/tokens/WINGS@2x.png differ diff --git a/ui/app/img/tokens/WINGS@3x.png b/ui/app/img/tokens/WINGS@3x.png new file mode 100644 index 0000000000..7fc1b448d6 Binary files /dev/null and b/ui/app/img/tokens/WINGS@3x.png differ diff --git a/ui/app/img/tokens/WTC.png b/ui/app/img/tokens/WTC.png new file mode 100644 index 0000000000..52d66559f3 Binary files /dev/null and b/ui/app/img/tokens/WTC.png differ diff --git a/ui/app/img/tokens/WTC@2x.png b/ui/app/img/tokens/WTC@2x.png new file mode 100644 index 0000000000..59196ffc79 Binary files /dev/null and b/ui/app/img/tokens/WTC@2x.png differ diff --git a/ui/app/img/tokens/WTC@3x.png b/ui/app/img/tokens/WTC@3x.png new file mode 100644 index 0000000000..eef48274d1 Binary files /dev/null and b/ui/app/img/tokens/WTC@3x.png differ diff --git a/ui/app/img/tokens/XAUR.png b/ui/app/img/tokens/XAUR.png new file mode 100644 index 0000000000..fcef37aaa2 Binary files /dev/null and b/ui/app/img/tokens/XAUR.png differ diff --git a/ui/app/img/tokens/XAUR@2x.png b/ui/app/img/tokens/XAUR@2x.png new file mode 100644 index 0000000000..24caf99683 Binary files /dev/null and b/ui/app/img/tokens/XAUR@2x.png differ diff --git a/ui/app/img/tokens/XAUR@3x.png b/ui/app/img/tokens/XAUR@3x.png new file mode 100644 index 0000000000..a708452c64 Binary files /dev/null and b/ui/app/img/tokens/XAUR@3x.png differ diff --git a/ui/app/img/tokens/XPA.png b/ui/app/img/tokens/XPA.png new file mode 100644 index 0000000000..b293ac55dd Binary files /dev/null and b/ui/app/img/tokens/XPA.png differ diff --git a/ui/app/img/tokens/XPA@2x.png b/ui/app/img/tokens/XPA@2x.png new file mode 100644 index 0000000000..fda6713b7c Binary files /dev/null and b/ui/app/img/tokens/XPA@2x.png differ diff --git a/ui/app/img/tokens/XPA@3x.png b/ui/app/img/tokens/XPA@3x.png new file mode 100644 index 0000000000..1e940bdc8c Binary files /dev/null and b/ui/app/img/tokens/XPA@3x.png differ diff --git a/ui/app/img/tokens/XRL.png b/ui/app/img/tokens/XRL.png new file mode 100644 index 0000000000..24c5a44b3f Binary files /dev/null and b/ui/app/img/tokens/XRL.png differ diff --git a/ui/app/img/tokens/XRL@2x.png b/ui/app/img/tokens/XRL@2x.png new file mode 100644 index 0000000000..820ae27bfc Binary files /dev/null and b/ui/app/img/tokens/XRL@2x.png differ diff --git a/ui/app/img/tokens/XRL@3x.png b/ui/app/img/tokens/XRL@3x.png new file mode 100644 index 0000000000..430770dab9 Binary files /dev/null and b/ui/app/img/tokens/XRL@3x.png differ diff --git a/ui/app/img/tokens/XUC.png b/ui/app/img/tokens/XUC.png new file mode 100644 index 0000000000..b00f2e0b8c Binary files /dev/null and b/ui/app/img/tokens/XUC.png differ diff --git a/ui/app/img/tokens/XUC@2x.png b/ui/app/img/tokens/XUC@2x.png new file mode 100644 index 0000000000..1d5bad323b Binary files /dev/null and b/ui/app/img/tokens/XUC@2x.png differ diff --git a/ui/app/img/tokens/XUC@3x.png b/ui/app/img/tokens/XUC@3x.png new file mode 100644 index 0000000000..c767ae2465 Binary files /dev/null and b/ui/app/img/tokens/XUC@3x.png differ diff --git a/ui/app/img/tokens/ZRX.png b/ui/app/img/tokens/ZRX.png new file mode 100644 index 0000000000..027ca5b0a3 Binary files /dev/null and b/ui/app/img/tokens/ZRX.png differ diff --git a/ui/app/img/tokens/ZRX@2x.png b/ui/app/img/tokens/ZRX@2x.png new file mode 100644 index 0000000000..c44e5dcd43 Binary files /dev/null and b/ui/app/img/tokens/ZRX@2x.png differ diff --git a/ui/app/img/tokens/ZRX@3x.png b/ui/app/img/tokens/ZRX@3x.png new file mode 100644 index 0000000000..35f197c98f Binary files /dev/null and b/ui/app/img/tokens/ZRX@3x.png differ diff --git a/ui/app/img/tokens/ZSC.png b/ui/app/img/tokens/ZSC.png new file mode 100644 index 0000000000..74deb12aae Binary files /dev/null and b/ui/app/img/tokens/ZSC.png differ diff --git a/ui/app/img/tokens/ZSC@2x.png b/ui/app/img/tokens/ZSC@2x.png new file mode 100644 index 0000000000..85567b6771 Binary files /dev/null and b/ui/app/img/tokens/ZSC@2x.png differ diff --git a/ui/app/img/tokens/ZSC@3x.png b/ui/app/img/tokens/ZSC@3x.png new file mode 100644 index 0000000000..0661275afa Binary files /dev/null and b/ui/app/img/tokens/ZSC@3x.png differ diff --git a/ui/nim-status-client.pro b/ui/nim-status-client.pro index 711adbdd3e..791b746fd0 100644 --- a/ui/nim-status-client.pro +++ b/ui/nim-status-client.pro @@ -82,6 +82,7 @@ DISTFILES += \ app/AppLayouts/Wallet/Components/AddAccount.qml \ app/AppLayouts/Wallet/Components/SendModalContent.qml \ app/AppLayouts/Wallet/Components/SettingsModalContent.qml \ + app/AppLayouts/Wallet/Components/TokenSettingsModalContent.qml \ app/AppLayouts/Wallet/Components/qmldir \ app/AppLayouts/Wallet/HistoryTab.qml \ app/AppLayouts/Profile/Sections/AboutContainer.qml \ @@ -99,9 +100,12 @@ DISTFILES += \ app/AppLayouts/Wallet/LeftTab.qml \ app/AppLayouts/Wallet/SendModal.qml \ app/AppLayouts/Wallet/SettingsModal.qml \ + app/AppLayouts/Wallet/TokenSettingsModal.qml \ app/AppLayouts/Wallet/WalletHeader.qml \ app/AppLayouts/Wallet/WalletLayout.qml \ app/AppLayouts/Wallet/qmldir \ + app/AppLayouts/Wallet/tokens/Tokens.qml \ + app/AppLayouts/Wallet/tokens/qmldir \ app/AppLayouts/WalletLayout.qml \ app/AppLayouts/qmldir \ app/AppMain.qml \