Skip to content

Commit

Permalink
feat: Update useClaimTokens to transfer 100,000 tokens instead of 1,000
Browse files Browse the repository at this point in the history
  • Loading branch information
deblanco committed Aug 5, 2024
1 parent 4cd0f48 commit ef1591a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Hooks/useClaimTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const contract = getContract({

export const useClaimTokens = () => {
const claim = async (to: Address) => {
const call = await contract.write.transfer([to, BigInt(1000 * 1e18)], {
const call = await contract.write.transfer([to, BigInt(100_000 * 1e18)], {
gasPrice: 0n,
});
return waitForTransactionReceipt(account, {
Expand Down

0 comments on commit ef1591a

Please sign in to comment.