Skip to content

Commit

Permalink
Merge branch 'main' into anmol/fix-contract-state-interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 authored Oct 15, 2024
2 parents 0786add + 90fe737 commit a2660ff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 25 deletions.
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

0 comments on commit a2660ff

Please sign in to comment.