anvil_zksync_api_decl/namespaces/
anvil.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
use anvil_zksync_types::api::{DetailedTransaction, ResetRequest};
use anvil_zksync_types::Numeric;
use jsonrpsee::core::RpcResult;
use jsonrpsee::proc_macros::rpc;
use zksync_types::api::Block;
use zksync_types::web3::Bytes;
use zksync_types::{Address, H256, U256, U64};

#[rpc(server, namespace = "anvil")]
pub trait AnvilNamespace {
    /// Create a buffer that represents all state on the chain, which can be loaded to separate
    /// process by calling `anvil_loadState`.
    ///
    /// # Arguments
    ///
    /// * `preserve_historical_states` - Whether to preserve historical states
    ///
    /// # Returns
    /// Buffer representing the chain state.
    #[method(name = "dumpState", aliases = ["hardhat_dumpState"])]
    async fn dump_state(&self, preserve_historical_states: Option<bool>) -> RpcResult<Bytes>;

    /// Append chain state buffer to current chain. Will overwrite any conflicting addresses or
    /// storage.
    ///
    /// # Arguments
    ///
    /// * `bytes` - Buffer containing the chain state
    ///
    /// # Returns
    /// `true` if a snapshot was reverted, otherwise `false`.
    #[method(name = "loadState", aliases = ["hardhat_loadState"])]
    async fn load_state(&self, bytes: Bytes) -> RpcResult<bool>;

    /// Mines a single block in the same way as `evm_mine` but returns extra fields.
    ///
    /// # Returns
    /// Freshly mined block's representation along with extra fields.
    #[method(name = "mine_detailed", aliases = ["evm_mine_detailed"])]
    async fn mine_detailed(&self) -> RpcResult<Block<DetailedTransaction>>;

    /// Sets the fork RPC url. Assumes the underlying chain is the same as before.
    ///
    /// # Arguments
    ///
    /// * `url` - Fork's new URL
    #[method(name = "setRpcUrl")]
    async fn set_rpc_url(&self, url: String) -> RpcResult<()>;

    /// Sets the base fee of the next block.
    ///
    /// # Arguments
    ///
    /// * `base_fee` - Value to be set as base fee for the next block
    #[method(name = "setNextBlockBaseFeePerGas", aliases = ["hardhat_setNextBlockBaseFeePerGas"])]
    async fn set_next_block_base_fee_per_gas(&self, base_fee: U256) -> RpcResult<()>;

    /// Removes a transaction from the pool.
    ///
    /// # Arguments
    ///
    /// * `hash` - Hash of the transaction to be removed from the pool
    ///
    /// # Returns
    /// `Some(hash)` if transaction was in the pool before being removed, `None` otherwise
    #[method(name = "dropTransaction", aliases = ["hardhat_dropTransaction"])]
    async fn drop_transaction(&self, hash: H256) -> RpcResult<Option<H256>>;

    /// Remove all transactions from the pool.
    #[method(name = "dropAllTransactions", aliases = ["hardhat_dropAllTransactions"])]
    async fn drop_all_transactions(&self) -> RpcResult<()>;

    /// Remove all transactions from the pool by sender address.
    ///
    /// # Arguments
    ///
    /// * `address` - Sender which transactions should be removed from the pool
    #[method(name = "removePoolTransactions")]
    async fn remove_pool_transactions(&self, address: Address) -> RpcResult<()>;

    /// Gets node's auto mining status.
    ///
    /// # Returns
    /// `true` if auto mining is enabled, `false` otherwise
    #[method(name = "getAutomine", aliases = ["hardhat_getAutomine"])]
    async fn get_auto_mine(&self) -> RpcResult<bool>;

    /// Enables or disables, based on the single boolean argument, the automatic mining of new
    /// blocks with each new transaction submitted to the network.
    ///
    /// # Arguments
    ///
    /// * `enable` - if `true` automatic mining will be enabled, disabled otherwise
    #[method(name = "setAutomine", aliases = ["evm_setAutomine"])]
    async fn set_auto_mine(&self, enable: bool) -> RpcResult<()>;

    /// Sets the mining behavior to interval with the given interval (seconds).
    ///
    /// # Arguments
    ///
    /// * `seconds` - Frequency of automatic block production (in seconds)
    #[method(name = "setIntervalMining", aliases = ["evm_setIntervalMining"])]
    async fn set_interval_mining(&self, seconds: u64) -> RpcResult<()>;

    /// Sets the block timestamp interval. All future blocks' timestamps will
    /// have the provided amount of seconds in-between of them. Does not affect
    /// the block production interval.
    ///
    /// # Arguments
    ///
    /// * `seconds` - The interval between two consecutive blocks (in seconds)
    #[method(name = "setBlockTimestampInterval")]
    async fn set_block_timestamp_interval(&self, seconds: u64) -> RpcResult<()>;

    /// Removes the block timestamp interval if it exists.
    ///
    /// # Returns
    /// `true` if an existing interval was removed, `false` otherwise
    #[method(name = "removeBlockTimestampInterval")]
    async fn remove_block_timestamp_interval(&self) -> RpcResult<bool>;

    /// Set the minimum gas price for the node. Unsupported for ZKsync as it is only relevant for
    /// pre-EIP1559 chains.
    ///
    /// # Arguments
    ///
    /// * `gas` - The minimum gas price to be set
    #[method(name = "setMinGasPrice", aliases = ["hardhat_setMinGasPrice"])]
    async fn set_min_gas_price(&self, gas: U256) -> RpcResult<()>;

    /// Enable or disable logging.
    ///
    /// # Arguments
    ///
    /// * `enable` - if `true` logging will be enabled, disabled otherwise
    #[method(name = "setLoggingEnabled", aliases = ["hardhat_setLoggingEnabled"])]
    async fn set_logging_enabled(&self, enable: bool) -> RpcResult<()>;

    /// Snapshot the state of the blockchain at the current block. Takes no parameters. Returns the id of the snapshot
    /// that was created. A snapshot can only be reverted once. After a successful `anvil_revert`, the same snapshot id cannot
    /// be used again. Consider creating a new snapshot after each `anvil_revert` if you need to revert to the same
    /// point multiple times.
    ///
    /// # Returns
    /// The `U64` identifier for this snapshot.
    #[method(name = "snapshot", aliases = ["evm_snapshot"])]
    async fn snapshot(&self) -> RpcResult<U64>;

    /// Revert the state of the blockchain to a previous snapshot. Takes a single parameter,
    /// which is the snapshot id to revert to. This deletes the given snapshot, as well as any snapshots
    /// taken after (e.g.: reverting to id 0x1 will delete snapshots with ids 0x1, 0x2, etc.)
    ///
    /// # Arguments
    ///
    /// * `id` - The snapshot id to revert
    ///
    /// # Returns
    /// `true` if a snapshot was reverted, otherwise `false`.
    #[method(name = "revert", aliases = ["evm_revert"])]
    async fn revert(&self, id: U64) -> RpcResult<bool>;

    /// Set the current timestamp for the node.
    /// Warning: This will allow you to move backwards in time, which may cause new blocks to appear to be
    /// mined before old blocks. This will result in an invalid state.
    ///
    /// # Arguments
    ///
    /// * `time` - The timestamp to set the time to
    ///
    /// # Returns
    /// The difference between the current timestamp and the new timestamp.
    #[method(name = "setTime", aliases = ["evm_setTime"])]
    async fn set_time(&self, timestamp: Numeric) -> RpcResult<i128>;

    /// Increase the current timestamp for the node
    ///
    /// # Arguments
    ///
    /// * `seconds` - The number of seconds to increase time by
    ///
    /// # Returns
    /// The applied time delta to the current timestamp in seconds.
    #[method(name = "increaseTime", aliases = ["evm_increaseTime"])]
    async fn increase_time(&self, seconds: Numeric) -> RpcResult<u64>;

    /// Set timestamp for the next block. The timestamp must be in future.
    ///
    /// # Arguments
    ///
    /// * `timestamp` - The timestamp to set the time to
    #[method(name = "setNextBlockTimestamp", aliases = ["evm_setNextBlockTimestamp"])]
    async fn set_next_block_timestamp(&self, timestamp: Numeric) -> RpcResult<()>;

    /// Sets auto impersonation status.
    ///
    /// # Arguments
    ///
    /// * `enabled` - `true` makes every account impersonated, `false` disables this behavior
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` representing the success of the operation.
    #[method(name = "autoImpersonateAccount", aliases = ["hardhat_autoImpersonateAccount"])]
    async fn auto_impersonate_account(&self, enabled: bool) -> RpcResult<()>;

    /// Sets the balance of the given address to the given balance.
    ///
    /// # Arguments
    ///
    /// * `address` - The `Address` whose balance will be edited
    /// * `balance` - The new balance to set for the given address, in wei
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "setBalance", aliases = ["hardhat_setBalance"])]
    async fn set_balance(&self, address: Address, balance: U256) -> RpcResult<bool>;

    /// Modifies an account's nonce by overwriting it.
    ///
    /// # Arguments
    ///
    /// * `address` - The `Address` whose nonce is to be changed
    /// * `nonce` - The new nonce
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "setNonce", aliases = ["hardhat_setNonce", "evm_setAccountNonce"])]
    async fn set_nonce(&self, address: Address, nonce: U256) -> RpcResult<bool>;

    /// Sometimes you may want to advance the latest block number of the network by a large number of blocks.
    /// One way to do this would be to call the evm_mine RPC method multiple times, but this is too slow if you want to mine thousands of blocks.
    /// The `anvil_mine` method can mine any number of blocks at once, in constant time. (It exhibits the same performance no matter how many blocks are mined.)
    ///
    /// # Arguments
    ///
    /// * `num_blocks` - The number of blocks to mine, defaults to 1
    /// * `interval` - The interval between the timestamps of each block, in seconds, and it also defaults to 1
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "mine", aliases = ["hardhat_mine"])]
    async fn anvil_mine(&self, num_blocks: Option<U64>, interval: Option<U64>) -> RpcResult<()>;

    /// Reset the state of the network back to a fresh forked state, or disable forking.
    ///
    /// # Arguments
    ///
    /// * `reset_spec` - The requested state, defaults to resetting the current network.
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "reset", aliases = ["hardhat_reset"])]
    async fn reset_network(&self, reset_spec: Option<ResetRequest>) -> RpcResult<bool>;

    /// anvil-zksync allows transactions impersonating specific account and contract addresses.
    /// To impersonate an account use this method, passing the address to impersonate as its parameter.
    /// After calling this method, any transactions with this sender will be executed without verification.
    /// Multiple addresses can be impersonated at once.
    ///
    /// # Arguments
    ///
    /// * `address` - The address to impersonate
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "impersonateAccount", aliases = ["hardhat_impersonateAccount"])]
    async fn impersonate_account(&self, address: Address) -> RpcResult<()>;

    /// Use this method to stop impersonating an account after having previously used `anvil_impersonateAccount`
    /// The method returns `true` if the account was being impersonated and `false` otherwise.
    ///
    /// # Arguments
    ///
    /// * `address` - The address to stop impersonating.
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "stopImpersonatingAccount", aliases = ["hardhat_stopImpersonatingAccount"])]
    async fn stop_impersonating_account(&self, address: Address) -> RpcResult<()>;

    /// Modifies the bytecode stored at an account's address.
    ///
    /// # Arguments
    ///
    /// * `address` - The address where the given code should be stored.
    /// * `code` - The code to be stored.
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "setCode", aliases = ["hardhat_setCode"])]
    async fn set_code(&self, address: Address, code: String) -> RpcResult<()>;

    /// Directly modifies the storage of a contract at a specified slot.
    ///
    /// # Arguments
    ///
    /// * `address` - The contract address whose storage is to be modified.
    /// * `slot` - The storage slot to modify.
    /// * `value` - The value to be set at the specified slot.
    ///
    /// # Returns
    ///
    /// A `BoxFuture` containing a `Result` with a `bool` representing the success of the operation.
    #[method(name = "setStorageAt", aliases = ["hardhat_setStorageAt"])]
    async fn set_storage_at(&self, address: Address, slot: U256, value: U256) -> RpcResult<bool>;

    /// Sets the chain id.
    ///
    /// # Arguments
    ///
    /// * `id` - The chain id to be set.
    #[method(name = "setChainId")]
    async fn set_chain_id(&self, id: u32) -> RpcResult<()>;
}