registry

package
v3.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 19, 2023 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const ContractABI = "" /* 19587-byte string literal not displayed */

ContractABI is the input ABI used to generate the binding from.

Variables

This section is empty.

Functions

This section is empty.

Types

type Contract

type Contract struct {
	ContractCaller     // Read-only binding to the contract
	ContractTransactor // Write-only binding to the contract
	ContractFilterer   // Log filterer for contract events
}

Contract is an auto generated Go binding around an Ethereum contract.

func NewContract

func NewContract(address common.Address, backend bind.ContractBackend) (*Contract, error)

NewContract creates a new instance of Contract, bound to a specific deployed contract.

type ContractApproval

type ContractApproval struct {
	Owner    common.Address
	Approved common.Address
	TokenId  *big.Int
	Raw      types.Log // Blockchain specific contextual infos
}

ContractApproval represents a Approval event raised by the Contract contract.

type ContractApprovalForAll

type ContractApprovalForAll struct {
	Owner    common.Address
	Operator common.Address
	Approved bool
	Raw      types.Log // Blockchain specific contextual infos
}

ContractApprovalForAll represents a ApprovalForAll event raised by the Contract contract.

type ContractApprovalForAllIterator

type ContractApprovalForAllIterator struct {
	Event *ContractApprovalForAll // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractApprovalForAllIterator is returned from FilterApprovalForAll and is used to iterate over the raw logs and unpacked data for ApprovalForAll events raised by the Contract contract.

func (*ContractApprovalForAllIterator) Close

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractApprovalForAllIterator) Error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractApprovalForAllIterator) Next

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractApprovalIterator

type ContractApprovalIterator struct {
	Event *ContractApproval // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractApprovalIterator is returned from FilterApproval and is used to iterate over the raw logs and unpacked data for Approval events raised by the Contract contract.

func (*ContractApprovalIterator) Close

func (it *ContractApprovalIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractApprovalIterator) Error

func (it *ContractApprovalIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractApprovalIterator) Next

func (it *ContractApprovalIterator) Next() bool

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractCaller

type ContractCaller struct {
	// contains filtered or unexported fields
}

ContractCaller is an auto generated read-only Go binding around an Ethereum contract.

func NewContractCaller

func NewContractCaller(address common.Address, caller bind.ContractCaller) (*ContractCaller, error)

NewContractCaller creates a new read-only instance of Contract, bound to a specific deployed contract.

func (*ContractCaller) BalanceOf

func (_Contract *ContractCaller) BalanceOf(opts *bind.CallOpts, owner common.Address) (*big.Int, error)

BalanceOf is a free data retrieval call binding the contract method 0x70a08231.

Solidity: function balanceOf(address owner) view returns(uint256)

func (*ContractCaller) ChildIdOf

func (_Contract *ContractCaller) ChildIdOf(opts *bind.CallOpts, tokenId *big.Int, label string) (*big.Int, error)

ChildIdOf is a free data retrieval call binding the contract method 0x68b62d32.

Solidity: function childIdOf(uint256 tokenId, string label) pure returns(uint256)

func (*ContractCaller) Exists

func (_Contract *ContractCaller) Exists(opts *bind.CallOpts, tokenId *big.Int) (bool, error)

Exists is a free data retrieval call binding the contract method 0x4f558e79.

Solidity: function exists(uint256 tokenId) view returns(bool)

func (*ContractCaller) Get

func (_Contract *ContractCaller) Get(opts *bind.CallOpts, key string, tokenId *big.Int) (string, error)

Get is a free data retrieval call binding the contract method 0x1be5e7ed.

Solidity: function get(string key, uint256 tokenId) view returns(string value)

func (*ContractCaller) GetApproved

func (_Contract *ContractCaller) GetApproved(opts *bind.CallOpts, tokenId *big.Int) (common.Address, error)

GetApproved is a free data retrieval call binding the contract method 0x081812fc.

Solidity: function getApproved(uint256 tokenId) view returns(address)

func (*ContractCaller) GetByHash

func (_Contract *ContractCaller) GetByHash(opts *bind.CallOpts, keyHash *big.Int, tokenId *big.Int) (struct {
	Key   string
	Value string
}, error)

GetByHash is a free data retrieval call binding the contract method 0x672b9f81.

Solidity: function getByHash(uint256 keyHash, uint256 tokenId) view returns(string key, string value)

func (*ContractCaller) GetKey

func (_Contract *ContractCaller) GetKey(opts *bind.CallOpts, keyHash *big.Int) (string, error)

GetKey is a free data retrieval call binding the contract method 0xbb5b27e1.

Solidity: function getKey(uint256 keyHash) view returns(string)

func (*ContractCaller) GetKeys

func (_Contract *ContractCaller) GetKeys(opts *bind.CallOpts, hashes []*big.Int) ([]string, error)

GetKeys is a free data retrieval call binding the contract method 0xf5c1f76e.

Solidity: function getKeys(uint256[] hashes) view returns(string[] values)

func (*ContractCaller) GetMany

func (_Contract *ContractCaller) GetMany(opts *bind.CallOpts, keys []string, tokenId *big.Int) ([]string, error)

GetMany is a free data retrieval call binding the contract method 0x1bd8cc1a.

Solidity: function getMany(string[] keys, uint256 tokenId) view returns(string[] values)

func (*ContractCaller) GetManyByHash

func (_Contract *ContractCaller) GetManyByHash(opts *bind.CallOpts, keyHashes []*big.Int, tokenId *big.Int) (struct {
	Keys   []string
	Values []string
}, error)

GetManyByHash is a free data retrieval call binding the contract method 0xb85afd28.

Solidity: function getManyByHash(uint256[] keyHashes, uint256 tokenId) view returns(string[] keys, string[] values)

func (*ContractCaller) IsApprovedForAll

func (_Contract *ContractCaller) IsApprovedForAll(opts *bind.CallOpts, owner common.Address, operator common.Address) (bool, error)

IsApprovedForAll is a free data retrieval call binding the contract method 0xe985e9c5.

Solidity: function isApprovedForAll(address owner, address operator) view returns(bool)

func (*ContractCaller) IsApprovedOrOwner

func (_Contract *ContractCaller) IsApprovedOrOwner(opts *bind.CallOpts, spender common.Address, tokenId *big.Int) (bool, error)

IsApprovedOrOwner is a free data retrieval call binding the contract method 0x430c2081.

Solidity: function isApprovedOrOwner(address spender, uint256 tokenId) view returns(bool)

func (*ContractCaller) IsTrustedForwarder

func (_Contract *ContractCaller) IsTrustedForwarder(opts *bind.CallOpts, forwarder common.Address) (bool, error)

IsTrustedForwarder is a free data retrieval call binding the contract method 0x572b6c05.

Solidity: function isTrustedForwarder(address forwarder) view returns(bool)

func (*ContractCaller) NAME

func (_Contract *ContractCaller) NAME(opts *bind.CallOpts) (string, error)

NAME is a free data retrieval call binding the contract method 0xa3f4df7e.

Solidity: function NAME() view returns(string)

func (*ContractCaller) Name

func (_Contract *ContractCaller) Name(opts *bind.CallOpts) (string, error)

Name is a free data retrieval call binding the contract method 0x06fdde03.

Solidity: function name() view returns(string)

func (*ContractCaller) NonceOf

func (_Contract *ContractCaller) NonceOf(opts *bind.CallOpts, tokenId *big.Int) (*big.Int, error)

NonceOf is a free data retrieval call binding the contract method 0x6ccbae5f.

Solidity: function nonceOf(uint256 tokenId) view returns(uint256)

func (*ContractCaller) OwnerOf

func (_Contract *ContractCaller) OwnerOf(opts *bind.CallOpts, tokenId *big.Int) (common.Address, error)

OwnerOf is a free data retrieval call binding the contract method 0x6352211e.

Solidity: function ownerOf(uint256 tokenId) view returns(address)

func (*ContractCaller) ResolverOf

func (_Contract *ContractCaller) ResolverOf(opts *bind.CallOpts, tokenId *big.Int) (common.Address, error)

ResolverOf is a free data retrieval call binding the contract method 0xb3f9e4cb.

Solidity: function resolverOf(uint256 tokenId) view returns(address)

func (*ContractCaller) Root

func (_Contract *ContractCaller) Root(opts *bind.CallOpts) (*big.Int, error)

Root is a free data retrieval call binding the contract method 0xebf0c717.

Solidity: function root() pure returns(uint256)

func (*ContractCaller) SupportsInterface

func (_Contract *ContractCaller) SupportsInterface(opts *bind.CallOpts, interfaceId [4]byte) (bool, error)

SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7.

Solidity: function supportsInterface(bytes4 interfaceId) view returns(bool)

func (*ContractCaller) Symbol

func (_Contract *ContractCaller) Symbol(opts *bind.CallOpts) (string, error)

Symbol is a free data retrieval call binding the contract method 0x95d89b41.

Solidity: function symbol() view returns(string)

func (*ContractCaller) TokenURI

func (_Contract *ContractCaller) TokenURI(opts *bind.CallOpts, tokenId *big.Int) (string, error)

TokenURI is a free data retrieval call binding the contract method 0xc87b56dd.

Solidity: function tokenURI(uint256 tokenId) view returns(string)

func (*ContractCaller) VERSION

func (_Contract *ContractCaller) VERSION(opts *bind.CallOpts) (string, error)

VERSION is a free data retrieval call binding the contract method 0xffa1ad74.

Solidity: function VERSION() view returns(string)

func (*ContractCaller) Verify

func (_Contract *ContractCaller) Verify(opts *bind.CallOpts, req RegistryForwarderForwardRequest, signature []byte) (bool, error)

Verify is a free data retrieval call binding the contract method 0x1796e180.

Solidity: function verify((address,uint256,uint256,uint256,bytes) req, bytes signature) view returns(bool)

type ContractCallerRaw

type ContractCallerRaw struct {
	Contract *ContractCaller // Generic read-only contract binding to access the raw methods on
}

ContractCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.

func (*ContractCallerRaw) Call

func (_Contract *ContractCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error

Call invokes the (constant) contract method with params as input values and sets the output to result. The result type might be a single field for simple returns, a slice of interfaces for anonymous returns and a struct for named returns.

type ContractCallerSession

type ContractCallerSession struct {
	Contract *ContractCaller // Generic contract caller binding to set the session for
	CallOpts bind.CallOpts   // Call options to use throughout this session
}

ContractCallerSession is an auto generated read-only Go binding around an Ethereum contract, with pre-set call options.

func (*ContractCallerSession) BalanceOf

func (_Contract *ContractCallerSession) BalanceOf(owner common.Address) (*big.Int, error)

BalanceOf is a free data retrieval call binding the contract method 0x70a08231.

Solidity: function balanceOf(address owner) view returns(uint256)

func (*ContractCallerSession) ChildIdOf

func (_Contract *ContractCallerSession) ChildIdOf(tokenId *big.Int, label string) (*big.Int, error)

ChildIdOf is a free data retrieval call binding the contract method 0x68b62d32.

Solidity: function childIdOf(uint256 tokenId, string label) pure returns(uint256)

func (*ContractCallerSession) Exists

func (_Contract *ContractCallerSession) Exists(tokenId *big.Int) (bool, error)

Exists is a free data retrieval call binding the contract method 0x4f558e79.

Solidity: function exists(uint256 tokenId) view returns(bool)

func (*ContractCallerSession) Get

func (_Contract *ContractCallerSession) Get(key string, tokenId *big.Int) (string, error)

Get is a free data retrieval call binding the contract method 0x1be5e7ed.

Solidity: function get(string key, uint256 tokenId) view returns(string value)

func (*ContractCallerSession) GetApproved

func (_Contract *ContractCallerSession) GetApproved(tokenId *big.Int) (common.Address, error)

GetApproved is a free data retrieval call binding the contract method 0x081812fc.

Solidity: function getApproved(uint256 tokenId) view returns(address)

func (*ContractCallerSession) GetByHash

func (_Contract *ContractCallerSession) GetByHash(keyHash *big.Int, tokenId *big.Int) (struct {
	Key   string
	Value string
}, error)

GetByHash is a free data retrieval call binding the contract method 0x672b9f81.

Solidity: function getByHash(uint256 keyHash, uint256 tokenId) view returns(string key, string value)

func (*ContractCallerSession) GetKey

func (_Contract *ContractCallerSession) GetKey(keyHash *big.Int) (string, error)

GetKey is a free data retrieval call binding the contract method 0xbb5b27e1.

Solidity: function getKey(uint256 keyHash) view returns(string)

func (*ContractCallerSession) GetKeys

func (_Contract *ContractCallerSession) GetKeys(hashes []*big.Int) ([]string, error)

GetKeys is a free data retrieval call binding the contract method 0xf5c1f76e.

Solidity: function getKeys(uint256[] hashes) view returns(string[] values)

func (*ContractCallerSession) GetMany

func (_Contract *ContractCallerSession) GetMany(keys []string, tokenId *big.Int) ([]string, error)

GetMany is a free data retrieval call binding the contract method 0x1bd8cc1a.

Solidity: function getMany(string[] keys, uint256 tokenId) view returns(string[] values)

func (*ContractCallerSession) GetManyByHash

func (_Contract *ContractCallerSession) GetManyByHash(keyHashes []*big.Int, tokenId *big.Int) (struct {
	Keys   []string
	Values []string
}, error)

GetManyByHash is a free data retrieval call binding the contract method 0xb85afd28.

Solidity: function getManyByHash(uint256[] keyHashes, uint256 tokenId) view returns(string[] keys, string[] values)

func (*ContractCallerSession) IsApprovedForAll

func (_Contract *ContractCallerSession) IsApprovedForAll(owner common.Address, operator common.Address) (bool, error)

IsApprovedForAll is a free data retrieval call binding the contract method 0xe985e9c5.

Solidity: function isApprovedForAll(address owner, address operator) view returns(bool)

func (*ContractCallerSession) IsApprovedOrOwner

func (_Contract *ContractCallerSession) IsApprovedOrOwner(spender common.Address, tokenId *big.Int) (bool, error)

IsApprovedOrOwner is a free data retrieval call binding the contract method 0x430c2081.

Solidity: function isApprovedOrOwner(address spender, uint256 tokenId) view returns(bool)

func (*ContractCallerSession) IsTrustedForwarder

func (_Contract *ContractCallerSession) IsTrustedForwarder(forwarder common.Address) (bool, error)

IsTrustedForwarder is a free data retrieval call binding the contract method 0x572b6c05.

Solidity: function isTrustedForwarder(address forwarder) view returns(bool)

func (*ContractCallerSession) NAME

func (_Contract *ContractCallerSession) NAME() (string, error)

NAME is a free data retrieval call binding the contract method 0xa3f4df7e.

Solidity: function NAME() view returns(string)

func (*ContractCallerSession) Name

func (_Contract *ContractCallerSession) Name() (string, error)

Name is a free data retrieval call binding the contract method 0x06fdde03.

Solidity: function name() view returns(string)

func (*ContractCallerSession) NonceOf

func (_Contract *ContractCallerSession) NonceOf(tokenId *big.Int) (*big.Int, error)

NonceOf is a free data retrieval call binding the contract method 0x6ccbae5f.

Solidity: function nonceOf(uint256 tokenId) view returns(uint256)

func (*ContractCallerSession) OwnerOf

func (_Contract *ContractCallerSession) OwnerOf(tokenId *big.Int) (common.Address, error)

OwnerOf is a free data retrieval call binding the contract method 0x6352211e.

Solidity: function ownerOf(uint256 tokenId) view returns(address)

func (*ContractCallerSession) ResolverOf

func (_Contract *ContractCallerSession) ResolverOf(tokenId *big.Int) (common.Address, error)

ResolverOf is a free data retrieval call binding the contract method 0xb3f9e4cb.

Solidity: function resolverOf(uint256 tokenId) view returns(address)

func (*ContractCallerSession) Root

func (_Contract *ContractCallerSession) Root() (*big.Int, error)

Root is a free data retrieval call binding the contract method 0xebf0c717.

Solidity: function root() pure returns(uint256)

func (*ContractCallerSession) SupportsInterface

func (_Contract *ContractCallerSession) SupportsInterface(interfaceId [4]byte) (bool, error)

SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7.

Solidity: function supportsInterface(bytes4 interfaceId) view returns(bool)

func (*ContractCallerSession) Symbol

func (_Contract *ContractCallerSession) Symbol() (string, error)

Symbol is a free data retrieval call binding the contract method 0x95d89b41.

Solidity: function symbol() view returns(string)

func (*ContractCallerSession) TokenURI

func (_Contract *ContractCallerSession) TokenURI(tokenId *big.Int) (string, error)

TokenURI is a free data retrieval call binding the contract method 0xc87b56dd.

Solidity: function tokenURI(uint256 tokenId) view returns(string)

func (*ContractCallerSession) VERSION

func (_Contract *ContractCallerSession) VERSION() (string, error)

VERSION is a free data retrieval call binding the contract method 0xffa1ad74.

Solidity: function VERSION() view returns(string)

func (*ContractCallerSession) Verify

func (_Contract *ContractCallerSession) Verify(req RegistryForwarderForwardRequest, signature []byte) (bool, error)

Verify is a free data retrieval call binding the contract method 0x1796e180.

Solidity: function verify((address,uint256,uint256,uint256,bytes) req, bytes signature) view returns(bool)

type ContractFilterer

type ContractFilterer struct {
	// contains filtered or unexported fields
}

ContractFilterer is an auto generated log filtering Go binding around an Ethereum contract events.

func NewContractFilterer

func NewContractFilterer(address common.Address, filterer bind.ContractFilterer) (*ContractFilterer, error)

NewContractFilterer creates a new log filterer instance of Contract, bound to a specific deployed contract.

func (*ContractFilterer) FilterApproval

func (_Contract *ContractFilterer) FilterApproval(opts *bind.FilterOpts, owner []common.Address, approved []common.Address, tokenId []*big.Int) (*ContractApprovalIterator, error)

FilterApproval is a free log retrieval operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.

Solidity: event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)

func (*ContractFilterer) FilterApprovalForAll

func (_Contract *ContractFilterer) FilterApprovalForAll(opts *bind.FilterOpts, owner []common.Address, operator []common.Address) (*ContractApprovalForAllIterator, error)

FilterApprovalForAll is a free log retrieval operation binding the contract event 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31.

Solidity: event ApprovalForAll(address indexed owner, address indexed operator, bool approved)

func (*ContractFilterer) FilterNewKey

func (_Contract *ContractFilterer) FilterNewKey(opts *bind.FilterOpts, tokenId []*big.Int, keyIndex []string) (*ContractNewKeyIterator, error)

FilterNewKey is a free log retrieval operation binding the contract event 0x7ae4f661958fbecc2f77be6b0eb280d2a6f604b29e1e7221c82b9da0c4af7f86.

Solidity: event NewKey(uint256 indexed tokenId, string indexed keyIndex, string key)

func (*ContractFilterer) FilterNewURI

func (_Contract *ContractFilterer) FilterNewURI(opts *bind.FilterOpts, tokenId []*big.Int) (*ContractNewURIIterator, error)

FilterNewURI is a free log retrieval operation binding the contract event 0xc5beef08f693b11c316c0c8394a377a0033c9cf701b8cd8afd79cecef60c3952.

Solidity: event NewURI(uint256 indexed tokenId, string uri)

func (*ContractFilterer) FilterNewURIPrefix

func (_Contract *ContractFilterer) FilterNewURIPrefix(opts *bind.FilterOpts) (*ContractNewURIPrefixIterator, error)

FilterNewURIPrefix is a free log retrieval operation binding the contract event 0x4b120d6a959a84a520fa48f5f937cca0e79129423487af7901213b5d2e89313b.

Solidity: event NewURIPrefix(string prefix)

func (*ContractFilterer) FilterResetRecords

func (_Contract *ContractFilterer) FilterResetRecords(opts *bind.FilterOpts, tokenId []*big.Int) (*ContractResetRecordsIterator, error)

FilterResetRecords is a free log retrieval operation binding the contract event 0x185c30856dadb58bf097c1f665a52ada7029752dbcad008ea3fefc73bee8c9fe.

Solidity: event ResetRecords(uint256 indexed tokenId)

func (*ContractFilterer) FilterSet

func (_Contract *ContractFilterer) FilterSet(opts *bind.FilterOpts, tokenId []*big.Int, keyIndex []string, valueIndex []string) (*ContractSetIterator, error)

FilterSet is a free log retrieval operation binding the contract event 0x851ffe8e74d5015261dba0a1f9e1b0e5d42c5af5d2ad1908fee897c7d80a0d92.

Solidity: event Set(uint256 indexed tokenId, string indexed keyIndex, string indexed valueIndex, string key, string value)

func (*ContractFilterer) FilterTransfer

func (_Contract *ContractFilterer) FilterTransfer(opts *bind.FilterOpts, from []common.Address, to []common.Address, tokenId []*big.Int) (*ContractTransferIterator, error)

FilterTransfer is a free log retrieval operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.

Solidity: event Transfer(address indexed from, address indexed to, uint256 indexed tokenId)

func (*ContractFilterer) ParseApproval

func (_Contract *ContractFilterer) ParseApproval(log types.Log) (*ContractApproval, error)

ParseApproval is a log parse operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.

Solidity: event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)

func (*ContractFilterer) ParseApprovalForAll

func (_Contract *ContractFilterer) ParseApprovalForAll(log types.Log) (*ContractApprovalForAll, error)

ParseApprovalForAll is a log parse operation binding the contract event 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31.

Solidity: event ApprovalForAll(address indexed owner, address indexed operator, bool approved)

func (*ContractFilterer) ParseNewKey

func (_Contract *ContractFilterer) ParseNewKey(log types.Log) (*ContractNewKey, error)

ParseNewKey is a log parse operation binding the contract event 0x7ae4f661958fbecc2f77be6b0eb280d2a6f604b29e1e7221c82b9da0c4af7f86.

Solidity: event NewKey(uint256 indexed tokenId, string indexed keyIndex, string key)

func (*ContractFilterer) ParseNewURI

func (_Contract *ContractFilterer) ParseNewURI(log types.Log) (*ContractNewURI, error)

ParseNewURI is a log parse operation binding the contract event 0xc5beef08f693b11c316c0c8394a377a0033c9cf701b8cd8afd79cecef60c3952.

Solidity: event NewURI(uint256 indexed tokenId, string uri)

func (*ContractFilterer) ParseNewURIPrefix

func (_Contract *ContractFilterer) ParseNewURIPrefix(log types.Log) (*ContractNewURIPrefix, error)

ParseNewURIPrefix is a log parse operation binding the contract event 0x4b120d6a959a84a520fa48f5f937cca0e79129423487af7901213b5d2e89313b.

Solidity: event NewURIPrefix(string prefix)

func (*ContractFilterer) ParseResetRecords

func (_Contract *ContractFilterer) ParseResetRecords(log types.Log) (*ContractResetRecords, error)

ParseResetRecords is a log parse operation binding the contract event 0x185c30856dadb58bf097c1f665a52ada7029752dbcad008ea3fefc73bee8c9fe.

Solidity: event ResetRecords(uint256 indexed tokenId)

func (*ContractFilterer) ParseSet

func (_Contract *ContractFilterer) ParseSet(log types.Log) (*ContractSet, error)

ParseSet is a log parse operation binding the contract event 0x851ffe8e74d5015261dba0a1f9e1b0e5d42c5af5d2ad1908fee897c7d80a0d92.

Solidity: event Set(uint256 indexed tokenId, string indexed keyIndex, string indexed valueIndex, string key, string value)

func (*ContractFilterer) ParseTransfer

func (_Contract *ContractFilterer) ParseTransfer(log types.Log) (*ContractTransfer, error)

ParseTransfer is a log parse operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.

Solidity: event Transfer(address indexed from, address indexed to, uint256 indexed tokenId)

func (*ContractFilterer) WatchApproval

func (_Contract *ContractFilterer) WatchApproval(opts *bind.WatchOpts, sink chan<- *ContractApproval, owner []common.Address, approved []common.Address, tokenId []*big.Int) (event.Subscription, error)

WatchApproval is a free log subscription operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.

Solidity: event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)

func (*ContractFilterer) WatchApprovalForAll

func (_Contract *ContractFilterer) WatchApprovalForAll(opts *bind.WatchOpts, sink chan<- *ContractApprovalForAll, owner []common.Address, operator []common.Address) (event.Subscription, error)

WatchApprovalForAll is a free log subscription operation binding the contract event 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31.

Solidity: event ApprovalForAll(address indexed owner, address indexed operator, bool approved)

func (*ContractFilterer) WatchNewKey

func (_Contract *ContractFilterer) WatchNewKey(opts *bind.WatchOpts, sink chan<- *ContractNewKey, tokenId []*big.Int, keyIndex []string) (event.Subscription, error)

WatchNewKey is a free log subscription operation binding the contract event 0x7ae4f661958fbecc2f77be6b0eb280d2a6f604b29e1e7221c82b9da0c4af7f86.

Solidity: event NewKey(uint256 indexed tokenId, string indexed keyIndex, string key)

func (*ContractFilterer) WatchNewURI

func (_Contract *ContractFilterer) WatchNewURI(opts *bind.WatchOpts, sink chan<- *ContractNewURI, tokenId []*big.Int) (event.Subscription, error)

WatchNewURI is a free log subscription operation binding the contract event 0xc5beef08f693b11c316c0c8394a377a0033c9cf701b8cd8afd79cecef60c3952.

Solidity: event NewURI(uint256 indexed tokenId, string uri)

func (*ContractFilterer) WatchNewURIPrefix

func (_Contract *ContractFilterer) WatchNewURIPrefix(opts *bind.WatchOpts, sink chan<- *ContractNewURIPrefix) (event.Subscription, error)

WatchNewURIPrefix is a free log subscription operation binding the contract event 0x4b120d6a959a84a520fa48f5f937cca0e79129423487af7901213b5d2e89313b.

Solidity: event NewURIPrefix(string prefix)

func (*ContractFilterer) WatchResetRecords

func (_Contract *ContractFilterer) WatchResetRecords(opts *bind.WatchOpts, sink chan<- *ContractResetRecords, tokenId []*big.Int) (event.Subscription, error)

WatchResetRecords is a free log subscription operation binding the contract event 0x185c30856dadb58bf097c1f665a52ada7029752dbcad008ea3fefc73bee8c9fe.

Solidity: event ResetRecords(uint256 indexed tokenId)

func (*ContractFilterer) WatchSet

func (_Contract *ContractFilterer) WatchSet(opts *bind.WatchOpts, sink chan<- *ContractSet, tokenId []*big.Int, keyIndex []string, valueIndex []string) (event.Subscription, error)

WatchSet is a free log subscription operation binding the contract event 0x851ffe8e74d5015261dba0a1f9e1b0e5d42c5af5d2ad1908fee897c7d80a0d92.

Solidity: event Set(uint256 indexed tokenId, string indexed keyIndex, string indexed valueIndex, string key, string value)

func (*ContractFilterer) WatchTransfer

func (_Contract *ContractFilterer) WatchTransfer(opts *bind.WatchOpts, sink chan<- *ContractTransfer, from []common.Address, to []common.Address, tokenId []*big.Int) (event.Subscription, error)

WatchTransfer is a free log subscription operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.

Solidity: event Transfer(address indexed from, address indexed to, uint256 indexed tokenId)

type ContractNewKey

type ContractNewKey struct {
	TokenId  *big.Int
	KeyIndex common.Hash
	Key      string
	Raw      types.Log // Blockchain specific contextual infos
}

ContractNewKey represents a NewKey event raised by the Contract contract.

type ContractNewKeyIterator

type ContractNewKeyIterator struct {
	Event *ContractNewKey // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractNewKeyIterator is returned from FilterNewKey and is used to iterate over the raw logs and unpacked data for NewKey events raised by the Contract contract.

func (*ContractNewKeyIterator) Close

func (it *ContractNewKeyIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractNewKeyIterator) Error

func (it *ContractNewKeyIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractNewKeyIterator) Next

func (it *ContractNewKeyIterator) Next() bool

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractNewURI

type ContractNewURI struct {
	TokenId *big.Int
	Uri     string
	Raw     types.Log // Blockchain specific contextual infos
}

ContractNewURI represents a NewURI event raised by the Contract contract.

type ContractNewURIIterator

type ContractNewURIIterator struct {
	Event *ContractNewURI // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractNewURIIterator is returned from FilterNewURI and is used to iterate over the raw logs and unpacked data for NewURI events raised by the Contract contract.

func (*ContractNewURIIterator) Close

func (it *ContractNewURIIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractNewURIIterator) Error

func (it *ContractNewURIIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractNewURIIterator) Next

func (it *ContractNewURIIterator) Next() bool

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractNewURIPrefix

type ContractNewURIPrefix struct {
	Prefix string
	Raw    types.Log // Blockchain specific contextual infos
}

ContractNewURIPrefix represents a NewURIPrefix event raised by the Contract contract.

type ContractNewURIPrefixIterator

type ContractNewURIPrefixIterator struct {
	Event *ContractNewURIPrefix // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractNewURIPrefixIterator is returned from FilterNewURIPrefix and is used to iterate over the raw logs and unpacked data for NewURIPrefix events raised by the Contract contract.

func (*ContractNewURIPrefixIterator) Close

func (it *ContractNewURIPrefixIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractNewURIPrefixIterator) Error

func (it *ContractNewURIPrefixIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractNewURIPrefixIterator) Next

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractRaw

type ContractRaw struct {
	Contract *Contract // Generic contract binding to access the raw methods on
}

ContractRaw is an auto generated low-level Go binding around an Ethereum contract.

func (*ContractRaw) Call

func (_Contract *ContractRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error

Call invokes the (constant) contract method with params as input values and sets the output to result. The result type might be a single field for simple returns, a slice of interfaces for anonymous returns and a struct for named returns.

func (*ContractRaw) Transact

func (_Contract *ContractRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)

Transact invokes the (paid) contract method with params as input values.

func (*ContractRaw) Transfer

func (_Contract *ContractRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)

Transfer initiates a plain transaction to move funds to the contract, calling its default method if one is available.

type ContractResetRecords

type ContractResetRecords struct {
	TokenId *big.Int
	Raw     types.Log // Blockchain specific contextual infos
}

ContractResetRecords represents a ResetRecords event raised by the Contract contract.

type ContractResetRecordsIterator

type ContractResetRecordsIterator struct {
	Event *ContractResetRecords // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractResetRecordsIterator is returned from FilterResetRecords and is used to iterate over the raw logs and unpacked data for ResetRecords events raised by the Contract contract.

func (*ContractResetRecordsIterator) Close

func (it *ContractResetRecordsIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractResetRecordsIterator) Error

func (it *ContractResetRecordsIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractResetRecordsIterator) Next

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractSession

type ContractSession struct {
	Contract     *Contract         // Generic contract binding to set the session for
	CallOpts     bind.CallOpts     // Call options to use throughout this session
	TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}

ContractSession is an auto generated Go binding around an Ethereum contract, with pre-set call and transact options.

func (*ContractSession) AddKey

func (_Contract *ContractSession) AddKey(key string) (*types.Transaction, error)

AddKey is a paid mutator transaction binding the contract method 0x50382c1a.

Solidity: function addKey(string key) returns()

func (*ContractSession) Approve

func (_Contract *ContractSession) Approve(to common.Address, tokenId *big.Int) (*types.Transaction, error)

Approve is a paid mutator transaction binding the contract method 0x095ea7b3.

Solidity: function approve(address to, uint256 tokenId) returns()

func (*ContractSession) BalanceOf

func (_Contract *ContractSession) BalanceOf(owner common.Address) (*big.Int, error)

BalanceOf is a free data retrieval call binding the contract method 0x70a08231.

Solidity: function balanceOf(address owner) view returns(uint256)

func (*ContractSession) Burn

func (_Contract *ContractSession) Burn(tokenId *big.Int) (*types.Transaction, error)

Burn is a paid mutator transaction binding the contract method 0x42966c68.

Solidity: function burn(uint256 tokenId) returns()

func (*ContractSession) BurnFor

func (_Contract *ContractSession) BurnFor(tokenId *big.Int, signature []byte) (*types.Transaction, error)

BurnFor is a paid mutator transaction binding the contract method 0x61603dd9.

Solidity: function burnFor(uint256 tokenId, bytes signature) returns()

func (*ContractSession) ChildIdOf

func (_Contract *ContractSession) ChildIdOf(tokenId *big.Int, label string) (*big.Int, error)

ChildIdOf is a free data retrieval call binding the contract method 0x68b62d32.

Solidity: function childIdOf(uint256 tokenId, string label) pure returns(uint256)

func (*ContractSession) Execute

func (_Contract *ContractSession) Execute(req RegistryForwarderForwardRequest, signature []byte) (*types.Transaction, error)

Execute is a paid mutator transaction binding the contract method 0x185be4e5.

Solidity: function execute((address,uint256,uint256,uint256,bytes) req, bytes signature) returns(bool, bytes)

func (*ContractSession) Exists

func (_Contract *ContractSession) Exists(tokenId *big.Int) (bool, error)

Exists is a free data retrieval call binding the contract method 0x4f558e79.

Solidity: function exists(uint256 tokenId) view returns(bool)

func (*ContractSession) Get

func (_Contract *ContractSession) Get(key string, tokenId *big.Int) (string, error)

Get is a free data retrieval call binding the contract method 0x1be5e7ed.

Solidity: function get(string key, uint256 tokenId) view returns(string value)

func (*ContractSession) GetApproved

func (_Contract *ContractSession) GetApproved(tokenId *big.Int) (common.Address, error)

GetApproved is a free data retrieval call binding the contract method 0x081812fc.

Solidity: function getApproved(uint256 tokenId) view returns(address)

func (*ContractSession) GetByHash

func (_Contract *ContractSession) GetByHash(keyHash *big.Int, tokenId *big.Int) (struct {
	Key   string
	Value string
}, error)

GetByHash is a free data retrieval call binding the contract method 0x672b9f81.

Solidity: function getByHash(uint256 keyHash, uint256 tokenId) view returns(string key, string value)

func (*ContractSession) GetKey

func (_Contract *ContractSession) GetKey(keyHash *big.Int) (string, error)

GetKey is a free data retrieval call binding the contract method 0xbb5b27e1.

Solidity: function getKey(uint256 keyHash) view returns(string)

func (*ContractSession) GetKeys

func (_Contract *ContractSession) GetKeys(hashes []*big.Int) ([]string, error)

GetKeys is a free data retrieval call binding the contract method 0xf5c1f76e.

Solidity: function getKeys(uint256[] hashes) view returns(string[] values)

func (*ContractSession) GetMany

func (_Contract *ContractSession) GetMany(keys []string, tokenId *big.Int) ([]string, error)

GetMany is a free data retrieval call binding the contract method 0x1bd8cc1a.

Solidity: function getMany(string[] keys, uint256 tokenId) view returns(string[] values)

func (*ContractSession) GetManyByHash

func (_Contract *ContractSession) GetManyByHash(keyHashes []*big.Int, tokenId *big.Int) (struct {
	Keys   []string
	Values []string
}, error)

GetManyByHash is a free data retrieval call binding the contract method 0xb85afd28.

Solidity: function getManyByHash(uint256[] keyHashes, uint256 tokenId) view returns(string[] keys, string[] values)

func (*ContractSession) Initialize

func (_Contract *ContractSession) Initialize(mintingManager common.Address) (*types.Transaction, error)

Initialize is a paid mutator transaction binding the contract method 0xc4d66de8.

Solidity: function initialize(address mintingManager) returns()

func (*ContractSession) IsApprovedForAll

func (_Contract *ContractSession) IsApprovedForAll(owner common.Address, operator common.Address) (bool, error)

IsApprovedForAll is a free data retrieval call binding the contract method 0xe985e9c5.

Solidity: function isApprovedForAll(address owner, address operator) view returns(bool)

func (*ContractSession) IsApprovedOrOwner

func (_Contract *ContractSession) IsApprovedOrOwner(spender common.Address, tokenId *big.Int) (bool, error)

IsApprovedOrOwner is a free data retrieval call binding the contract method 0x430c2081.

Solidity: function isApprovedOrOwner(address spender, uint256 tokenId) view returns(bool)

func (*ContractSession) IsTrustedForwarder

func (_Contract *ContractSession) IsTrustedForwarder(forwarder common.Address) (bool, error)

IsTrustedForwarder is a free data retrieval call binding the contract method 0x572b6c05.

Solidity: function isTrustedForwarder(address forwarder) view returns(bool)

func (*ContractSession) Mint

func (_Contract *ContractSession) Mint(to common.Address, tokenId *big.Int, uri string) (*types.Transaction, error)

Mint is a paid mutator transaction binding the contract method 0xd3fc9864.

Solidity: function mint(address to, uint256 tokenId, string uri) returns()

func (*ContractSession) MintWithRecords

func (_Contract *ContractSession) MintWithRecords(to common.Address, tokenId *big.Int, uri string, keys []string, values []string) (*types.Transaction, error)

MintWithRecords is a paid mutator transaction binding the contract method 0xb0f59177.

Solidity: function mintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values) returns()

func (*ContractSession) NAME

func (_Contract *ContractSession) NAME() (string, error)

NAME is a free data retrieval call binding the contract method 0xa3f4df7e.

Solidity: function NAME() view returns(string)

func (*ContractSession) Name

func (_Contract *ContractSession) Name() (string, error)

Name is a free data retrieval call binding the contract method 0x06fdde03.

Solidity: function name() view returns(string)

func (*ContractSession) NonceOf

func (_Contract *ContractSession) NonceOf(tokenId *big.Int) (*big.Int, error)

NonceOf is a free data retrieval call binding the contract method 0x6ccbae5f.

Solidity: function nonceOf(uint256 tokenId) view returns(uint256)

func (*ContractSession) OwnerOf

func (_Contract *ContractSession) OwnerOf(tokenId *big.Int) (common.Address, error)

OwnerOf is a free data retrieval call binding the contract method 0x6352211e.

Solidity: function ownerOf(uint256 tokenId) view returns(address)

func (*ContractSession) Reconfigure

func (_Contract *ContractSession) Reconfigure(keys []string, values []string, tokenId *big.Int) (*types.Transaction, error)

Reconfigure is a paid mutator transaction binding the contract method 0xec129eea.

Solidity: function reconfigure(string[] keys, string[] values, uint256 tokenId) returns()

func (*ContractSession) ReconfigureFor

func (_Contract *ContractSession) ReconfigureFor(keys []string, values []string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

ReconfigureFor is a paid mutator transaction binding the contract method 0xa3557e6c.

Solidity: function reconfigureFor(string[] keys, string[] values, uint256 tokenId, bytes signature) returns()

func (*ContractSession) Reset

func (_Contract *ContractSession) Reset(tokenId *big.Int) (*types.Transaction, error)

Reset is a paid mutator transaction binding the contract method 0x310bd74b.

Solidity: function reset(uint256 tokenId) returns()

func (*ContractSession) ResetFor

func (_Contract *ContractSession) ResetFor(tokenId *big.Int, signature []byte) (*types.Transaction, error)

ResetFor is a paid mutator transaction binding the contract method 0xb87abc11.

Solidity: function resetFor(uint256 tokenId, bytes signature) returns()

func (*ContractSession) ResolverOf

func (_Contract *ContractSession) ResolverOf(tokenId *big.Int) (common.Address, error)

ResolverOf is a free data retrieval call binding the contract method 0xb3f9e4cb.

Solidity: function resolverOf(uint256 tokenId) view returns(address)

func (*ContractSession) Root

func (_Contract *ContractSession) Root() (*big.Int, error)

Root is a free data retrieval call binding the contract method 0xebf0c717.

Solidity: function root() pure returns(uint256)

func (*ContractSession) SafeMint

func (_Contract *ContractSession) SafeMint(to common.Address, tokenId *big.Int, uri string, _data []byte) (*types.Transaction, error)

SafeMint is a paid mutator transaction binding the contract method 0xb55bc617.

Solidity: function safeMint(address to, uint256 tokenId, string uri, bytes _data) returns()

func (*ContractSession) SafeMint0

func (_Contract *ContractSession) SafeMint0(to common.Address, tokenId *big.Int, uri string) (*types.Transaction, error)

SafeMint0 is a paid mutator transaction binding the contract method 0xcd279c7c.

Solidity: function safeMint(address to, uint256 tokenId, string uri) returns()

func (*ContractSession) SafeMintWithRecords

func (_Contract *ContractSession) SafeMintWithRecords(to common.Address, tokenId *big.Int, uri string, keys []string, values []string) (*types.Transaction, error)

SafeMintWithRecords is a paid mutator transaction binding the contract method 0x4348b562.

Solidity: function safeMintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values) returns()

func (*ContractSession) SafeMintWithRecords0

func (_Contract *ContractSession) SafeMintWithRecords0(to common.Address, tokenId *big.Int, uri string, keys []string, values []string, _data []byte) (*types.Transaction, error)

SafeMintWithRecords0 is a paid mutator transaction binding the contract method 0xefda4d3e.

Solidity: function safeMintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values, bytes _data) returns()

func (*ContractSession) SafeTransferFrom

func (_Contract *ContractSession) SafeTransferFrom(from common.Address, to common.Address, tokenId *big.Int) (*types.Transaction, error)

SafeTransferFrom is a paid mutator transaction binding the contract method 0x42842e0e.

Solidity: function safeTransferFrom(address from, address to, uint256 tokenId) returns()

func (*ContractSession) SafeTransferFrom0

func (_Contract *ContractSession) SafeTransferFrom0(from common.Address, to common.Address, tokenId *big.Int, _data []byte) (*types.Transaction, error)

SafeTransferFrom0 is a paid mutator transaction binding the contract method 0xb88d4fde.

Solidity: function safeTransferFrom(address from, address to, uint256 tokenId, bytes _data) returns()

func (*ContractSession) SafeTransferFromFor

func (_Contract *ContractSession) SafeTransferFromFor(from common.Address, to common.Address, tokenId *big.Int, _data []byte, signature []byte) (*types.Transaction, error)

SafeTransferFromFor is a paid mutator transaction binding the contract method 0x280d9b05.

Solidity: function safeTransferFromFor(address from, address to, uint256 tokenId, bytes _data, bytes signature) returns()

func (*ContractSession) SafeTransferFromFor0

func (_Contract *ContractSession) SafeTransferFromFor0(from common.Address, to common.Address, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SafeTransferFromFor0 is a paid mutator transaction binding the contract method 0x6debcb8d.

Solidity: function safeTransferFromFor(address from, address to, uint256 tokenId, bytes signature) returns()

func (*ContractSession) Set

func (_Contract *ContractSession) Set(key string, value string, tokenId *big.Int) (*types.Transaction, error)

Set is a paid mutator transaction binding the contract method 0x47c81699.

Solidity: function set(string key, string value, uint256 tokenId) returns()

func (*ContractSession) SetApprovalForAll

func (_Contract *ContractSession) SetApprovalForAll(operator common.Address, approved bool) (*types.Transaction, error)

SetApprovalForAll is a paid mutator transaction binding the contract method 0xa22cb465.

Solidity: function setApprovalForAll(address operator, bool approved) returns()

func (*ContractSession) SetByHash

func (_Contract *ContractSession) SetByHash(keyHash *big.Int, value string, tokenId *big.Int) (*types.Transaction, error)

SetByHash is a paid mutator transaction binding the contract method 0x4a72584d.

Solidity: function setByHash(uint256 keyHash, string value, uint256 tokenId) returns()

func (*ContractSession) SetFor

func (_Contract *ContractSession) SetFor(key string, value string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SetFor is a paid mutator transaction binding the contract method 0xc5974073.

Solidity: function setFor(string key, string value, uint256 tokenId, bytes signature) returns()

func (*ContractSession) SetMany

func (_Contract *ContractSession) SetMany(keys []string, values []string, tokenId *big.Int) (*types.Transaction, error)

SetMany is a paid mutator transaction binding the contract method 0xce92b33e.

Solidity: function setMany(string[] keys, string[] values, uint256 tokenId) returns()

func (*ContractSession) SetManyByHash

func (_Contract *ContractSession) SetManyByHash(keyHashes []*big.Int, values []string, tokenId *big.Int) (*types.Transaction, error)

SetManyByHash is a paid mutator transaction binding the contract method 0x27f18975.

Solidity: function setManyByHash(uint256[] keyHashes, string[] values, uint256 tokenId) returns()

func (*ContractSession) SetManyFor

func (_Contract *ContractSession) SetManyFor(keys []string, values []string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SetManyFor is a paid mutator transaction binding the contract method 0x8f69c188.

Solidity: function setManyFor(string[] keys, string[] values, uint256 tokenId, bytes signature) returns()

func (*ContractSession) SetOwner

func (_Contract *ContractSession) SetOwner(to common.Address, tokenId *big.Int) (*types.Transaction, error)

SetOwner is a paid mutator transaction binding the contract method 0xab3b87fe.

Solidity: function setOwner(address to, uint256 tokenId) returns()

func (*ContractSession) SetTokenURIPrefix

func (_Contract *ContractSession) SetTokenURIPrefix(prefix string) (*types.Transaction, error)

SetTokenURIPrefix is a paid mutator transaction binding the contract method 0x99e0dd7c.

Solidity: function setTokenURIPrefix(string prefix) returns()

func (*ContractSession) SupportsInterface

func (_Contract *ContractSession) SupportsInterface(interfaceId [4]byte) (bool, error)

SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7.

Solidity: function supportsInterface(bytes4 interfaceId) view returns(bool)

func (*ContractSession) Symbol

func (_Contract *ContractSession) Symbol() (string, error)

Symbol is a free data retrieval call binding the contract method 0x95d89b41.

Solidity: function symbol() view returns(string)

func (*ContractSession) TokenURI

func (_Contract *ContractSession) TokenURI(tokenId *big.Int) (string, error)

TokenURI is a free data retrieval call binding the contract method 0xc87b56dd.

Solidity: function tokenURI(uint256 tokenId) view returns(string)

func (*ContractSession) TransferFrom

func (_Contract *ContractSession) TransferFrom(from common.Address, to common.Address, tokenId *big.Int) (*types.Transaction, error)

TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.

Solidity: function transferFrom(address from, address to, uint256 tokenId) returns()

func (*ContractSession) TransferFromFor

func (_Contract *ContractSession) TransferFromFor(from common.Address, to common.Address, tokenId *big.Int, signature []byte) (*types.Transaction, error)

TransferFromFor is a paid mutator transaction binding the contract method 0xef2c3088.

Solidity: function transferFromFor(address from, address to, uint256 tokenId, bytes signature) returns()

func (*ContractSession) VERSION

func (_Contract *ContractSession) VERSION() (string, error)

VERSION is a free data retrieval call binding the contract method 0xffa1ad74.

Solidity: function VERSION() view returns(string)

func (*ContractSession) Verify

func (_Contract *ContractSession) Verify(req RegistryForwarderForwardRequest, signature []byte) (bool, error)

Verify is a free data retrieval call binding the contract method 0x1796e180.

Solidity: function verify((address,uint256,uint256,uint256,bytes) req, bytes signature) view returns(bool)

type ContractSet

type ContractSet struct {
	TokenId    *big.Int
	KeyIndex   common.Hash
	ValueIndex common.Hash
	Key        string
	Value      string
	Raw        types.Log // Blockchain specific contextual infos
}

ContractSet represents a Set event raised by the Contract contract.

type ContractSetIterator

type ContractSetIterator struct {
	Event *ContractSet // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractSetIterator is returned from FilterSet and is used to iterate over the raw logs and unpacked data for Set events raised by the Contract contract.

func (*ContractSetIterator) Close

func (it *ContractSetIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractSetIterator) Error

func (it *ContractSetIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractSetIterator) Next

func (it *ContractSetIterator) Next() bool

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type ContractTransactor

type ContractTransactor struct {
	// contains filtered or unexported fields
}

ContractTransactor is an auto generated write-only Go binding around an Ethereum contract.

func NewContractTransactor

func NewContractTransactor(address common.Address, transactor bind.ContractTransactor) (*ContractTransactor, error)

NewContractTransactor creates a new write-only instance of Contract, bound to a specific deployed contract.

func (*ContractTransactor) AddKey

func (_Contract *ContractTransactor) AddKey(opts *bind.TransactOpts, key string) (*types.Transaction, error)

AddKey is a paid mutator transaction binding the contract method 0x50382c1a.

Solidity: function addKey(string key) returns()

func (*ContractTransactor) Approve

func (_Contract *ContractTransactor) Approve(opts *bind.TransactOpts, to common.Address, tokenId *big.Int) (*types.Transaction, error)

Approve is a paid mutator transaction binding the contract method 0x095ea7b3.

Solidity: function approve(address to, uint256 tokenId) returns()

func (*ContractTransactor) Burn

func (_Contract *ContractTransactor) Burn(opts *bind.TransactOpts, tokenId *big.Int) (*types.Transaction, error)

Burn is a paid mutator transaction binding the contract method 0x42966c68.

Solidity: function burn(uint256 tokenId) returns()

func (*ContractTransactor) BurnFor

func (_Contract *ContractTransactor) BurnFor(opts *bind.TransactOpts, tokenId *big.Int, signature []byte) (*types.Transaction, error)

BurnFor is a paid mutator transaction binding the contract method 0x61603dd9.

Solidity: function burnFor(uint256 tokenId, bytes signature) returns()

func (*ContractTransactor) Execute

func (_Contract *ContractTransactor) Execute(opts *bind.TransactOpts, req RegistryForwarderForwardRequest, signature []byte) (*types.Transaction, error)

Execute is a paid mutator transaction binding the contract method 0x185be4e5.

Solidity: function execute((address,uint256,uint256,uint256,bytes) req, bytes signature) returns(bool, bytes)

func (*ContractTransactor) Initialize

func (_Contract *ContractTransactor) Initialize(opts *bind.TransactOpts, mintingManager common.Address) (*types.Transaction, error)

Initialize is a paid mutator transaction binding the contract method 0xc4d66de8.

Solidity: function initialize(address mintingManager) returns()

func (*ContractTransactor) Mint

func (_Contract *ContractTransactor) Mint(opts *bind.TransactOpts, to common.Address, tokenId *big.Int, uri string) (*types.Transaction, error)

Mint is a paid mutator transaction binding the contract method 0xd3fc9864.

Solidity: function mint(address to, uint256 tokenId, string uri) returns()

func (*ContractTransactor) MintWithRecords

func (_Contract *ContractTransactor) MintWithRecords(opts *bind.TransactOpts, to common.Address, tokenId *big.Int, uri string, keys []string, values []string) (*types.Transaction, error)

MintWithRecords is a paid mutator transaction binding the contract method 0xb0f59177.

Solidity: function mintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values) returns()

func (*ContractTransactor) Reconfigure

func (_Contract *ContractTransactor) Reconfigure(opts *bind.TransactOpts, keys []string, values []string, tokenId *big.Int) (*types.Transaction, error)

Reconfigure is a paid mutator transaction binding the contract method 0xec129eea.

Solidity: function reconfigure(string[] keys, string[] values, uint256 tokenId) returns()

func (*ContractTransactor) ReconfigureFor

func (_Contract *ContractTransactor) ReconfigureFor(opts *bind.TransactOpts, keys []string, values []string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

ReconfigureFor is a paid mutator transaction binding the contract method 0xa3557e6c.

Solidity: function reconfigureFor(string[] keys, string[] values, uint256 tokenId, bytes signature) returns()

func (*ContractTransactor) Reset

func (_Contract *ContractTransactor) Reset(opts *bind.TransactOpts, tokenId *big.Int) (*types.Transaction, error)

Reset is a paid mutator transaction binding the contract method 0x310bd74b.

Solidity: function reset(uint256 tokenId) returns()

func (*ContractTransactor) ResetFor

func (_Contract *ContractTransactor) ResetFor(opts *bind.TransactOpts, tokenId *big.Int, signature []byte) (*types.Transaction, error)

ResetFor is a paid mutator transaction binding the contract method 0xb87abc11.

Solidity: function resetFor(uint256 tokenId, bytes signature) returns()

func (*ContractTransactor) SafeMint

func (_Contract *ContractTransactor) SafeMint(opts *bind.TransactOpts, to common.Address, tokenId *big.Int, uri string, _data []byte) (*types.Transaction, error)

SafeMint is a paid mutator transaction binding the contract method 0xb55bc617.

Solidity: function safeMint(address to, uint256 tokenId, string uri, bytes _data) returns()

func (*ContractTransactor) SafeMint0

func (_Contract *ContractTransactor) SafeMint0(opts *bind.TransactOpts, to common.Address, tokenId *big.Int, uri string) (*types.Transaction, error)

SafeMint0 is a paid mutator transaction binding the contract method 0xcd279c7c.

Solidity: function safeMint(address to, uint256 tokenId, string uri) returns()

func (*ContractTransactor) SafeMintWithRecords

func (_Contract *ContractTransactor) SafeMintWithRecords(opts *bind.TransactOpts, to common.Address, tokenId *big.Int, uri string, keys []string, values []string) (*types.Transaction, error)

SafeMintWithRecords is a paid mutator transaction binding the contract method 0x4348b562.

Solidity: function safeMintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values) returns()

func (*ContractTransactor) SafeMintWithRecords0

func (_Contract *ContractTransactor) SafeMintWithRecords0(opts *bind.TransactOpts, to common.Address, tokenId *big.Int, uri string, keys []string, values []string, _data []byte) (*types.Transaction, error)

SafeMintWithRecords0 is a paid mutator transaction binding the contract method 0xefda4d3e.

Solidity: function safeMintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values, bytes _data) returns()

func (*ContractTransactor) SafeTransferFrom

func (_Contract *ContractTransactor) SafeTransferFrom(opts *bind.TransactOpts, from common.Address, to common.Address, tokenId *big.Int) (*types.Transaction, error)

SafeTransferFrom is a paid mutator transaction binding the contract method 0x42842e0e.

Solidity: function safeTransferFrom(address from, address to, uint256 tokenId) returns()

func (*ContractTransactor) SafeTransferFrom0

func (_Contract *ContractTransactor) SafeTransferFrom0(opts *bind.TransactOpts, from common.Address, to common.Address, tokenId *big.Int, _data []byte) (*types.Transaction, error)

SafeTransferFrom0 is a paid mutator transaction binding the contract method 0xb88d4fde.

Solidity: function safeTransferFrom(address from, address to, uint256 tokenId, bytes _data) returns()

func (*ContractTransactor) SafeTransferFromFor

func (_Contract *ContractTransactor) SafeTransferFromFor(opts *bind.TransactOpts, from common.Address, to common.Address, tokenId *big.Int, _data []byte, signature []byte) (*types.Transaction, error)

SafeTransferFromFor is a paid mutator transaction binding the contract method 0x280d9b05.

Solidity: function safeTransferFromFor(address from, address to, uint256 tokenId, bytes _data, bytes signature) returns()

func (*ContractTransactor) SafeTransferFromFor0

func (_Contract *ContractTransactor) SafeTransferFromFor0(opts *bind.TransactOpts, from common.Address, to common.Address, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SafeTransferFromFor0 is a paid mutator transaction binding the contract method 0x6debcb8d.

Solidity: function safeTransferFromFor(address from, address to, uint256 tokenId, bytes signature) returns()

func (*ContractTransactor) Set

func (_Contract *ContractTransactor) Set(opts *bind.TransactOpts, key string, value string, tokenId *big.Int) (*types.Transaction, error)

Set is a paid mutator transaction binding the contract method 0x47c81699.

Solidity: function set(string key, string value, uint256 tokenId) returns()

func (*ContractTransactor) SetApprovalForAll

func (_Contract *ContractTransactor) SetApprovalForAll(opts *bind.TransactOpts, operator common.Address, approved bool) (*types.Transaction, error)

SetApprovalForAll is a paid mutator transaction binding the contract method 0xa22cb465.

Solidity: function setApprovalForAll(address operator, bool approved) returns()

func (*ContractTransactor) SetByHash

func (_Contract *ContractTransactor) SetByHash(opts *bind.TransactOpts, keyHash *big.Int, value string, tokenId *big.Int) (*types.Transaction, error)

SetByHash is a paid mutator transaction binding the contract method 0x4a72584d.

Solidity: function setByHash(uint256 keyHash, string value, uint256 tokenId) returns()

func (*ContractTransactor) SetFor

func (_Contract *ContractTransactor) SetFor(opts *bind.TransactOpts, key string, value string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SetFor is a paid mutator transaction binding the contract method 0xc5974073.

Solidity: function setFor(string key, string value, uint256 tokenId, bytes signature) returns()

func (*ContractTransactor) SetMany

func (_Contract *ContractTransactor) SetMany(opts *bind.TransactOpts, keys []string, values []string, tokenId *big.Int) (*types.Transaction, error)

SetMany is a paid mutator transaction binding the contract method 0xce92b33e.

Solidity: function setMany(string[] keys, string[] values, uint256 tokenId) returns()

func (*ContractTransactor) SetManyByHash

func (_Contract *ContractTransactor) SetManyByHash(opts *bind.TransactOpts, keyHashes []*big.Int, values []string, tokenId *big.Int) (*types.Transaction, error)

SetManyByHash is a paid mutator transaction binding the contract method 0x27f18975.

Solidity: function setManyByHash(uint256[] keyHashes, string[] values, uint256 tokenId) returns()

func (*ContractTransactor) SetManyFor

func (_Contract *ContractTransactor) SetManyFor(opts *bind.TransactOpts, keys []string, values []string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SetManyFor is a paid mutator transaction binding the contract method 0x8f69c188.

Solidity: function setManyFor(string[] keys, string[] values, uint256 tokenId, bytes signature) returns()

func (*ContractTransactor) SetOwner

func (_Contract *ContractTransactor) SetOwner(opts *bind.TransactOpts, to common.Address, tokenId *big.Int) (*types.Transaction, error)

SetOwner is a paid mutator transaction binding the contract method 0xab3b87fe.

Solidity: function setOwner(address to, uint256 tokenId) returns()

func (*ContractTransactor) SetTokenURIPrefix

func (_Contract *ContractTransactor) SetTokenURIPrefix(opts *bind.TransactOpts, prefix string) (*types.Transaction, error)

SetTokenURIPrefix is a paid mutator transaction binding the contract method 0x99e0dd7c.

Solidity: function setTokenURIPrefix(string prefix) returns()

func (*ContractTransactor) TransferFrom

func (_Contract *ContractTransactor) TransferFrom(opts *bind.TransactOpts, from common.Address, to common.Address, tokenId *big.Int) (*types.Transaction, error)

TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.

Solidity: function transferFrom(address from, address to, uint256 tokenId) returns()

func (*ContractTransactor) TransferFromFor

func (_Contract *ContractTransactor) TransferFromFor(opts *bind.TransactOpts, from common.Address, to common.Address, tokenId *big.Int, signature []byte) (*types.Transaction, error)

TransferFromFor is a paid mutator transaction binding the contract method 0xef2c3088.

Solidity: function transferFromFor(address from, address to, uint256 tokenId, bytes signature) returns()

type ContractTransactorRaw

type ContractTransactorRaw struct {
	Contract *ContractTransactor // Generic write-only contract binding to access the raw methods on
}

ContractTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.

func (*ContractTransactorRaw) Transact

func (_Contract *ContractTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)

Transact invokes the (paid) contract method with params as input values.

func (*ContractTransactorRaw) Transfer

func (_Contract *ContractTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)

Transfer initiates a plain transaction to move funds to the contract, calling its default method if one is available.

type ContractTransactorSession

type ContractTransactorSession struct {
	Contract     *ContractTransactor // Generic contract transactor binding to set the session for
	TransactOpts bind.TransactOpts   // Transaction auth options to use throughout this session
}

ContractTransactorSession is an auto generated write-only Go binding around an Ethereum contract, with pre-set transact options.

func (*ContractTransactorSession) AddKey

func (_Contract *ContractTransactorSession) AddKey(key string) (*types.Transaction, error)

AddKey is a paid mutator transaction binding the contract method 0x50382c1a.

Solidity: function addKey(string key) returns()

func (*ContractTransactorSession) Approve

func (_Contract *ContractTransactorSession) Approve(to common.Address, tokenId *big.Int) (*types.Transaction, error)

Approve is a paid mutator transaction binding the contract method 0x095ea7b3.

Solidity: function approve(address to, uint256 tokenId) returns()

func (*ContractTransactorSession) Burn

func (_Contract *ContractTransactorSession) Burn(tokenId *big.Int) (*types.Transaction, error)

Burn is a paid mutator transaction binding the contract method 0x42966c68.

Solidity: function burn(uint256 tokenId) returns()

func (*ContractTransactorSession) BurnFor

func (_Contract *ContractTransactorSession) BurnFor(tokenId *big.Int, signature []byte) (*types.Transaction, error)

BurnFor is a paid mutator transaction binding the contract method 0x61603dd9.

Solidity: function burnFor(uint256 tokenId, bytes signature) returns()

func (*ContractTransactorSession) Execute

func (_Contract *ContractTransactorSession) Execute(req RegistryForwarderForwardRequest, signature []byte) (*types.Transaction, error)

Execute is a paid mutator transaction binding the contract method 0x185be4e5.

Solidity: function execute((address,uint256,uint256,uint256,bytes) req, bytes signature) returns(bool, bytes)

func (*ContractTransactorSession) Initialize

func (_Contract *ContractTransactorSession) Initialize(mintingManager common.Address) (*types.Transaction, error)

Initialize is a paid mutator transaction binding the contract method 0xc4d66de8.

Solidity: function initialize(address mintingManager) returns()

func (*ContractTransactorSession) Mint

func (_Contract *ContractTransactorSession) Mint(to common.Address, tokenId *big.Int, uri string) (*types.Transaction, error)

Mint is a paid mutator transaction binding the contract method 0xd3fc9864.

Solidity: function mint(address to, uint256 tokenId, string uri) returns()

func (*ContractTransactorSession) MintWithRecords

func (_Contract *ContractTransactorSession) MintWithRecords(to common.Address, tokenId *big.Int, uri string, keys []string, values []string) (*types.Transaction, error)

MintWithRecords is a paid mutator transaction binding the contract method 0xb0f59177.

Solidity: function mintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values) returns()

func (*ContractTransactorSession) Reconfigure

func (_Contract *ContractTransactorSession) Reconfigure(keys []string, values []string, tokenId *big.Int) (*types.Transaction, error)

Reconfigure is a paid mutator transaction binding the contract method 0xec129eea.

Solidity: function reconfigure(string[] keys, string[] values, uint256 tokenId) returns()

func (*ContractTransactorSession) ReconfigureFor

func (_Contract *ContractTransactorSession) ReconfigureFor(keys []string, values []string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

ReconfigureFor is a paid mutator transaction binding the contract method 0xa3557e6c.

Solidity: function reconfigureFor(string[] keys, string[] values, uint256 tokenId, bytes signature) returns()

func (*ContractTransactorSession) Reset

func (_Contract *ContractTransactorSession) Reset(tokenId *big.Int) (*types.Transaction, error)

Reset is a paid mutator transaction binding the contract method 0x310bd74b.

Solidity: function reset(uint256 tokenId) returns()

func (*ContractTransactorSession) ResetFor

func (_Contract *ContractTransactorSession) ResetFor(tokenId *big.Int, signature []byte) (*types.Transaction, error)

ResetFor is a paid mutator transaction binding the contract method 0xb87abc11.

Solidity: function resetFor(uint256 tokenId, bytes signature) returns()

func (*ContractTransactorSession) SafeMint

func (_Contract *ContractTransactorSession) SafeMint(to common.Address, tokenId *big.Int, uri string, _data []byte) (*types.Transaction, error)

SafeMint is a paid mutator transaction binding the contract method 0xb55bc617.

Solidity: function safeMint(address to, uint256 tokenId, string uri, bytes _data) returns()

func (*ContractTransactorSession) SafeMint0

func (_Contract *ContractTransactorSession) SafeMint0(to common.Address, tokenId *big.Int, uri string) (*types.Transaction, error)

SafeMint0 is a paid mutator transaction binding the contract method 0xcd279c7c.

Solidity: function safeMint(address to, uint256 tokenId, string uri) returns()

func (*ContractTransactorSession) SafeMintWithRecords

func (_Contract *ContractTransactorSession) SafeMintWithRecords(to common.Address, tokenId *big.Int, uri string, keys []string, values []string) (*types.Transaction, error)

SafeMintWithRecords is a paid mutator transaction binding the contract method 0x4348b562.

Solidity: function safeMintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values) returns()

func (*ContractTransactorSession) SafeMintWithRecords0

func (_Contract *ContractTransactorSession) SafeMintWithRecords0(to common.Address, tokenId *big.Int, uri string, keys []string, values []string, _data []byte) (*types.Transaction, error)

SafeMintWithRecords0 is a paid mutator transaction binding the contract method 0xefda4d3e.

Solidity: function safeMintWithRecords(address to, uint256 tokenId, string uri, string[] keys, string[] values, bytes _data) returns()

func (*ContractTransactorSession) SafeTransferFrom

func (_Contract *ContractTransactorSession) SafeTransferFrom(from common.Address, to common.Address, tokenId *big.Int) (*types.Transaction, error)

SafeTransferFrom is a paid mutator transaction binding the contract method 0x42842e0e.

Solidity: function safeTransferFrom(address from, address to, uint256 tokenId) returns()

func (*ContractTransactorSession) SafeTransferFrom0

func (_Contract *ContractTransactorSession) SafeTransferFrom0(from common.Address, to common.Address, tokenId *big.Int, _data []byte) (*types.Transaction, error)

SafeTransferFrom0 is a paid mutator transaction binding the contract method 0xb88d4fde.

Solidity: function safeTransferFrom(address from, address to, uint256 tokenId, bytes _data) returns()

func (*ContractTransactorSession) SafeTransferFromFor

func (_Contract *ContractTransactorSession) SafeTransferFromFor(from common.Address, to common.Address, tokenId *big.Int, _data []byte, signature []byte) (*types.Transaction, error)

SafeTransferFromFor is a paid mutator transaction binding the contract method 0x280d9b05.

Solidity: function safeTransferFromFor(address from, address to, uint256 tokenId, bytes _data, bytes signature) returns()

func (*ContractTransactorSession) SafeTransferFromFor0

func (_Contract *ContractTransactorSession) SafeTransferFromFor0(from common.Address, to common.Address, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SafeTransferFromFor0 is a paid mutator transaction binding the contract method 0x6debcb8d.

Solidity: function safeTransferFromFor(address from, address to, uint256 tokenId, bytes signature) returns()

func (*ContractTransactorSession) Set

func (_Contract *ContractTransactorSession) Set(key string, value string, tokenId *big.Int) (*types.Transaction, error)

Set is a paid mutator transaction binding the contract method 0x47c81699.

Solidity: function set(string key, string value, uint256 tokenId) returns()

func (*ContractTransactorSession) SetApprovalForAll

func (_Contract *ContractTransactorSession) SetApprovalForAll(operator common.Address, approved bool) (*types.Transaction, error)

SetApprovalForAll is a paid mutator transaction binding the contract method 0xa22cb465.

Solidity: function setApprovalForAll(address operator, bool approved) returns()

func (*ContractTransactorSession) SetByHash

func (_Contract *ContractTransactorSession) SetByHash(keyHash *big.Int, value string, tokenId *big.Int) (*types.Transaction, error)

SetByHash is a paid mutator transaction binding the contract method 0x4a72584d.

Solidity: function setByHash(uint256 keyHash, string value, uint256 tokenId) returns()

func (*ContractTransactorSession) SetFor

func (_Contract *ContractTransactorSession) SetFor(key string, value string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SetFor is a paid mutator transaction binding the contract method 0xc5974073.

Solidity: function setFor(string key, string value, uint256 tokenId, bytes signature) returns()

func (*ContractTransactorSession) SetMany

func (_Contract *ContractTransactorSession) SetMany(keys []string, values []string, tokenId *big.Int) (*types.Transaction, error)

SetMany is a paid mutator transaction binding the contract method 0xce92b33e.

Solidity: function setMany(string[] keys, string[] values, uint256 tokenId) returns()

func (*ContractTransactorSession) SetManyByHash

func (_Contract *ContractTransactorSession) SetManyByHash(keyHashes []*big.Int, values []string, tokenId *big.Int) (*types.Transaction, error)

SetManyByHash is a paid mutator transaction binding the contract method 0x27f18975.

Solidity: function setManyByHash(uint256[] keyHashes, string[] values, uint256 tokenId) returns()

func (*ContractTransactorSession) SetManyFor

func (_Contract *ContractTransactorSession) SetManyFor(keys []string, values []string, tokenId *big.Int, signature []byte) (*types.Transaction, error)

SetManyFor is a paid mutator transaction binding the contract method 0x8f69c188.

Solidity: function setManyFor(string[] keys, string[] values, uint256 tokenId, bytes signature) returns()

func (*ContractTransactorSession) SetOwner

func (_Contract *ContractTransactorSession) SetOwner(to common.Address, tokenId *big.Int) (*types.Transaction, error)

SetOwner is a paid mutator transaction binding the contract method 0xab3b87fe.

Solidity: function setOwner(address to, uint256 tokenId) returns()

func (*ContractTransactorSession) SetTokenURIPrefix

func (_Contract *ContractTransactorSession) SetTokenURIPrefix(prefix string) (*types.Transaction, error)

SetTokenURIPrefix is a paid mutator transaction binding the contract method 0x99e0dd7c.

Solidity: function setTokenURIPrefix(string prefix) returns()

func (*ContractTransactorSession) TransferFrom

func (_Contract *ContractTransactorSession) TransferFrom(from common.Address, to common.Address, tokenId *big.Int) (*types.Transaction, error)

TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.

Solidity: function transferFrom(address from, address to, uint256 tokenId) returns()

func (*ContractTransactorSession) TransferFromFor

func (_Contract *ContractTransactorSession) TransferFromFor(from common.Address, to common.Address, tokenId *big.Int, signature []byte) (*types.Transaction, error)

TransferFromFor is a paid mutator transaction binding the contract method 0xef2c3088.

Solidity: function transferFromFor(address from, address to, uint256 tokenId, bytes signature) returns()

type ContractTransfer

type ContractTransfer struct {
	From    common.Address
	To      common.Address
	TokenId *big.Int
	Raw     types.Log // Blockchain specific contextual infos
}

ContractTransfer represents a Transfer event raised by the Contract contract.

type ContractTransferIterator

type ContractTransferIterator struct {
	Event *ContractTransfer // Event containing the contract specifics and raw log
	// contains filtered or unexported fields
}

ContractTransferIterator is returned from FilterTransfer and is used to iterate over the raw logs and unpacked data for Transfer events raised by the Contract contract.

func (*ContractTransferIterator) Close

func (it *ContractTransferIterator) Close() error

Close terminates the iteration process, releasing any pending underlying resources.

func (*ContractTransferIterator) Error

func (it *ContractTransferIterator) Error() error

Error returns any retrieval or parsing error occurred during filtering.

func (*ContractTransferIterator) Next

func (it *ContractTransferIterator) Next() bool

Next advances the iterator to the subsequent event, returning whether there are any more events found. In case of a retrieval or parsing error, false is returned and Error() can be queried for the exact failure.

type RegistryForwarderForwardRequest

type RegistryForwarderForwardRequest struct {
	From    common.Address
	Gas     *big.Int
	TokenId *big.Int
	Nonce   *big.Int
	Data    []byte
}

RegistryForwarderForwardRequest is an auto generated low-level Go binding around an user-defined struct.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL