Skip to content

Commit e75a3ff

Browse files
authored
Merge pull request #11 from unionlabs/testnet-10
chore: add testnet 10 chain
2 parents e92681e + d79568e commit e75a3ff

6 files changed

Lines changed: 13 additions & 61 deletions

File tree

.github/workflows/deploy-explorer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
3939
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
40-
run: npx --yes wrangler@latest pages --project-name="explorer-testnet-9" deploy result >> /tmp/explorer_deploy.txt
40+
run: npx --yes wrangler@latest pages --project-name="explorer-testnet-10" deploy result >> /tmp/explorer_deploy.txt
4141
- name: Set Deploy Output
4242
run: |
4343
{
@@ -74,4 +74,4 @@ jobs:
7474
env:
7575
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
7676
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
77-
run: npx --yes wrangler@latest pages --project-name="explorer-testnet-9" --branch="main" deploy result
77+
run: npx --yes wrangler@latest pages --project-name="explorer-testnet-10" --branch="main" deploy result

src/assets/chains/mainnet/union-testnet-9.json renamed to src/assets/chains/mainnet/union-testnet-10.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"chain_name": "union",
33
"api": [
4-
"https://rest.testnet-9.union.build"
4+
"https://rest.rpc-node.union-testnet-10.union.build"
55
],
66
"rpc": [
7-
"https://rpc.testnet-9.union.build"
7+
"https://rpc.rpc-node.union-testnet-10.union.build"
88
],
9-
"sdk_version": "0.47.0",
9+
"sdk_version": "0.50.11",
1010
"addr_prefix": "union",
1111
"min_tx_fee": "0",
1212
"coin_type": "1337",
@@ -15,8 +15,8 @@
1515
"assets": [
1616
{
1717
"symbol": "UNO",
18-
"base": "uuno",
19-
"exponent": 9,
18+
"base": "muno",
19+
"exponent": 6,
2020
"coingecko_id": "uno",
2121
"logo": "https://raw.githubusercontent.com/Agoric/agoric-sdk/master/packages/wallet/ui/public/tokens/BLD.svg"
2222
}

src/assets/chains/mainnet/union-testnet-8.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/assets/chains/testnet/union-testnet-9.json renamed to src/assets/chains/testnet/union-testnet-10.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"chain_name": "union",
33
"api": [
4-
"https://rest.testnet-9.union.build"
4+
"https://rest.rpc-node.union-testnet-10.union.build"
55
],
66
"rpc": [
7-
"https://rpc.testnet-9.union.build"
7+
"https://rpc.rpc-node.union-testnet-10.union.build"
88
],
9-
"sdk_version": "0.47.0",
9+
"sdk_version": "0.50.11",
1010
"addr_prefix": "union",
1111
"min_tx_fee": "0",
1212
"coin_type": "1337",
@@ -15,8 +15,8 @@
1515
"assets": [
1616
{
1717
"symbol": "UNO",
18-
"base": "uuno",
19-
"exponent": 9,
18+
"base": "muno",
19+
"exponent": 6,
2020
"coingecko_id": "uno",
2121
"logo": "https://raw.githubusercontent.com/Agoric/agoric-sdk/master/packages/wallet/ui/public/tokens/BLD.svg"
2222
}

src/assets/chains/testnet/union-testnet-8.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/stores/useDashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineStore } from 'pinia';
22
import { get } from '../libs/http';
33
import { useBlockchain } from './useBlockchain';
44
import type { Asset } from '@ping-pub/chain-registry-client/dist/types';
5-
import unionChainConfig from '../assets/chains/testnet/union-testnet-9.json' with { type: 'json' };
5+
import unionChainConfig from '../assets/chains/testnet/union-testnet-10.json' with { type: 'json' };
66
console.info(unionChainConfig)
77

88
export enum EndpointType {

0 commit comments

Comments
 (0)