diff --git a/.github/workflows/mainnet-deploy.yaml b/.github/workflows/mainnet-deploy.yaml index 97df24d6..50fe138d 100644 --- a/.github/workflows/mainnet-deploy.yaml +++ b/.github/workflows/mainnet-deploy.yaml @@ -22,7 +22,7 @@ jobs: run: yarn install --ignore-engines - name: Build - run: yarn build-only + run: yarn build - name: Deploy run: cp -rf ./dist/* /var/www/html/ \ No newline at end of file diff --git a/chains/mainnet/composable.json b/chains/mainnet/composable.json new file mode 100644 index 00000000..ebcd419f --- /dev/null +++ b/chains/mainnet/composable.json @@ -0,0 +1,19 @@ +{ + "chain_name": "Composable", + "api": ["https://composable-api.polkachu.com"], + "rpc": ["https://composable-rpc.polkachu.com"], + "coingecko": "", + "snapshot_provider": "", + "sdk_version": "0.47.1", + "coin_type": "118", + "min_tx_fee": "500", + "addr_prefix": "banksy", + "logo": "/logos/composable.jpg", + "assets": [{ + "base": "ppica", + "symbol": "PICA", + "exponent": "12", + "coingecko_id": "", + "logo": "/logos/composable.jpg" + }] + } diff --git a/chains/testnet/noria.json b/chains/testnet/noria.json new file mode 100644 index 00000000..17aca3ae --- /dev/null +++ b/chains/testnet/noria.json @@ -0,0 +1,18 @@ +{ + "chain_name": "Noria", + "api":[ "https://api.noria-testnet.stake-take.com" ], + "rpc":[ "https://rpc.noria-testnet.stake-take.com" ], + "snapshot_provider": "", + "sdk_version": "0.47.2", + "coin_type": 118, + "min_tx_fee": "0", + "addr_prefix": "noria", + "logo": "/logos/noria.jpg", + "assets": [{ + "base": "unoria", + "symbol": "NORIA", + "exponent": 6, + "coingecko_id": "", + "logo": "/logos/noria.jpg" + }] +} diff --git a/index.html b/index.html index 60c4a6e7..61a6a5b1 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Ping Dashboard + Ping Dashboard - Cosmos Blockchain Explorer And Web Wallet diff --git a/package.json b/package.json index 955206d9..c0c6ba6c 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "md-editor-v3": "^2.8.1", "numeral": "^2.0.6", "osmojs": "^14.0.0-rc.0", - "ping-widget": "^0.0.33", + "ping-widget": "^0.0.35", "pinia": "^2.0.28", "postcss": "^8.4.23", "qrcode": "^1.5.3", @@ -55,6 +55,7 @@ "@types/marked": "^4.0.8", "@types/node": "^18.11.12", "@types/numeral": "^2.0.2", + "@types/semver": "7.5.0", "@vitejs/plugin-vue": "^4.0.0", "@vue/tsconfig": "^0.1.3", "npm-run-all": "^4.1.5", diff --git a/public/logos/composable.jpg b/public/logos/composable.jpg new file mode 100644 index 00000000..6055c7c1 Binary files /dev/null and b/public/logos/composable.jpg differ diff --git a/public/logos/metamask.webp b/public/logos/metamask.webp new file mode 100644 index 00000000..dd01a5ec Binary files /dev/null and b/public/logos/metamask.webp differ diff --git a/public/logos/noria.jpg b/public/logos/noria.jpg new file mode 100644 index 00000000..63463d9d Binary files /dev/null and b/public/logos/noria.jpg differ diff --git a/src/components/CardStatisticsVertical.vue b/src/components/CardStatisticsVertical.vue index 50a66408..5b5494fe 100644 --- a/src/components/CardStatisticsVertical.vue +++ b/src/components/CardStatisticsVertical.vue @@ -1,5 +1,6 @@