From 86b51fb1bc33208ab7ef51a5fc31ccb7060c0a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arda=20Nak=C4=B1s=CC=A7c=CC=A7=C4=B1?= Date: Wed, 17 Nov 2021 17:18:02 +0300 Subject: [PATCH] Update wasm binary version to 0.10.2 from 0.9.1 --- contracts/cw1-subkeys/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)