From 2d5bfa10daf39962635e7f37124f004a18546fba Mon Sep 17 00:00:00 2001 From: ebadiere Date: Thu, 12 Sep 2024 08:38:11 -0600 Subject: [PATCH] feat: Bumped up exchanged value as the HTS token create will take the fee from the value instead of the gas. Signed-off-by: ebadiere --- packages/server/tests/acceptance/rpc_batch2.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/tests/acceptance/rpc_batch2.spec.ts b/packages/server/tests/acceptance/rpc_batch2.spec.ts index ecf4367f3d..b04104fc98 100644 --- a/packages/server/tests/acceptance/rpc_batch2.spec.ts +++ b/packages/server/tests/acceptance/rpc_batch2.spec.ts @@ -726,7 +726,7 @@ describe('@api-batch-2 RPC Server Acceptance Tests', function () { async function createNftHTSToken(account) { const mainContract = new ethers.Contract(mainContractAddress, TokenCreateJson.abi, accounts[0].wallet); const tx = await mainContract.createNonFungibleTokenPublic(account.wallet.address, { - value: BigInt('10000000000000000000'), + value: BigInt('30000000000000000000'), ...Helper.GAS.LIMIT_5_000_000, }); const { tokenAddress } = (await tx.wait()).logs.filter(