diff --git a/contracts/cw1-subkeys/helpers.ts b/contracts/cw1-subkeys/helpers.ts index b765e1ece..15429aba8 100644 --- a/contracts/cw1-subkeys/helpers.ts +++ b/contracts/cw1-subkeys/helpers.ts @@ -278,7 +278,7 @@ const CW1 = (client: SigningCosmWasmClient, options: Options): CW1Contract => { } const upload = async (senderAddress: string, options: Options): Promise => { - const sourceUrl = "https://github.com/CosmWasm/cw-plus/releases/download/v0.9.1/cw1_subkeys.wasm" + const sourceUrl = "https://github.com/CosmWasm/cw-plus/releases/download/v0.10.2/cw1_subkeys.wasm" const wasm = await downloadWasm(sourceUrl) const fee = calculateFee(options.fees.upload, options.gasPrice) const result = await client.upload(senderAddress, wasm, fee)