Appendix E - Most Common Types and Traits Required To Write Contracts

This appendix provides a reference for common types and traits used in contract development, along with their corresponding imports, paths, and usage examples.

ImportPathUsage
OptionTraitstd::option::OptionTraitOptionTrait<T> defines a set of methods required to manipulate optional value.
ResultTraitstd::result::ResultTraitResultTrait<T, E> Type for Starknet contract address, a value in the range [0, 2 ** 251).
ContractAddressstarknet::ContractAddressContractAddress is a type to represent the smart contract address
ContractAddressZeroablestarknet::contract_address::ContractAddressZeroableContractAddressZeroable is the implementation of the trait Zeroable for the ContractAddress type. It is required to check whether a value of t:ContractAddress is zero or not.
contract_address_conststarknet::contract_address_constThe contract_address_const! it's a function that allows instantiating constant contract address values.
Intotraits::Into;Into<T> is a trait used for conversion between types. If there is an implementation of Into<T,S> for the types T and S, you can convert T into S.
TryIntotraits::TryInto;TryInto<T> is a trait used for conversion between types.If there is an implementation of TryInto<T,S> for the types T and S, you can convert T into S.
get_caller_addressstarknet::get_caller_addressget_caller_address() is a function that returns the address of the caller of the contract. It can be used to identify the caller of a contract function.
get_contract_addressstarknet::info::get_contract_addressget_contract_address() is a function that returns the address of the current contract. It can be used to obtain the address of the contract being executed.

This is not an exhaustive list, but it covers some of the commonly used types and traits in contract development. For more details, refer to the official documentation and explore the available libraries and frameworks.