I am trying to deploy a contract on bsc testnet before bsc main net and the contract has a bunch of paramaters that i specify when deploying the contract on Remix.
What i am unsure of is what to put for the _number and _hash before deploying.
Can anyone provide insight please. From the code below i assume the _number relates to the block number on bsc?
The contract contains
constructor(string memory __name, string memory __symbol, address _owner, uint8 __decimal, uint256 _totalSup, uint256 _tax, uint256 _number, bytes32 _hash)
ERC20(__name, __symbol, _owner, __decimal, _totalSup) ERC20Capped(_number) {
require(_number > block.number);
require(keccak256(abi.encodePacked(_number)) == _hash);
tax = _tax;
_grantRole(DEFAULT_ADMIN_ROLE, _owner);
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());}