Temporary change of hardcoded base minter creation fee

This commit is contained in:
Serkan Reis
2023-03-31 14:47:26 +03:00
parent e96a7e12fe
commit a1db0f0572
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -249,7 +249,7 @@ export const baseMinter = (client: SigningCosmWasmClient, txSigner: string): Bas
label: string,
): Promise<InstantiateResponse> => {
const result = await client.instantiate(senderAddress, codeId, initMsg, label, 'auto', {
funds: [coin('250000000', 'ustars')],
funds: [coin('1000000000', 'ustars')],
})
return {
contractAddress: result.contractAddress,