From 9e7afee3fce4c2a3758d0c04d90a17fa4d24dcb0 Mon Sep 17 00:00:00 2001 From: jhernandezb Date: Tue, 5 Sep 2023 19:02:48 -0600 Subject: [PATCH 1/2] update contract execution --- contracts/sg721/contract.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/sg721/contract.ts b/contracts/sg721/contract.ts index 60824a1..8c62c2b 100644 --- a/contracts/sg721/contract.ts +++ b/contracts/sg721/contract.ts @@ -627,7 +627,7 @@ export const SG721 = (client: SigningCosmWasmClient, txSigner: string): SG721Con const msg = { update_token_metadata: { token_id: i.toString(), - token_uri: `${baseURI}/${i}${jsonExtensions ? '.json' : ''}`, + token_uri: `${baseURI}`, }, } const executeContractMsg: MsgExecuteContractEncodeObject = { From 1d46945df47e772e07f513420c091fc6ea3c7f9b Mon Sep 17 00:00:00 2001 From: jhernandezb Date: Tue, 5 Sep 2023 19:03:08 -0600 Subject: [PATCH 2/2] update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d331d18..722f41c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stargaze-studio", - "version": "0.7.6", + "version": "0.7.7", "workspaces": [ "packages/*" ],