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
pub mod account;
pub mod signature;
use move_core_types::{account_address::AccountAddress, identifier::Identifier};
use move_vm_runtime::native_functions::{NativeFunction, NativeFunctionTable};
pub fn all_natives(diem_framework_addr: AccountAddress) -> NativeFunctionTable {
const NATIVES: &[(&str, &str, NativeFunction)] = &[
(
"DiemAccount",
"create_signer",
account::native_create_signer,
),
(
"DiemAccount",
"destroy_signer",
account::native_destroy_signer,
),
(
"Signature",
"ed25519_validate_pubkey",
signature::native_ed25519_publickey_validation,
),
(
"Signature",
"ed25519_verify",
signature::native_ed25519_signature_verification,
),
];
NATIVES
.iter()
.cloned()
.map(|(module_name, func_name, func)| {
(
diem_framework_addr,
Identifier::new(module_name).unwrap(),
Identifier::new(func_name).unwrap(),
func,
)
})
.collect()
}