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
// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
use TokenStream;
use ItemFn;
/// Generate query for the latest state for functions that
/// query something at specified block.
///
/// # Note
///
/// - the docs must be end with `at specified block.`
/// - the function name must be end with `_at`.
/// - the last argument must be `Option<H256>`.
///
/// # Example
///
/// ```ignore
/// /// Imdocs at specified block.
/// #[at_block]
/// pub fn query_at(addr: Address, block_hash: Option<H256>) -> R {
/// // ...
/// }
/// ```
///
/// will generate functions
///
/// ```ignore
/// /// Imdocs at specified block.
/// pub fn query_at(addr: Address, block_hash: impl Into<Option<H256>>) -> R {
/// // ...
/// }
///
/// /// Imdocs.
/// pub fn query(addr: Address) -> R {
/// query_at(addr, None)
/// }
/// ```