diff --git a/products/zillion/bun.lockb b/products/zillion/bun.lockb new file mode 100755 index 000000000..1f659466e Binary files /dev/null and b/products/zillion/bun.lockb differ diff --git a/products/zillion/package.json b/products/zillion/package.json index dae089e84..bd84e60b7 100644 --- a/products/zillion/package.json +++ b/products/zillion/package.json @@ -7,27 +7,27 @@ "@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated", "@ledgerhq/hw-transport-webhid": "^5.51.1", "@ledgerhq/hw-transport-webusb": "^5.53.1", - "@reduxjs/toolkit": "^1.6.0", - "@tippyjs/react": "^4.2.0", + "@reduxjs/toolkit": "^1.9.7", + "@tippyjs/react": "^4.2.6", "@zilliqa-js/zilliqa": "^3.5.0", - "bignumber.js": "^9.0.0", - "bootstrap": "^4.5.2", - "jquery": "^3.5.1", + "bignumber.js": "^9.3.0", + "bootstrap": "^4.6.2", + "jquery": "^3.7.1", "popper.js": "1.16.1", "random-js": "^2.1.0", "react": "^17.0.2", "react-animated-numbers": "^0.1.0", "react-dom": "^17.0.2", - "react-promise-tracker": "^2.1.0", - "react-redux": "^7.2.4", - "react-router-dom": "^5.2.0", + "react-promise-tracker": "^2.1.1", + "react-redux": "^7.2.9", + "react-router-dom": "^5.3.4", "react-scripts": "3.4.3", - "react-table": "^7.7.0", - "react-tabs": "^3.2.2", - "react-toastify": "^6.0.8", - "react-tooltip": "^4.2.10", - "redux-saga": "^1.1.3", - "tslib": "^2.0.1" + "react-table": "^7.8.0", + "react-tabs": "^3.2.3", + "react-toastify": "^6.2.0", + "react-tooltip": "^4.5.1", + "redux-saga": "^1.3.0", + "tslib": "^2.8.1" }, "scripts": { "start": "react-scripts start", @@ -54,18 +54,18 @@ ] }, "devDependencies": { - "@types/bootstrap": "^4.5.0", - "@types/jquery": "^3.5.1", - "@types/ledgerhq__hw-transport": "^4.21.3", - "@types/ledgerhq__hw-transport-u2f": "^4.21.2", - "@types/node": "^12.12.54", - "@types/react": "^16.9.46", - "@types/react-dom": "^16.9.8", - "@types/react-redux": "^7.1.16", - "@types/react-router-dom": "^5.1.5", - "@types/react-select": "^3.0.19", - "@types/react-table": "^7.0.22", - "@types/react-tabs": "^2.3.2", - "typescript": "^3.9.7" + "@types/bootstrap": "^4.6.6", + "@types/jquery": "^3.5.32", + "@types/ledgerhq__hw-transport": "^4.21.8", + "@types/ledgerhq__hw-transport-u2f": "^4.21.5", + "@types/node": "^12.20.55", + "@types/react": "^16.14.65", + "@types/react-dom": "^16.9.25", + "@types/react-redux": "^7.1.34", + "@types/react-router-dom": "^5.3.3", + "@types/react-select": "^3.1.2", + "@types/react-table": "^7.7.20", + "@types/react-tabs": "^2.3.4", + "typescript": "^3.9.10" } } diff --git a/products/zillion/public/config.js b/products/zillion/public/config.js index d93c329c0..a393cd8a3 100644 --- a/products/zillion/public/config.js +++ b/products/zillion/public/config.js @@ -49,7 +49,7 @@ window['config'] = { api_list : [ "https://api.zilliqa.com", "https://ssn-zilliqa.cex.io/api", - // "https://ssn.ignitedao.io/api", + "https://ssn.ignitedao.io/api", "https://ssn.zillet.io", "https://zil-staking.ezil.me/api", "https://staking-zil.kucoin.com/api", diff --git a/products/zillion/src/app.css b/products/zillion/src/app.css index d782cd7f7..88f3e2d80 100644 --- a/products/zillion/src/app.css +++ b/products/zillion/src/app.css @@ -2067,4 +2067,8 @@ input:focus { .cover-img{ object-fit: cover; -} \ No newline at end of file +} + +iframe { + z-index: -1 !important; +} diff --git a/products/zillion/src/components/dashboard.tsx b/products/zillion/src/components/dashboard.tsx index 5e6b85371..e802807a6 100644 --- a/products/zillion/src/components/dashboard.tsx +++ b/products/zillion/src/components/dashboard.tsx @@ -176,7 +176,7 @@ function Dashboard(props: any) { if (zilPay) { networkChanger( - tryGetNetworkLabelByApiUrl(zilPay.wallet.http) || zilPay.wallet.net + Boolean(zilPay.wallet.http) ? tryGetNetworkLabelByApiUrl(zilPay.wallet.http) : zilPay.wallet.net ); const accountStreamChanged = zilPay.wallet.observableAccount().subscribe((account: any) => { @@ -575,4 +575,4 @@ function Dashboard(props: any) { ); } -export default Dashboard; \ No newline at end of file +export default Dashboard;