Module sui::deny_list
Defines the DenyList type. The DenyList shared object is used to restrict access to instances of certain core types from being used as inputs by specified addresses in the deny list.
- Struct
DenyList
- Struct
ConfigWriteCap
- Struct
ConfigKey
- Struct
AddressKey
- Struct
GlobalPauseKey
- Struct
PerTypeConfigCreated
- Struct
PerTypeList
- Constants
- Function
v2_add
- Function
v2_remove
- Function
v2_contains_current_epoch
- Function
v2_contains_next_epoch
- Function
v2_enable_global_pause
- Function
v2_disable_global_pause
- Function
v2_is_global_pause_enabled_current_epoch
- Function
v2_is_global_pause_enabled_next_epoch
- Function
migrate_v1_to_v2
- Function
add_per_type_config
- Function
borrow_per_type_config_mut
- Function
borrow_per_type_config
- Function
per_type_exists
- Macro function
per_type_config_entry
- Function
v1_add
- Function
v1_per_type_list_add
- Function
v1_remove
- Function
v1_per_type_list_remove
- Function
v1_contains
- Function
v1_per_type_list_contains
- Function
create
- Function
per_type_list
use std::ascii;
use std::bcs;
use std::option;
use std::string;
use std::vector;
use sui::address;
use sui::bag;
use sui::config;
use sui::dynamic_field;
use sui::dynamic_object_field;
use sui::event;
use sui::hex;
use sui::object;
use sui::table;
use sui::transfer;
use sui::tx_context;
use sui::vec_set;
Struct DenyList
A shared object that stores the addresses that are blocked for a given core type.
public struct DenyList has key
Click to open
Fields
- id: sui::object::UID
- lists: sui::bag::Bag
- The individual deny lists.
Struct ConfigWriteCap
The capability used to write to the deny list config. Ensures that the Configs for the DenyList are modified only by this module.
public struct ConfigWriteCap has drop
Click to open
Fields
Struct ConfigKey
The dynamic object field key used to store the Config for a given type, essentially a (per_type_index, per_type_key) pair.
public struct ConfigKey has copy, drop, store
Click to open
Fields
- per_type_index: u64
- per_type_key: vector<u8>
Struct AddressKey
The setting key used to store the deny list for a given address in the Config.
public struct AddressKey has copy, drop, store
Click to open
Fields
- 0: address