Skip to content

Commit

Permalink
Fix explorer url (#6)
Browse files Browse the repository at this point in the history
* Fix explorer url

* Odd file

* Update CI
  • Loading branch information
cgilbe27 authored Dec 11, 2023
1 parent 96220a8 commit 65e1eaa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "yarn"
node-version: 'lts/gallium'
cache: 'yarn'

- name: Run install
uses: borales/actions-yarn@v4
Expand All @@ -25,8 +25,9 @@ jobs:

- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_NIBIRU_CHAIN }}"
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_NIBIRU_CHAIN }}'
projectId: nibiru-chain
expires: 14d
target: explorer
firebaseToolsVersion: '12.9.1'
9 changes: 5 additions & 4 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "yarn"
node-version: 'lts/gallium'
cache: 'yarn'

- name: Run install
uses: borales/actions-yarn@v4
Expand All @@ -28,8 +28,9 @@ jobs:

- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_NIBIRU_CHAIN }}"
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_NIBIRU_CHAIN }}'
projectId: nibiru-chain
channelId: live
target: explorer
firebaseToolsVersion: '12.9.1'
4 changes: 2 additions & 2 deletions src/nibiru/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { LocalConfig } from '@/stores';

const PLAYGROUND_NETWORKS = 'https://networks.play.nibiru.fi/ping-pub';
const DEV_NETWORKS = 'https://networks.testnet.nibiru.fi/ping-pub';
const ITN_NETWORKS = 'https://networks.itn.nibiru.fi/ping-pub';
const DEV_NETWORKS = 'https://networks.devnet.nibiru.fi/ping-pub';
const ITN_NETWORKS = 'https://networks.testnet.nibiru.fi/ping-pub';
const MAIN_NETWORK = 'https://networks.nibiru.fi/ping-pub';

export const getNetwork = async (url: string): Promise<LocalConfig[]> => {
Expand Down

0 comments on commit 65e1eaa

Please sign in to comment.