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
ERC721Component
use openzeppelin::token::erc721::ERC721Component;
ERC721 component implementing IERC721 and IERC721Metadata.
Implementing SRC5Component is a requirement for this component to be implemented. |
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
cannot be the caller.
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
.
balanceOf(self: @ContractState, account: ContractAddress) -> u256
external
See IERC721::balance_of.
ownerOf(self: @ContractState, tokenId: u256) -> ContractAddress
external
See IERC721::owner_of.
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.
_owner_of(self: @ContractState, token_id: felt252) -> ContractAddress
internal
Internal function that returns the owner address of token_id
.
This function will panic if the token does not exist.
_exists(self: @ContractState, token_id: u256) -> bool
internal
Internal function that returns whether token_id
exists.
_is_approved_or_owner(ref self: ContractState, spender: ContractAddress, token_id: u256) -> bool
internal
Internal function that returns whether spender
is allowed to manage token_id
.
Requirements:
-
token_id
exists.
_approve(ref self: ContractState, to: ContractAddress, token_id: u256)
internal
Internal function that changes or reaffirms the approved address for an NFT.
Emits an Approval event.
Requirements:
-
token_id
exists. -
to
is not the current token owner.
_set_approval_for_all(ref self: ContractState, owner: ContractAddress, operator: ContractAddress, approved: bool)
internal
Internal function that enables or disables approval for operator
to manage all of the
owner
assets.
Emits an Approval event.
Requirements:
-
operator
cannot be the caller.
_mint(ref self: ContractState, to: ContractAddress, token_id: u256)
internal
Internal function that mints token_id
and transfers it to to
.
Emits an Transfer event.
Requirements:
-
to
is not the zero address. -
token_id
does not already exist.
_transfer(ref self: ContractState, from: ContractAddress, to: ContractAddress, token_id: u256)
internal
Internal function that transfers token_id
from from
to to
.
Emits an Transfer event.
Requirements:
-
to
is not the zero address. -
from
is the token owner. -
token_id
exists.
_burn(ref self: ContractState, token_id: u256)
internal
Internal function that destroys token_id
.
The approval is cleared when the token is burned.
This internal function does not check if the sender is authorized to operate on the token.
Emits an Transfer event.
Requirements:
token_id
exists.
_safe_mint(ref self: ContractState, to: ContractAddress, token_id: u256, data: Span<felt252>)
internal
Internal function that mints token_id
and transfers it to to
.
If to
is not an account contract, to
must support IERC721Receiver; otherwise, the transaction will fail.
Emits an Transfer event.
Requirements:
-
token_id
does not already exist. -
to
is either an account contract or supports the IERC721Receiver interface.
_safe_transfer(ref self: ContractState, from: ContractAddress, to: ContractAddress, token_id: u256, data: Span<felt252>)
internal
Internal function that transfers token_id
token from from
to to
, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked.
data
is additional data, it has no specified format and it is sent in call to to
.
This internal function does not include permissions but can be useful for instances like implementing alternative mechanisms to perform signature-based token transfers.
Emits an Transfer event.
Requirements:
-
to
cannot be the zero address. -
from
must be the token owner. -
token_id
exists. -
to
either is an account contract or supports the IERC721Receiver interface.
_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.
Approval(owner: ContractAddress, approved: ContractAddress, token_id: u256)
event
See IERC721::Approval.
Transfer(from: ContractAddress, to: ContractAddress, token_id: u256)
event
See IERC721::Transfer.
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
ERC721
use openzeppelin::presets::ERC721;
Basic ERC721 contract leveraging ERC721Component.
0x04cd23b9cf1f3206bef278fe4a4cf6c34e88a7ae20d85884e3d6a1bf8df06693