1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub const DEFAULT_FILE_EXTENSION: &str = "sw";
pub const LANGUAGE_NAME: &str = "Sway";
pub const VM_WORD_SIZE: u64 = 8;
pub const INVALID_NAMES: &[&str] = &["storage"];
pub const CONTRACT_CALL_GAS_PARAMETER_NAME: &str = "gas";
pub const CONTRACT_CALL_COINS_PARAMETER_NAME: &str = "coins";
pub const CONTRACT_CALL_COINS_PARAMETER_DEFAULT_VALUE: u64 = 0;
pub const CONTRACT_CALL_ASSET_ID_PARAMETER_NAME: &str = "asset_id";
pub const CONTRACT_CALL_ASSET_ID_PARAMETER_DEFAULT_VALUE: [u8; 32] = [0; 32];