Skip to content

Commit

Permalink
chore: bump HELM_CHART_VERSION to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jul 15, 2024
1 parent 543aab7 commit 811e530
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multichain-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# uses ghcr.io/agoric/agoric-sdk:dev image (latest master)
values: ./agoric-sdk/multichain-testing/config.yaml
port-forward: true
version: 0.2.2
version: 0.2.8
timeout: 30m
namespace: agoric-multichain

Expand Down
35 changes: 0 additions & 35 deletions multichain-testing/patches/starshipjs+2.0.0.patch

This file was deleted.

15 changes: 0 additions & 15 deletions multichain-testing/scripts/fetch-starship-chain-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,6 @@ const ibc: {
data: IBCInfo[];
} = await fetch(`${BASE_URL}ibc`).then(r => r.json());

// UNTIL https://github.com/cosmology-tech/starship/issues/494
const backmap = {
agoriclocal: 'agoric',
osmosislocal: 'osmosis',
gaialocal: 'cosmoshub',
};
for (const ibcInfo of ibc.data) {
ibcInfo.chain_1.chain_name = backmap[ibcInfo.chain_1.chain_name];
ibcInfo.chain_2.chain_name = backmap[ibcInfo.chain_2.chain_name];
for (const c of ibcInfo.channels) {
// @ts-expect-error XXX bad typedef
c.tags.preferred = c.tags.perferred;
}
}

const chainInfo = await convertChainInfo({
chains,
ibcData: ibc.data,
Expand Down
2 changes: 1 addition & 1 deletion multichain-testing/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NAMESPACE=""
HELM_REPO="starship"
HELM_CHART="starship/devnet"
HELM_REPO_URL="https://cosmology-tech.github.io/starship/"
HELM_CHART_VERSION="0.2.2"
HELM_CHART_VERSION="0.2.8"
HELM_NAME="agoric-multichain-testing"

# check_helm function verifies the helm binary is installed
Expand Down
7 changes: 0 additions & 7 deletions multichain-testing/test/stake-ica.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,6 @@ const stakeScenario = test.macro(async (t, scenario: StakeIcaScenario) => {
`address for ${scenario.chain} is valid`,
);

if (scenario.chain === 'cosmoshub') {
// see https://github.com/cosmos/cosmjs/pull/1593 for upstream fix
t.pass(
`SKIP ${scenario.chain}. @cosmjs/faucet does not support ICA address length.`,
);
return;
}
const { creditFromFaucet, getRestEndpoint } = useChain(scenario.chain);
const queryClient = makeQueryClient(getRestEndpoint());

Expand Down

0 comments on commit 811e530

Please sign in to comment.