Skip to content

Commit 9a11755

Browse files
committed
update starship helm chart
1 parent 70d10a4 commit 9a11755

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
cli-version: 2.10.2
4242

4343
- name: Run E2E Tests
44-
run: yarn test
44+
run: yarn test --runInBand

__tests__/contract2.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('Contract 2: AMM contract test', () => {
1717
let wallet2, address2;
1818
let fee;
1919

20-
const denom2 = "uweb", uatom = "uatom", uusdc = "uusdc";
20+
const denom2 = "uhypweb", uatom = "uatom", uusdc = "uusdc";
2121

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

3838
// Initialize wallet2
3939
wallet2 = await DirectSecp256k1HdWallet.fromMnemonic(generateMnemonic(), {
4040
prefix: chainInfo.chain.bech32_prefix
4141
});
4242
address2 = (await wallet2.getAccounts())[0].address;
43-
console.log(`contract creator address: ${address2}`)
43+
console.log(`contract creator address2 for amm: ${address2}`)
4444

4545
// Create custom cosmos interchain client
4646
queryClient = await jsd.ClientFactory.createRPCQueryClient({

configs/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: starship-devnet
2-
version: 0.2.17
2+
version: 0.2.18
33

44
chains:
5-
- id: hyperweb
5+
- id: hyperweb-1
66
name: hyperweb
77
numValidators: 1
88
image: ghcr.io/cosmology-tech/jsd:0.1.1
9-
coins: 100000000000000uhyper,100000000000000uweb,100000000000000uatom,100000000000000uusdc
9+
coins: 100000000000000uhyper,100000000000000uhypweb,100000000000000uatom,100000000000000uusdc
1010
ports:
1111
rest: 1317
1212
rpc: 26657

configs/local.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: starship-devnet
2-
version: 0.2.17
2+
version: 0.2.18
33

44
chains:
5-
- id: hyperweb
5+
- id: hyperweb-1
66
name: hyperweb
77
numValidators: 1
88
image: ghcr.io/cosmology-tech/jsd:0.1.1
9-
coins: 100000000000000uhyper,100000000000000uweb,100000000000000uatom,100000000000000uusdc
9+
coins: 100000000000000uhyper,100000000000000uhypweb,100000000000000uatom,100000000000000uusdc
1010
ports:
1111
rest: 1317
1212
rpc: 26657

0 commit comments

Comments
 (0)