Skip to content

Commit

Permalink
feat(triggering release): now
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilbe27 committed Dec 20, 2023
1 parent ae9ace9 commit 6a924b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
VALIDATOR_MNEMONIC=
VALIDATOR_ADDRESS=
CHAIN_HOST=
1 change: 0 additions & 1 deletion .github/workflows/test-ts-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
test-ts-sdk:
runs-on: ubuntu-latest
env:
CHAIN_HOST: ${{ secrets.CHAIN_HOST }}
VALIDATOR_MNEMONIC: ${{ secrets.VALIDATOR_MNEMONIC }}
VALIDATOR_ADDRESS: ${{ secrets.VALIDATOR_ADDRESS }}
LCD_ENDPOINT: "http://127.0.0.1:1317"
Expand Down
2 changes: 1 addition & 1 deletion packages/nibijs/README.md
6 changes: 5 additions & 1 deletion packages/nibijs/src/chain/useFaucet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,9 @@ export async function useFaucet({
export const faucetUrlFromChain = (chain: Chain) => {
const parts = chainToParts(chain)
// e.g. https://faucet.itn-X.nibiru.fi/ where X is the number
return `https://faucet.${parts.shortName}-${parts.number}.nibiru.fi/`
const restOfChain = chain.chainName.includes("cataclysm")
? ""
: `.${parts.shortName}-${parts.number}`

return `https://faucet${restOfChain}.nibiru.fi/`
}

0 comments on commit 6a924b6

Please sign in to comment.