Skip to content

Commit

Permalink
add cw721_metadata_onchain_v0.19.0.wasm for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taitruong committed Aug 12, 2024
1 parent a18f866 commit 088d43b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file not shown.
3 changes: 2 additions & 1 deletion ts-relayer-tests/src/ics721.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface TestContext {

const test = anyTest as TestFn<TestContext>;

const WASM_FILE_CW721 = "./internal/cw721_base_v0.18.0.wasm";
const WASM_FILE_CW721 = "./internal/cw721_metadata_onchain_v0.19.0.wasm";
const WASM_FILE_CW721_INCOMING_PROXY = "./internal/cw721_incoming_proxy.wasm";
const WASM_FILE_CW721_OUTGOING_PROXY =
"./internal/cw721_outgoing_proxy_rate_limit.wasm";
Expand Down Expand Up @@ -97,6 +97,7 @@ const standardSetup = async (t: ExecutionContext<TestContext>) => {
instantiateMsg: {
name: "ark",
symbol: "ark",
creator: osmoClient.senderAddress,
minter: osmoClient.senderAddress,
},
},
Expand Down
2 changes: 1 addition & 1 deletion ts-relayer-tests/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export async function uploadAndInstantiate(
for (const name in contracts) {
const contractMsg = contracts[name];
console.debug(`storing ${name} contract from ${contractMsg.path}`);
const wasm = await readFileSync(contractMsg.path);
const wasm = readFileSync(contractMsg.path);
const receipt = await client.sign.upload(
client.senderAddress,
wasm,
Expand Down

0 comments on commit 088d43b

Please sign in to comment.