Error: invalid BigNumber string

I want to input the following values to this function

function rebase(uint256 epoch, int256 supplyDelta)
  • epoch (5 minutes later)
  • supplyDelta -0.000000000000001

I tried doing so in remix but got an error. How to resolve this issue?

errored: Error encoding arguments: Error: invalid BigNumber string (argument="value", value="-0.000000000000001", code=INVALID_ARGUMENT, version=bignumber/5.4.1)

Hello @Maham_Zaidi

This is not a valid integer. It looks like you are trying to pass a floating number. Floating number do not (natively) exist in solidity / on the evm.