Urgent question - 100e18 token transfer works but 1,000e18 doesn't

hello

in my web3 website/minting page, (solidity based blockchain but not ethereum) originally a mint requires 100 tokens (i.e. 100 E18 wei) but when after changing it to require 1,000 tokens, (i.e. 1000 E18 wei),

upon minting, the metamask transaction seems to either freeze or default back to 100 tokens

is there a 'wei limit' for each transaction?

solved the problem lol

issue is with the minting page as javascript doesn't work with numbers beyond certain amount

solution:

String(1000000000000000000000n) to convert it into a string from a BigNumber

2 Likes