ERC721
Reference of interfaces, presets, and utilities related to ERC721 contracts.
For an overview of ERC721, read our ERC721 guide. |
Core
IERC721
use openzeppelin::token::erc721::interface::IERC721;
Interface of the IERC721 standard as defined in EIP721.
0x33eb2f84c309543403fd69f0d0f363781ef06ef6faeb0131ff16ea3175bd943
safe_transfer_from(from: ContractAddress, to: ContractAddress, token_id: u256, data: Span<felt252>)
external
Transfer ownership of token_id
from from
to to
, checking first that to
is aware of the ERC721 protocol to prevent tokens being locked forever.
For information regarding how contracts communicate their awareness of the ERC721 protocol, see Receiving Tokens.
Emits a Transfer event.
transfer_from(from: ContractAddress, to: ContractAddress, token_id: u256)
external
Transfer ownership of token_id
from from
to to
.
Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 transfers or else they may be permanently lost. Usage of IERC721::safe_transfer_from prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability.
Emits a Transfer event.
approve(to: ContractAddress, token_id: u256)
external
Change or reaffirm the approved address for an NFT.
Emits an Approval event.
set_approval_for_all(operator: ContractAddress, approved: bool)
external
Enable or disable approval for operator
to manage all of the caller’s assets.
Emits an ApprovalForAll event.
is_approved_for_all(owner: ContractAddress, operator: ContractAddress) -> bool
external
Query if operator
is an authorized operator for owner
.
Approval(owner: ContractAddress, approved: ContractAddress, token_id: u256)
event
Emitted when owner
enables approved
to manage the token_id
token.
IERC721Metadata
use openzeppelin::token::erc721::interface::IERC721Metadata;
Interface for the optional metadata functions in EIP721.
0xabbcd595a567dce909050a1038e055daccb3c42af06f0add544fa90ee91f25
IERC721Enumerable
Interface for the optional enumerable functions in EIP721.
0x16bc0f502eeaf65ce0b3acb5eea656e2f26979ce6750e8502a82f377e538c87
token_by_index(index: u256) -> u256
external
Returns a token id at a given index
of all the tokens stored by the contract.
Use along with IERC721Enumerable::total_supply to enumerate all tokens.
token_of_owner_by_index(owner: ContractAddress, index: u256) -> u256
external
Returns the token id owned by owner
at a given index
of its token list.
Use along with IERC721::balance_of to enumerate all of owner
's tokens.
ERC721Component
use openzeppelin::token::erc721::ERC721Component;
ERC721 component implementing IERC721 and IERC721Metadata.
Implementing SRC5Component is a requirement for this component to be implemented. |
See Hooks to understand how are hooks used. |
Hooks
Hooks are functions which implementations can extend the functionality of the component source code. Every contract using ERC721Component is expected to provide an implementation of the ERC721HooksTrait. For basic token contracts, an empty implementation with no logic must be provided.
You can use openzeppelin::token::erc721::ERC721HooksEmptyImpl which is already available as part of the library
for this purpose.
|
before_update(ref self: ContractState, to: ContractAddress, token_id: u256, auth: ContractAddress)
hook
Function executed at the beginning of the update function prior to any other logic.
after_update(ref self: ContractState, to: ContractAddress, token_id: u256, auth: ContractAddress)
hook
Function executed at the end of the update function.
balance_of(self: @ContractState, account: ContractAddress) → u256
external
See IERC721::balance_of.
owner_of(self: @ContractState, token_id: u256) → ContractAddress
external
See IERC721::owner_of.
Requirements:
-
token_id
exists.
safe_transfer_from(ref self: ContractState, from: ContractAddress, to: ContractAddress, token_id: u256, data: Span<felt252>)
external
Requirements:
-
Caller is either approved or the
token_id
owner. -
to
is not the zero address. -
from
is not the zero address. -
token_id
exists. -
to
is either an account contract or supports the IERC721Receiver interface.
transfer_from(ref self: ContractState, from: ContractAddress, to: ContractAddress, token_id: u256)
external
Requirements:
-
Caller either approved or the
token_id
owner. -
to
is not the zero address. -
from
is not the zero address. -
token_id
exists.
approve(ref self: ContractState, to: ContractAddress, token_id: u256)
external
See IERC721::approve.
Requirements:
-
The caller is either an approved operator or the
token_id
owner. -
to
cannot be the token owner or the zero address. -
token_id
exists.
set_approval_for_all(ref self: ContractState, operator: ContractAddress, approved: bool)
external
Requirements:
-
operator
is not the zero address.
is_approved_for_all(self: @ContractState, owner: ContractAddress, operator: ContractAddress) -> bool
external
token_uri(self: @ContractState, token_id: u256) -> ByteArray
external
Returns the Uniform Resource Identifier (URI) for the token_id
token.
If a base URI is set, the resulting URI for each token will be the concatenation of the base URI and the token ID.
For example, the base URI https://token-cdn-domain/
would be returned as https://token-cdn-domain/123
for token ID 123
.
If the URI is not set for token_id
, the return value will be an empty ByteArray
.
safeTransferFrom(ref self: ContractState, from: ContractAddress, to: ContractAddress, tokenId: u256, data: Span<felt252>)
external
transferFrom(ref self: ContractState, from: ContractAddress, to: ContractAddress, tokenId: u256)
external
isApprovedForAll(self: @ContractState, owner: ContractAddress, operator: ContractAddress) -> bool
external
initializer(ref self: ContractState, name: ByteArray, symbol: ByteArray, base_uri: ByteArray)
internal
Initializes the contract by setting the token name and symbol. This should be used inside the contract’s constructor.
exists(self: @ContractState, token_id: u256) -> bool
internal
Internal function that returns whether token_id
exists.
transfer(ref self: ContractState, from: ContractAddress, to: ContractAddress, token_id: u256)
internal
Transfers token_id
from from
to to
.
Internal function without access restriction.
This method may lead to the loss of tokens if to is not aware of the ERC721 protocol.
|
Requirements:
-
to
is not the zero address. -
from
is the token owner. -
token_id
exists.
Emits a Transfer event.
mint(ref self: ContractState, to: ContractAddress, token_id: u256)
internal
Mints token_id
and transfers it to to
.
Internal function without access restriction.
This method may lead to the loss of tokens if to is not aware of the ERC721 protocol.
|
Requirements:
-
to
is not the zero address. -
token_id
does not exist.
Emits a Transfer event.
safe_transfer(ref self: ContractState, from: ContractAddress, to: ContractAddress, token_id: u256, data: Span<felt252>)
internal
Transfers ownership of token_id
from from
if to
is either an account or IERC721Receiver
.
data
is additional data, it has no specified format and is forwarded in IERC721Receiver::on_erc721_received
to to
.
This method makes an external call to the recipient contract, which can lead to reentrancy vulnerabilities. |
Requirements:
-
to
cannot be the zero address. -
from
must be the token owner. -
token_id
exists. -
to
is either an account contract or supports theIERC721Receiver
interface.
Emits a Transfer event.
safe_mint(ref self: ContractState, to: ContractAddress, token_id: u256, data: Span<felt252>)
internal
Mints token_id
if to
is either an account or IERC721Receiver
.
data
is additional data, it has no specified format and is forwarded in IERC721Receiver::on_erc721_received
to to
.
This method makes an external call to the recipient contract, which can lead to reentrancy vulnerabilities. |
Requirements:
-
token_id
does not exist. -
to
is either an account contract or supports theIERC721Receiver
interface.
Emits a Transfer event.
burn(ref self: ContractState, token_id: u256)
internal
Destroys token_id
. The approval is cleared when the token is burned.
This internal function does not check if the caller is authorized to operate on the token.
Requirements:
-
token_id
exists.
Emits a Transfer event.
update(ref self: ContractState, to: ContractAddress, token_id: u256, auth: ContractAddress)
internal
Transfers token_id
from its current owner to to
, or alternatively mints (or burns) if the current owner
(or to
) is the zero address. Returns the owner of the token_id
before the update.
The auth
argument is optional. If the value passed is non-zero, then this function will check that
auth
is either the owner of the token, or approved to operate on the token (by the owner).
Emits a Transfer event.
This function can be extended using the ERC721HooksTrait , to add
functionality before and/or after the transfer, mint, or burn.
|
_owner_of(self: @ContractState, token_id: felt252) -> ContractAddress
internal
Internal function that returns the owner address of token_id
.
_require_owned(self: @ContractState, token_id: felt252) -> ContractAddress
internal
Version of _owner_of that panics if owner is the zero address.
_approve(ref self: ContractState, to: ContractAddress, token_id: u256, auth: ContractAddress)
internal
Approve to
to operate on token_id
The auth
argument is optional. If the value passed is non-zero, then this function will check that auth
is
either the owner of the token, or approved to operate on all tokens held by this owner.
Emits an Approval event.
_approve_with_optional_event(ref self: ContractState, to: ContractAddress, token_id: u256, auth: ContractAddress, emit_event: bool)
internal
Variant of _approve with an optional flag to enable or disable the Approval
event.
The event is not emitted in the context of transfers.
If auth is zero and emit_event is false, this function will not check that the token exists.
|
Requirements:
-
if
auth
is non-zero, it must be either the owner of the token or approved to operate on all of its tokens.
May emit an Approval event.
_set_approval_for_all(ref self: ContractState, owner: ContractAddress, operator: ContractAddress, approved: bool)
internal
Enables or disables approval for operator
to manage
all of the owner
assets.
Requirements:
-
operator
is not the zero address.
Emits an Approval event.
_set_base_uri(ref self: ContractState, base_uri: ByteArray)
internal
Internal function that sets the base_uri
.
_base_uri(self: @ContractState) -> ByteArray
internal
Base URI for computing token_uri.
If set, the resulting URI for each token will be the concatenation of the base URI and the token ID.
Returns an empty ByteArray
if not set.
_is_authorized(self: @ContractState, owner: ContractAddress, spender: ContractAddress, token_id: u256) -> bool
internal
Returns whether spender
is allowed to manage owner
's tokens, or token_id
in
particular (ignoring whether it is owned by owner
).
This function assumes that owner is the actual owner of token_id and does not verify this
assumption.
|
_check_authorized(self: @ContractState, owner: ContractAddress, spender: ContractAddress, token_id: u256) -> bool
internal
Checks if spender
can operate on token_id
, assuming the provided owner
is the actual owner.
Requirements:
-
owner
cannot be the zero address. -
spender
cannot be the zero address. -
spender
must be the owner oftoken_id
or be approved to operate on it.
This function assumes that owner is the actual owner of token_id and does not verify this
assumption.
|
Approval(owner: ContractAddress, approved: ContractAddress, token_id: u256)
event
See IERC721::Approval.
Transfer(from: ContractAddress, to: ContractAddress, token_id: u256)
event
See IERC721::Transfer.
ERC721EnumerableComponent
use openzeppelin::token::erc721::extensions::ERC721EnumerableComponent;
Extension of ERC721 as defined in the EIP that adds enumerability of all the token ids in the contract as well as all token ids owned by each account. This extension allows contracts to publish their entire list of NFTs and make them discoverable.
Implementing ERC721Component is a requirement for this component to be implemented. |
To properly track token ids, this extension requires that the ERC721EnumerableComponent::before_update function is called before every transfer, mint, or burn operation. For this, the ERC721HooksTrait::before_update hook must be used. Here’s how the hook should be implemented in a contract:
#[starknet::contract]
mod ERC721EnumerableContract {
(...)
component!(path: ERC721Component, storage: erc721, event: ERC721Event);
component!(path: ERC721EnumerableComponent, storage: erc721_enumerable, event: ERC721EnumerableEvent);
component!(path: SRC5Component, storage: src5, event: SRC5Event);
impl ERC721HooksImpl of ERC721Component::ERC721HooksTrait<ContractState> {
fn before_update(
ref self: ERC721Component::ComponentState<ContractState>,
to: ContractAddress,
token_id: u256,
auth: ContractAddress
) {
let mut contract_state = ERC721Component::HasComponent::get_contract_mut(ref self);
contract_state.erc721_enumerable.before_update(to, token_id);
}
}
}
total_supply(self: @ContractState) → u256
external
Returns the current amount of votes that account
has.
token_by_index(self: @ContractState, index: u256) → u256
external
Requirements:
-
index
is less than the total token supply.
token_of_owner_by_index(self: @ContractState, owner: ContractAddress, index: u256) → u256
external
Requirements:
-
index
is less thanowner
's token balance. -
owner
is not the zero address.
initializer(ref self: ContractState)
internal
Registers the IERC721Enumerable
interface ID as supported through introspection.
before_update(ref self: ContractState, to: ContractAddress, token_id: u256)
internal
Updates the ownership and token-tracking data structures.
When a token is minted (or burned), token_id
is added to (or removed from) the token-tracking structures.
When a token is transferred, minted, or burned, the ownership-tracking data structures reflect the change in ownership of token_id
.
This must be added to the implementing contract’s ERC721HooksTrait::before_update hook.
_add_token_to_owner_enumeration(ref self: ContractState, to: ContractAddress, token_id: u256)
internal
Adds token to this extension’s ownership-tracking data structures.
_add_token_to_all_tokens_enumeration(ref self: ContractState, token_id: u256)
internal
Adds token to this extension’s token-tracking data structures.
_remove_token_from_owner_enumeration(ref self: ContractState, from: ContractAddress, token_id: u256)
internal
Removes a token from this extension’s ownership-tracking data structures.
This has 0(1) time complexity but alters the indexed order of owned tokens by swapping token_id
and the index thereof with the last token id and the index thereof e.g. removing 1
from [1, 2, 3, 4]
results in [4, 2, 3]
.
_remove_token_from_all_tokens_enumeration(ref self: ContractState, token_id: u256)
internal
Removes token_id
from this extension’s token-tracking data structures.
This has 0(1) time complexity but alters the indexed order by swapping token_id
and the index thereof with the last token id and the index thereof e.g. removing 1
from [1, 2, 3, 4]
results in [4, 2, 3]
.
Receiver
IERC721Receiver
use openzeppelin::token::erc721::interface::IERC721Receiver;
Interface for contracts that support receiving safe_transfer_from
transfers.
0x3a0dff5f70d80458ad14ae37bb182a728e3c8cdda0402a5daa86620bdf910bc
on_erc721_received(operator: ContractAddress, from: ContractAddress, token_id: u256, data: Span<felt252>) -> felt252
external
Whenever an IERC721 token_id
token is transferred to this non-account contract via IERC721::safe_transfer_from by operator
from from
, this function is called.
ERC721ReceiverComponent
use openzeppelin::token::erc721::ERC721ReceiverComponent;
ERC721Receiver component implementing IERC721Receiver.
Implementing SRC5Component is a requirement for this component to be implemented. |
on_erc721_received(self: @ContractState, operator: ContractAddress, from: ContractAddress, token_id: u256, data Span<felt252>) -> felt252
external
Returns the IERC721Receiver
interface ID.
Presets
ERC721Upgradeable
use openzeppelin::presets::ERC721Upgradeable;
Upgradeable ERC721 contract leveraging ERC721Component.
0x025b0f8fea29627735c3d11552b040ff15ca82c1f977d985165150f59ab689a4
constructor(ref self: ContractState, name: ByteArray, symbol: ByteArray, recipient: ContractAddress, token_ids: Span<u256>, base_uri: ByteArray, owner: ContractAddress)
constructor
Sets the name
and symbol
.
Mints token_ids
tokens to recipient
and sets the base_uri
.
Assigns owner
as the contract owner with permissions to upgrade.