Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
ChefJerry committed Jan 8, 2025
1 parent e7f13c1 commit 3dafc44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/src/views/Idos/hooks/ido/useIDOCurrencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ export const useIDOAddresses = () => {
address: idoContract.address,
abi: idoContract.abi,
functionName: 'addresses',
args: [0],
args: [0n],
},
{
address: idoContract.address,
abi: idoContract.abi,
functionName: 'addresses',
args: [1],
args: [1n],
},
{
address: idoContract.address,
abi: idoContract.abi,
functionName: 'addresses',
args: [2],
args: [2n],
},
],
})
Expand Down

0 comments on commit 3dafc44

Please sign in to comment.