Skip to content

Commit

Permalink
Merge pull request #81 from eosnetworkfoundation/yarkin/add_token
Browse files Browse the repository at this point in the history
Add BOX, USN, SEOS to mainnet drop list
  • Loading branch information
yarkinwho authored Nov 15, 2023
2 parents 0325385 + 4c9e495 commit 7df823f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
Binary file added public/images/box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/seos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/usn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ app.provide('wallet', wallet)


app.component('Fa', Fa)
app.provide('env', location.host === 'bridge.evm.eosnetwork.com' ? 'MAINNET' : 'TESTNET')
app.provide('env', location.search === '?forceMainnet' ? 'MAINNET' : location.host === 'bridge.evm.eosnetwork.com' ? 'MAINNET' : 'TESTNET')
app.provide('i18n', i18n)

app.mount('#app')
12 changes: 12 additions & 0 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,18 @@ export default {
blockList: ['eosbndeposit', 'bybitdeposit', 'bitgeteosdep', 'kucoindoteos', 'binancecleos', 'coinbasebase', 'krakenkraken', 'huobideposit', 'okbtothemoon'],
warningList: ['gateiowallet']
},
{ name: 'SEOS', addr: '0xbfb10f85b889328e4a42507e31a07977ae00eec6', logo: 'images/seos.png' ,
blockList: ['gateiowallet', 'eosbndeposit', 'bybitdeposit', 'bitgeteosdep', 'kucoindoteos', 'binancecleos', 'coinbasebase', 'krakenkraken', 'huobideposit', 'okbtothemoon'],
warningList: []
},
{ name: 'BOX', addr: '0x9b3754f036de42846e60c8d8c89b18764f168367', logo: 'images/box.png' ,
blockList: ['gateiowallet', 'eosbndeposit', 'bybitdeposit', 'bitgeteosdep', 'kucoindoteos', 'binancecleos', 'coinbasebase', 'krakenkraken', 'huobideposit', 'okbtothemoon'],
warningList: []
},
{ name: 'USN', addr: '0x8d0258d6ccfb0ce394dc542c545566936b7974f9', logo: 'images/usn.png' ,
blockList: ['gateiowallet', 'eosbndeposit', 'bybitdeposit', 'bitgeteosdep', 'kucoindoteos', 'binancecleos', 'coinbasebase', 'krakenkraken', 'huobideposit', 'okbtothemoon'],
warningList: []
},
],
}
},
Expand Down

0 comments on commit 7df823f

Please sign in to comment.