We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de70583 commit a0b15f1Copy full SHA for a0b15f1
web3swift/PrecompiledContracts/ERC721/Web3+ERC721.swift
@@ -23,9 +23,9 @@ protocol IERC721 {
23
24
func transfer(from: EthereumAddress, to: EthereumAddress, tokenId: BigUInt) throws -> WriteTransaction
25
26
- func approve(approved: EthereumAddress, tokenId: BigUInt) throws -> WriteTransaction
+ func approve(from: EthereumAddress, approved: EthereumAddress, tokenId: BigUInt) throws -> WriteTransaction
27
28
- func setApprovalForAll(operator address: EthereumAddress, approved: Bool) throws -> WriteTransaction
+ func setApprovalForAll(operator address: EthereumAddress, from: EthereumAddress, approved: Bool) throws -> WriteTransaction
29
30
func getApproved(tokenId: BigUInt) throws -> EthereumAddress
31
0 commit comments