Skip to content

Commit

Permalink
chore(Near): fix fee
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Dec 7, 2024
1 parent 82f3e0c commit 39bfc10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/handlers/near/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ export async function nearHandler({
}),
},
gas: 300000000000000n,
attachedDeposit: BigInt(claimData.fee),
attachedDeposit:
BigInt(claimData.fee) + BigInt(parseNearAmount("3") ?? 0),
});
return { hash: () => claimed.transaction.hash, ret: claimed };
},
Expand Down

0 comments on commit 39bfc10

Please sign in to comment.