0xa5::trusted_chains
TrustedChain
TrustedChains
new
is_trusted
add
remove
use 0x1::ascii;
use 0x2::bag;
use 0x2::tx_context;
use 0xa5::events;
TrustedChain
struct TrustedChain has drop, store
dummy_field: bool
TrustedChains
The trusted chains where messages can be sent or received from.
struct TrustedChains has store
#[error]
const EAlreadyTrusted: vector<u8> = b"chain is already trusted";
#[error]
const EEmptyChainName: vector<u8> = b"empty trusted chain name is unsupported";
#[error]
const ENotTrusted: vector<u8> = b"chain is not trusted";
new
Create a new interchain address tracker.
public(friend) fun new(ctx: &mut tx_context::TxContext): trusted_chains::TrustedChains
public(package) fun new(ctx: &mut TxContext): TrustedChains {
TrustedChains {
trusted_chains: bag::new(ctx),
}
}
is_trusted
Check if the given address is trusted for the given chain.
public(friend) fun is_trusted(self: &trusted_chains::TrustedChains, chain_name: ascii::String): bool
public(package) fun is_trusted(self: &TrustedChains, chain_name: String): bool {
self.trusted_chains.contains(chain_name)
}
add
Set the trusted address for a chain or adds it if it doesn’t exist.
public(friend) fun add(self: &mut trusted_chains::TrustedChains, chain_name: ascii::String)
public(package) fun add(self: &mut TrustedChains, chain_name: String) {
assert!(chain_name.length() > 0, EEmptyChainName);
assert!(!self.trusted_chains.contains(chain_name), EAlreadyTrusted);
self.trusted_chains.add(chain_name, TrustedChain {});
events::trusted_chain_added(chain_name);
}
remove
public(friend) fun remove(self: &mut trusted_chains::TrustedChains, chain_name: ascii::String)
public(package) fun remove(self: &mut TrustedChains, chain_name: String) {
assert!(chain_name.length() > 0, EEmptyChainName);
assert!(self.trusted_chains.contains(chain_name), ENotTrusted);
self.trusted_chains.remove<String, TrustedChain>(chain_name);
events::trusted_chain_removed(chain_name);
}