Skip to content

Commit

Permalink
Merge pull request #99 from eosnetworkfoundation/elmato/merge-0-11-2-…
Browse files Browse the repository at this point in the history
…into-main

[0.11 -> main] Merge release/0.11 back to main
  • Loading branch information
elmato authored Feb 23, 2024
2 parents 1ba79bb + d3a8b6d commit 00fe256
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evm-bridge-frontend",
"version": "0.11.1",
"version": "0.11.2",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
Binary file added public/images/sfn.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/sfns.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 14 additions & 3 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,18 @@ export default {
warningList: [],
ingressFee: 0
},
{
name: 'SFNS', addr: '0x6d43320bBD27ac8e61CE9dE6c092b182aF03ED6a', logo: 'images/sfns.png',
blockList: ['gateiowallet', 'eosbndeposit', 'bybitdeposit', 'bitgeteosdep', 'kucoindoteos', 'binancecleos', 'coinbasebase', 'krakenkraken', 'huobideposit', 'okbtothemoon'],
warningList: [],
ingressFee: 0
},
{
name: 'SFN', addr: '0x93496551b8a5E1a889777B60b996aB7231852D74', logo: 'images/sfn.png',
blockList: ['gateiowallet', 'eosbndeposit', 'bybitdeposit', 'bitgeteosdep', 'kucoindoteos', 'binancecleos', 'coinbasebase', 'krakenkraken', 'huobideposit', 'okbtothemoon'],
warningList: [],
ingressFee: 0
},
],
}
},
Expand Down Expand Up @@ -441,9 +453,8 @@ export default {
async prepareList(tokenListTemplate) {
// Make a deep clone
let tokenList = JSON.parse(JSON.stringify(tokenListTemplate))
console.log(tokenListTemplate)
console.log(tokenList)
const erclist = (await this.rpc.fetch('/v1/chain/get_table_rows', { "table": "tokens", "scope": "eosio.erc2o", "code": "eosio.erc2o", "json": true })).rows
const erclist = (await this.rpc.fetch('/v1/chain/get_table_rows', { "table": "tokens", "scope": "eosio.erc2o", "code": "eosio.erc2o", "json": true, "limit": 20 })).rows
for(let erc of erclist) {
let fee = erc.ingress_fee.split(' ')
Expand Down

0 comments on commit 00fe256

Please sign in to comment.