Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update starship helm chart version #21

Merged
merged 4 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions __tests__/contract2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Contract 2: AMM contract test', () => {
let wallet2, address2;
let fee;

const denom2 = "uweb", uatom = "uatom", uusdc = "uusdc";
const denom2 = "uhypweb", uatom = "uatom", uusdc = "uusdc";

beforeAll(async () => {
({
Expand All @@ -33,14 +33,14 @@ describe('Contract 2: AMM contract test', () => {
prefix: chainInfo.chain.bech32_prefix
});
address = (await wallet.getAccounts())[0].address;
console.log(`contract creator address: ${address}`)
console.log(`contract creator address for amm: ${address}`)

// Initialize wallet2
wallet2 = await DirectSecp256k1HdWallet.fromMnemonic(generateMnemonic(), {
prefix: chainInfo.chain.bech32_prefix
});
address2 = (await wallet2.getAccounts())[0].address;
console.log(`contract creator address: ${address2}`)
console.log(`contract creator address2 for amm: ${address2}`)

// Create custom cosmos interchain client
queryClient = await jsd.ClientFactory.createRPCQueryClient({
Expand Down
15 changes: 4 additions & 11 deletions configs/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
name: starship-devnet
version: 0.2.14
version: 0.2.18

chains:
- id: hyperweb
name: custom
- id: hyperweb-1
name: hyperweb
numValidators: 1
image: ghcr.io/cosmology-tech/jsd:0.1.1
home: /root/.jsd
binary: jsdd
prefix: hyper
denom: uhyper
coins: 100000000000000uhyper,100000000000000uweb,100000000000000uatom,100000000000000uusdc
hdPath: m/44'/118'/0'/0/0
coinType: 118
repo: https://github.com/cosmology-tech/jsd
coins: 100000000000000uhyper,100000000000000uhypweb,100000000000000uatom,100000000000000uusdc
ports:
rest: 1317
rpc: 26657
Expand Down
15 changes: 4 additions & 11 deletions configs/local.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
name: starship-devnet
version: 0.2.14
version: 0.2.18

chains:
- id: hyperweb
name: custom
- id: hyperweb-1
name: hyperweb
numValidators: 1
image: ghcr.io/cosmology-tech/jsd:0.1.1
home: /root/.jsd
binary: jsdd
prefix: hyper
denom: uhyper
coins: 100000000000000uhyper,100000000000000uweb,100000000000000uatom,100000000000000uusdc
hdPath: m/44'/118'/0'/0/0
coinType: 118
repo: https://github.com/cosmology-tech/jsd
coins: 100000000000000uhyper,100000000000000uhypweb,100000000000000uatom,100000000000000uusdc
ports:
rest: 1317
rpc: 26657
Expand Down
Loading