Temporary change of hardcoded base minter creation fee
This commit is contained in:
@@ -91,7 +91,7 @@ export const baseFactory = (client: SigningCosmWasmClient, txSigner: string): Ba
|
||||
sender: txSigner,
|
||||
contract: contractAddress,
|
||||
msg,
|
||||
funds: [coin(updatable ? '3000000000' : '250000000', 'ustars')],
|
||||
funds: [coin(updatable ? '3000000000' : '1000000000', 'ustars')],
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user