diff --git a/contracts/cw1-subkeys/helpers.ts b/contracts/cw1-subkeys/helpers.ts index 7e07e04b5..36e2fe9d5 100644 --- a/contracts/cw1-subkeys/helpers.ts +++ b/contracts/cw1-subkeys/helpers.ts @@ -346,10 +346,10 @@ const CW1 = (client: SigningCosmWasmClient): CW1Contract => { const upload = async (): Promise => { const meta = { - source: "https://github.com/CosmWasm/cosmwasm-plus/tree/v0.1.1/contracts/cw1-subkeys", + source: "https://github.com/CosmWasm/cosmwasm-plus/tree/v0.2.1/contracts/cw1-subkeys", builder: "cosmwasm/rust-optimizer:0.10.1" }; - const sourceUrl = "https://github.com/CosmWasm/cosmwasm-plus/releases/download/v0.1.1/cw1_subkeys.wasm"; + const sourceUrl = "https://github.com/CosmWasm/cosmwasm-plus/releases/download/v0.2.1/cw1_subkeys.wasm"; const wasm = await downloadWasm(sourceUrl); const result = await client.upload(wasm, meta); return result.codeId;