ERC-1155 function
isApprovedForAll(address,address)
Checks whether an operator may manage all ERC-1155 tokens for an account.
- Selector
- 0xe985e9c5
- Mutability
- view
Generate isApprovedForAll calldata
Edit the example inputs to rebuild the bytes instantly in your browser. Nothing is sent and no transaction is submitted.
address
address
calldata68 bytes
sel0xe985e9c5
isApprovedForAll(address,address)
0x000000000000000000000000001111111111111111111111111111111111111111
account · address =0x11111111…111111
0x200000000000000000000000003333333333333333333333333333333333333333
operator · address =0x33333333…333333
How isApprovedForAll works
Both the token holder and proposed operator are encoded as explicit query inputs.
Parameters
| Name | Solidity type | Meaning |
|---|---|---|
| account | address | Token holder whose permissions should be checked. |
| operator | address | Address being tested for operator permission. |
Return value
True when the operator is approved for the account.
bool resultReturn data comes back after execution and is not included in the calldata above.