We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
anvil_
We need to implement three time-related API endpoints:
#[rpc(name = "anvil_setTime")] fn set_time(&self, timestamp: Numeric) -> RpcResult<i128>; #[rpc(name = "anvil_increaseTime")] fn increase_time(&self, seconds: Numeric) -> RpcResult<u64>; #[rpc(name = "anvil_setNextBlockTimestamp")] fn set_next_block_timestamp(&self, timestamp: Numeric) -> RpcResult<()>;
The implementations should be almost identical to the matching evm_ ones.
evm_
The text was updated successfully, but these errors were encountered:
anvil_setTime
anvil_increaseTime
anvil_setNextBlockTimestamp
itegulov
Successfully merging a pull request may close this issue.
We need to implement three time-related API endpoints:
The implementations should be almost identical to the matching
evm_
ones.The text was updated successfully, but these errors were encountered: