Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

AccountCreated

@notice Emitted when a new tokenbound account is deployed/created @param account_address the deployed contract address of the tokenbound acccount @param token_contract the contract address of the NFT @param token_id the ID of the NFT

Fully qualified path: token_bound_accounts::registry::registry::Registry::AccountCreated

[derive(Drop, starknet::Event)]
pub struct AccountCreated {
    pub account_address: ContractAddress,
    pub token_contract: ContractAddress,
    pub token_id: u256,
}

Members

account_address

Fully qualified path: token_bound_accounts::registry::registry::Registry::AccountCreated::account_address

pub account_address: ContractAddress

token_contract

Fully qualified path: token_bound_accounts::registry::registry::Registry::AccountCreated::token_contract

pub token_contract: ContractAddress

token_id

Fully qualified path: token_bound_accounts::registry::registry::Registry::AccountCreated::token_id

pub token_id: u256