-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathmod.rs
47 lines (46 loc) · 918 Bytes
/
mod.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
// Copyright © Aptos Foundation
// SPDX-License-Identifier: Apache-2.0
mod access_path_test;
mod account;
mod aggregator;
mod aggregator_v2;
mod attributes;
mod chain_id;
mod code_publishing;
mod common;
mod constructor_args;
mod error_map;
mod fee_payer;
mod fungible_asset;
mod gas;
mod generate_upgrade_script;
mod governance_updates;
mod infinite_loop;
mod init_module;
mod lazy_natives;
mod max_loop_depth;
mod memory_quota;
mod metadata;
mod mint_nft;
mod missing_gas_parameter;
mod module_event;
mod new_integer_types;
mod nft_dao;
mod offer_rotation_capability;
mod offer_signer_capability;
mod per_category_gas_limits;
mod resource_groups;
mod rotate_auth_key;
mod scripts;
mod simple_defi;
mod smart_data_structures;
mod stake;
mod state_metadata;
mod storage_refund;
mod string_args;
mod token_event_store;
mod token_objects;
mod transaction_fee;
mod type_too_large;
mod vector_numeric_address;
mod vote;