Skip to content

Commit

Permalink
Merge pull request #85 from CosmWasm/update-helpers-references
Browse files Browse the repository at this point in the history
Update helpers source tags and builder info
  • Loading branch information
ethanfrey authored Sep 11, 2020
2 parents b8c9f55 + 1f97895 commit 1d30838
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/cw1-subkeys/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ const CW1 = (client: SigningCosmWasmClient): CW1Contract => {
const upload = async (): Promise<number> => {
const meta = {
source: "https://github.com/CosmWasm/cosmwasm-plus/tree/v0.2.1/contracts/cw1-subkeys",
builder: "cosmwasm/rust-optimizer:0.10.1"
builder: "cosmwasm/rust-optimizer:0.10.3"
};
const sourceUrl = "https://github.com/CosmWasm/cosmwasm-plus/releases/download/v0.2.1/cw1_subkeys.wasm";
const wasm = await downloadWasm(sourceUrl);
Expand Down
6 changes: 3 additions & 3 deletions contracts/cw20-base/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,10 @@ const CW20 = (client: SigningCosmWasmClient): CW20Contract => {

const upload = async (): Promise<number> => {
const meta = {
source: "https://github.com/CosmWasm/cosmwasm-plus/tree/v0.2.0/contracts/cw20-base",
builder: "cosmwasm/workspace-optimizer:0.10.2"
source: "https://github.com/CosmWasm/cosmwasm-plus/tree/v0.2.1/contracts/cw20-base",
builder: "cosmwasm/workspace-optimizer:0.10.3"
};
const sourceUrl = "https://github.com/CosmWasm/cosmwasm-plus/releases/download/v0.2.0/cw20_base.wasm";
const sourceUrl = "https://github.com/CosmWasm/cosmwasm-plus/releases/download/v0.2.1/cw20_base.wasm";
const wasm = await downloadWasm(sourceUrl);
const result = await client.upload(wasm, meta);
return result.codeId;
Expand Down

0 comments on commit 1d30838

Please sign in to comment.