Skip to content

Commit

Permalink
feat: Bumped up exchanged value as the HTS token create will take the
Browse files Browse the repository at this point in the history
fee from the value instead of the gas.

Signed-off-by: ebadiere <[email protected]>
  • Loading branch information
ebadiere committed Sep 12, 2024
1 parent 8245f51 commit 2d5bfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/tests/acceptance/rpc_batch2.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 2d5bfa1

Please sign in to comment.