From 3511a57eb96b52bdaebd7939a5537db521ceb03a Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Tue, 11 Jun 2024 20:51:55 +0300 Subject: [PATCH] Use hardcoded fees for editing badges --- contracts/badgeHub/contract.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/badgeHub/contract.ts b/contracts/badgeHub/contract.ts index 3e497d8..7f5c1c3 100644 --- a/contracts/badgeHub/contract.ts +++ b/contracts/badgeHub/contract.ts @@ -342,7 +342,8 @@ export const badgeHub = (client: SigningCosmWasmClient, txSigner: string): Badge }, 'auto', '', - editFee ? [coin(editFee, 'ustars')] : [], + [coin(200000000, 'ustars')], + // editFee ? [coin(editFee, 'ustars')] : [], ) return res.transactionHash