erc20.go 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. // Code generated - DO NOT EDIT.
  2. // This file is a generated binding and any manual changes will be lost.
  3. package erc20
  4. import (
  5. "math/big"
  6. "strings"
  7. ethereum "github.com/ethereum/go-ethereum"
  8. "github.com/ethereum/go-ethereum/accounts/abi"
  9. "github.com/ethereum/go-ethereum/accounts/abi/bind"
  10. "github.com/ethereum/go-ethereum/common"
  11. "github.com/ethereum/go-ethereum/core/types"
  12. "github.com/ethereum/go-ethereum/event"
  13. )
  14. // Reference imports to suppress errors if they are not otherwise used.
  15. var (
  16. _ = big.NewInt
  17. _ = strings.NewReader
  18. _ = ethereum.NotFound
  19. _ = bind.Bind
  20. _ = common.Big1
  21. _ = types.BloomLookup
  22. _ = event.NewSubscription
  23. )
  24. // Erc20ABI is the input ABI used to generate the binding from.
  25. const Erc20ABI = "[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]"
  26. // Erc20Bin is the compiled bytecode used for deploying new contracts.
  27. var Erc20Bin = "0x60806040523480156200001157600080fd5b506040516200175a3803806200175a833981810160405281019062000037919062000193565b81600390805190602001906200004f92919062000071565b5080600490805190602001906200006892919062000071565b50505062000376565b8280546200007f906200029b565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b60006200013862000132846200022f565b62000206565b9050828152602081018484840111156200015157600080fd5b6200015e84828562000265565b509392505050565b600082601f8301126200017857600080fd5b81516200018a84826020860162000121565b91505092915050565b60008060408385031215620001a757600080fd5b600083015167ffffffffffffffff811115620001c257600080fd5b620001d08582860162000166565b925050602083015167ffffffffffffffff811115620001ee57600080fd5b620001fc8582860162000166565b9150509250929050565b60006200021262000225565b9050620002208282620002d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200024d576200024c62000336565b5b620002588262000365565b9050602081019050919050565b60005b838110156200028557808201518184015260208101905062000268565b8381111562000295576000848401525b50505050565b60006002820490506001821680620002b457607f821691505b60208210811415620002cb57620002ca62000307565b5b50919050565b620002dc8262000365565b810181811067ffffffffffffffff82111715620002fe57620002fd62000336565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6113d480620003866000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e40565b60405180910390f35b6100e660048036038101906100e19190610c8e565b610308565b6040516100f39190610e25565b60405180910390f35b610104610326565b6040516101119190610f42565b60405180910390f35b610134600480360381019061012f9190610c3f565b610330565b6040516101419190610e25565b60405180910390f35b610152610431565b60405161015f9190610f5d565b60405180910390f35b610182600480360381019061017d9190610c8e565b61043a565b60405161018f9190610e25565b60405180910390f35b6101b260048036038101906101ad9190610bda565b6104e6565b6040516101bf9190610f42565b60405180910390f35b6101d061052e565b6040516101dd9190610e40565b60405180910390f35b61020060048036038101906101fb9190610c8e565b6105c0565b60405161020d9190610e25565b60405180910390f35b610230600480360381019061022b9190610c8e565b6106b4565b60405161023d9190610e25565b60405180910390f35b610260600480360381019061025b9190610c03565b6106d2565b60405161026d9190610f42565b60405180910390f35b606060038054610285906110a6565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110a6565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610759565b8484610761565b6001905092915050565b6000600254905090565b600061033d84848461092c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610388610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610ec2565b60405180910390fd5b61042585610414610759565b85846104209190610fea565b610761565b60019150509392505050565b60006012905090565b60006104dc610447610759565b848460016000610455610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d79190610f94565b610761565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d906110a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610569906110a6565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b600080600160006105cf610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068390610f22565b60405180910390fd5b6106a9610697610759565b8585846106a49190610fea565b610761565b600191505092915050565b60006106c86106c1610759565b848461092c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890610f02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890610e82565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091f9190610f42565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390610ee2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390610e62565b60405180910390fd5b610a17838383610bab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490610ea2565b60405180910390fd5b8181610aa99190610fea565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b399190610f94565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190610f42565b60405180910390a350505050565b505050565b600081359050610bbf81611370565b92915050565b600081359050610bd481611387565b92915050565b600060208284031215610bec57600080fd5b6000610bfa84828501610bb0565b91505092915050565b60008060408385031215610c1657600080fd5b6000610c2485828601610bb0565b9250506020610c3585828601610bb0565b9150509250929050565b600080600060608486031215610c5457600080fd5b6000610c6286828701610bb0565b9350506020610c7386828701610bb0565b9250506040610c8486828701610bc5565b9150509250925092565b60008060408385031215610ca157600080fd5b6000610caf85828601610bb0565b9250506020610cc085828601610bc5565b9150509250929050565b610cd381611030565b82525050565b6000610ce482610f78565b610cee8185610f83565b9350610cfe818560208601611073565b610d0781611136565b840191505092915050565b6000610d1f602383610f83565b9150610d2a82611147565b604082019050919050565b6000610d42602283610f83565b9150610d4d82611196565b604082019050919050565b6000610d65602683610f83565b9150610d70826111e5565b604082019050919050565b6000610d88602883610f83565b9150610d9382611234565b604082019050919050565b6000610dab602583610f83565b9150610db682611283565b604082019050919050565b6000610dce602483610f83565b9150610dd9826112d2565b604082019050919050565b6000610df1602583610f83565b9150610dfc82611321565b604082019050919050565b610e108161105c565b82525050565b610e1f81611066565b82525050565b6000602082019050610e3a6000830184610cca565b92915050565b60006020820190508181036000830152610e5a8184610cd9565b905092915050565b60006020820190508181036000830152610e7b81610d12565b9050919050565b60006020820190508181036000830152610e9b81610d35565b9050919050565b60006020820190508181036000830152610ebb81610d58565b9050919050565b60006020820190508181036000830152610edb81610d7b565b9050919050565b60006020820190508181036000830152610efb81610d9e565b9050919050565b60006020820190508181036000830152610f1b81610dc1565b9050919050565b60006020820190508181036000830152610f3b81610de4565b9050919050565b6000602082019050610f576000830184610e07565b92915050565b6000602082019050610f726000830184610e16565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f9f8261105c565b9150610faa8361105c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610fdf57610fde6110d8565b5b828201905092915050565b6000610ff58261105c565b91506110008361105c565b925082821015611013576110126110d8565b5b828203905092915050565b60006110298261103c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611091578082015181840152602081019050611076565b838111156110a0576000848401525b50505050565b600060028204905060018216806110be57607f821691505b602082108114156110d2576110d1611107565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6113798161101e565b811461138457600080fd5b50565b6113908161105c565b811461139b57600080fd5b5056fea264697066735822122045acfc413040dfd15208b5c20c4b5a2824c71db5dc37795ec1a36861340d816764736f6c63430008040033"
  28. // DeployErc20 deploys a new Ethereum contract, binding an instance of Erc20 to it.
  29. func DeployErc20(auth *bind.TransactOpts, backend bind.ContractBackend, name_ string, symbol_ string) (common.Address, *types.Transaction, *Erc20, error) {
  30. parsed, err := abi.JSON(strings.NewReader(Erc20ABI))
  31. if err != nil {
  32. return common.Address{}, nil, nil, err
  33. }
  34. address, tx, contract, err := bind.DeployContract(auth, parsed, common.FromHex(Erc20Bin), backend, name_, symbol_)
  35. if err != nil {
  36. return common.Address{}, nil, nil, err
  37. }
  38. return address, tx, &Erc20{Erc20Caller: Erc20Caller{contract: contract}, Erc20Transactor: Erc20Transactor{contract: contract}, Erc20Filterer: Erc20Filterer{contract: contract}}, nil
  39. }
  40. // Erc20 is an auto generated Go binding around an Ethereum contract.
  41. type Erc20 struct {
  42. Erc20Caller // Read-only binding to the contract
  43. Erc20Transactor // Write-only binding to the contract
  44. Erc20Filterer // Log filterer for contract events
  45. }
  46. // Erc20Caller is an auto generated read-only Go binding around an Ethereum contract.
  47. type Erc20Caller struct {
  48. contract *bind.BoundContract // Generic contract wrapper for the low level calls
  49. }
  50. // Erc20Transactor is an auto generated write-only Go binding around an Ethereum contract.
  51. type Erc20Transactor struct {
  52. contract *bind.BoundContract // Generic contract wrapper for the low level calls
  53. }
  54. // Erc20Filterer is an auto generated log filtering Go binding around an Ethereum contract events.
  55. type Erc20Filterer struct {
  56. contract *bind.BoundContract // Generic contract wrapper for the low level calls
  57. }
  58. // Erc20Session is an auto generated Go binding around an Ethereum contract,
  59. // with pre-set call and transact options.
  60. type Erc20Session struct {
  61. Contract *Erc20 // Generic contract binding to set the session for
  62. CallOpts bind.CallOpts // Call options to use throughout this session
  63. TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
  64. }
  65. // Erc20CallerSession is an auto generated read-only Go binding around an Ethereum contract,
  66. // with pre-set call options.
  67. type Erc20CallerSession struct {
  68. Contract *Erc20Caller // Generic contract caller binding to set the session for
  69. CallOpts bind.CallOpts // Call options to use throughout this session
  70. }
  71. // Erc20TransactorSession is an auto generated write-only Go binding around an Ethereum contract,
  72. // with pre-set transact options.
  73. type Erc20TransactorSession struct {
  74. Contract *Erc20Transactor // Generic contract transactor binding to set the session for
  75. TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
  76. }
  77. // Erc20Raw is an auto generated low-level Go binding around an Ethereum contract.
  78. type Erc20Raw struct {
  79. Contract *Erc20 // Generic contract binding to access the raw methods on
  80. }
  81. // Erc20CallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
  82. type Erc20CallerRaw struct {
  83. Contract *Erc20Caller // Generic read-only contract binding to access the raw methods on
  84. }
  85. // Erc20TransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
  86. type Erc20TransactorRaw struct {
  87. Contract *Erc20Transactor // Generic write-only contract binding to access the raw methods on
  88. }
  89. // NewErc20 creates a new instance of Erc20, bound to a specific deployed contract.
  90. func NewErc20(address common.Address, backend bind.ContractBackend) (*Erc20, error) {
  91. contract, err := bindErc20(address, backend, backend, backend)
  92. if err != nil {
  93. return nil, err
  94. }
  95. return &Erc20{Erc20Caller: Erc20Caller{contract: contract}, Erc20Transactor: Erc20Transactor{contract: contract}, Erc20Filterer: Erc20Filterer{contract: contract}}, nil
  96. }
  97. // NewErc20Caller creates a new read-only instance of Erc20, bound to a specific deployed contract.
  98. func NewErc20Caller(address common.Address, caller bind.ContractCaller) (*Erc20Caller, error) {
  99. contract, err := bindErc20(address, caller, nil, nil)
  100. if err != nil {
  101. return nil, err
  102. }
  103. return &Erc20Caller{contract: contract}, nil
  104. }
  105. // NewErc20Transactor creates a new write-only instance of Erc20, bound to a specific deployed contract.
  106. func NewErc20Transactor(address common.Address, transactor bind.ContractTransactor) (*Erc20Transactor, error) {
  107. contract, err := bindErc20(address, nil, transactor, nil)
  108. if err != nil {
  109. return nil, err
  110. }
  111. return &Erc20Transactor{contract: contract}, nil
  112. }
  113. // NewErc20Filterer creates a new log filterer instance of Erc20, bound to a specific deployed contract.
  114. func NewErc20Filterer(address common.Address, filterer bind.ContractFilterer) (*Erc20Filterer, error) {
  115. contract, err := bindErc20(address, nil, nil, filterer)
  116. if err != nil {
  117. return nil, err
  118. }
  119. return &Erc20Filterer{contract: contract}, nil
  120. }
  121. // bindErc20 binds a generic wrapper to an already deployed contract.
  122. func bindErc20(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
  123. parsed, err := abi.JSON(strings.NewReader(Erc20ABI))
  124. if err != nil {
  125. return nil, err
  126. }
  127. return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
  128. }
  129. // Call invokes the (constant) contract method with params as input values and
  130. // sets the output to result. The result type might be a single field for simple
  131. // returns, a slice of interfaces for anonymous returns and a struct for named
  132. // returns.
  133. func (_Erc20 *Erc20Raw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
  134. return _Erc20.Contract.Erc20Caller.contract.Call(opts, result, method, params...)
  135. }
  136. // Transfer initiates a plain transaction to move funds to the contract, calling
  137. // its default method if one is available.
  138. func (_Erc20 *Erc20Raw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
  139. return _Erc20.Contract.Erc20Transactor.contract.Transfer(opts)
  140. }
  141. // Transact invokes the (paid) contract method with params as input values.
  142. func (_Erc20 *Erc20Raw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
  143. return _Erc20.Contract.Erc20Transactor.contract.Transact(opts, method, params...)
  144. }
  145. // Call invokes the (constant) contract method with params as input values and
  146. // sets the output to result. The result type might be a single field for simple
  147. // returns, a slice of interfaces for anonymous returns and a struct for named
  148. // returns.
  149. func (_Erc20 *Erc20CallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
  150. return _Erc20.Contract.contract.Call(opts, result, method, params...)
  151. }
  152. // Transfer initiates a plain transaction to move funds to the contract, calling
  153. // its default method if one is available.
  154. func (_Erc20 *Erc20TransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
  155. return _Erc20.Contract.contract.Transfer(opts)
  156. }
  157. // Transact invokes the (paid) contract method with params as input values.
  158. func (_Erc20 *Erc20TransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
  159. return _Erc20.Contract.contract.Transact(opts, method, params...)
  160. }
  161. // Allowance is a free data retrieval call binding the contract method 0xdd62ed3e.
  162. //
  163. // Solidity: function allowance(address owner, address spender) view returns(uint256)
  164. func (_Erc20 *Erc20Caller) Allowance(opts *bind.CallOpts, owner common.Address, spender common.Address) (*big.Int, error) {
  165. var out []interface{}
  166. err := _Erc20.contract.Call(opts, &out, "allowance", owner, spender)
  167. if err != nil {
  168. return *new(*big.Int), err
  169. }
  170. out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
  171. return out0, err
  172. }
  173. // Allowance is a free data retrieval call binding the contract method 0xdd62ed3e.
  174. //
  175. // Solidity: function allowance(address owner, address spender) view returns(uint256)
  176. func (_Erc20 *Erc20Session) Allowance(owner common.Address, spender common.Address) (*big.Int, error) {
  177. return _Erc20.Contract.Allowance(&_Erc20.CallOpts, owner, spender)
  178. }
  179. // Allowance is a free data retrieval call binding the contract method 0xdd62ed3e.
  180. //
  181. // Solidity: function allowance(address owner, address spender) view returns(uint256)
  182. func (_Erc20 *Erc20CallerSession) Allowance(owner common.Address, spender common.Address) (*big.Int, error) {
  183. return _Erc20.Contract.Allowance(&_Erc20.CallOpts, owner, spender)
  184. }
  185. // BalanceOf is a free data retrieval call binding the contract method 0x70a08231.
  186. //
  187. // Solidity: function balanceOf(address account) view returns(uint256)
  188. func (_Erc20 *Erc20Caller) BalanceOf(opts *bind.CallOpts, account common.Address) (*big.Int, error) {
  189. var out []interface{}
  190. err := _Erc20.contract.Call(opts, &out, "balanceOf", account)
  191. if err != nil {
  192. return *new(*big.Int), err
  193. }
  194. out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
  195. return out0, err
  196. }
  197. // BalanceOf is a free data retrieval call binding the contract method 0x70a08231.
  198. //
  199. // Solidity: function balanceOf(address account) view returns(uint256)
  200. func (_Erc20 *Erc20Session) BalanceOf(account common.Address) (*big.Int, error) {
  201. return _Erc20.Contract.BalanceOf(&_Erc20.CallOpts, account)
  202. }
  203. // BalanceOf is a free data retrieval call binding the contract method 0x70a08231.
  204. //
  205. // Solidity: function balanceOf(address account) view returns(uint256)
  206. func (_Erc20 *Erc20CallerSession) BalanceOf(account common.Address) (*big.Int, error) {
  207. return _Erc20.Contract.BalanceOf(&_Erc20.CallOpts, account)
  208. }
  209. // Decimals is a free data retrieval call binding the contract method 0x313ce567.
  210. //
  211. // Solidity: function decimals() view returns(uint8)
  212. func (_Erc20 *Erc20Caller) Decimals(opts *bind.CallOpts) (uint8, error) {
  213. var out []interface{}
  214. err := _Erc20.contract.Call(opts, &out, "decimals")
  215. if err != nil {
  216. return *new(uint8), err
  217. }
  218. out0 := *abi.ConvertType(out[0], new(uint8)).(*uint8)
  219. return out0, err
  220. }
  221. // Decimals is a free data retrieval call binding the contract method 0x313ce567.
  222. //
  223. // Solidity: function decimals() view returns(uint8)
  224. func (_Erc20 *Erc20Session) Decimals() (uint8, error) {
  225. return _Erc20.Contract.Decimals(&_Erc20.CallOpts)
  226. }
  227. // Decimals is a free data retrieval call binding the contract method 0x313ce567.
  228. //
  229. // Solidity: function decimals() view returns(uint8)
  230. func (_Erc20 *Erc20CallerSession) Decimals() (uint8, error) {
  231. return _Erc20.Contract.Decimals(&_Erc20.CallOpts)
  232. }
  233. // Name is a free data retrieval call binding the contract method 0x06fdde03.
  234. //
  235. // Solidity: function name() view returns(string)
  236. func (_Erc20 *Erc20Caller) Name(opts *bind.CallOpts) (string, error) {
  237. var out []interface{}
  238. err := _Erc20.contract.Call(opts, &out, "name")
  239. if err != nil {
  240. return *new(string), err
  241. }
  242. out0 := *abi.ConvertType(out[0], new(string)).(*string)
  243. return out0, err
  244. }
  245. // Name is a free data retrieval call binding the contract method 0x06fdde03.
  246. //
  247. // Solidity: function name() view returns(string)
  248. func (_Erc20 *Erc20Session) Name() (string, error) {
  249. return _Erc20.Contract.Name(&_Erc20.CallOpts)
  250. }
  251. // Name is a free data retrieval call binding the contract method 0x06fdde03.
  252. //
  253. // Solidity: function name() view returns(string)
  254. func (_Erc20 *Erc20CallerSession) Name() (string, error) {
  255. return _Erc20.Contract.Name(&_Erc20.CallOpts)
  256. }
  257. // Symbol is a free data retrieval call binding the contract method 0x95d89b41.
  258. //
  259. // Solidity: function symbol() view returns(string)
  260. func (_Erc20 *Erc20Caller) Symbol(opts *bind.CallOpts) (string, error) {
  261. var out []interface{}
  262. err := _Erc20.contract.Call(opts, &out, "symbol")
  263. if err != nil {
  264. return *new(string), err
  265. }
  266. out0 := *abi.ConvertType(out[0], new(string)).(*string)
  267. return out0, err
  268. }
  269. // Symbol is a free data retrieval call binding the contract method 0x95d89b41.
  270. //
  271. // Solidity: function symbol() view returns(string)
  272. func (_Erc20 *Erc20Session) Symbol() (string, error) {
  273. return _Erc20.Contract.Symbol(&_Erc20.CallOpts)
  274. }
  275. // Symbol is a free data retrieval call binding the contract method 0x95d89b41.
  276. //
  277. // Solidity: function symbol() view returns(string)
  278. func (_Erc20 *Erc20CallerSession) Symbol() (string, error) {
  279. return _Erc20.Contract.Symbol(&_Erc20.CallOpts)
  280. }
  281. // TotalSupply is a free data retrieval call binding the contract method 0x18160ddd.
  282. //
  283. // Solidity: function totalSupply() view returns(uint256)
  284. func (_Erc20 *Erc20Caller) TotalSupply(opts *bind.CallOpts) (*big.Int, error) {
  285. var out []interface{}
  286. err := _Erc20.contract.Call(opts, &out, "totalSupply")
  287. if err != nil {
  288. return *new(*big.Int), err
  289. }
  290. out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
  291. return out0, err
  292. }
  293. // TotalSupply is a free data retrieval call binding the contract method 0x18160ddd.
  294. //
  295. // Solidity: function totalSupply() view returns(uint256)
  296. func (_Erc20 *Erc20Session) TotalSupply() (*big.Int, error) {
  297. return _Erc20.Contract.TotalSupply(&_Erc20.CallOpts)
  298. }
  299. // TotalSupply is a free data retrieval call binding the contract method 0x18160ddd.
  300. //
  301. // Solidity: function totalSupply() view returns(uint256)
  302. func (_Erc20 *Erc20CallerSession) TotalSupply() (*big.Int, error) {
  303. return _Erc20.Contract.TotalSupply(&_Erc20.CallOpts)
  304. }
  305. // Approve is a paid mutator transaction binding the contract method 0x095ea7b3.
  306. //
  307. // Solidity: function approve(address spender, uint256 amount) returns(bool)
  308. func (_Erc20 *Erc20Transactor) Approve(opts *bind.TransactOpts, spender common.Address, amount *big.Int) (*types.Transaction, error) {
  309. return _Erc20.contract.Transact(opts, "approve", spender, amount)
  310. }
  311. // Approve is a paid mutator transaction binding the contract method 0x095ea7b3.
  312. //
  313. // Solidity: function approve(address spender, uint256 amount) returns(bool)
  314. func (_Erc20 *Erc20Session) Approve(spender common.Address, amount *big.Int) (*types.Transaction, error) {
  315. return _Erc20.Contract.Approve(&_Erc20.TransactOpts, spender, amount)
  316. }
  317. // Approve is a paid mutator transaction binding the contract method 0x095ea7b3.
  318. //
  319. // Solidity: function approve(address spender, uint256 amount) returns(bool)
  320. func (_Erc20 *Erc20TransactorSession) Approve(spender common.Address, amount *big.Int) (*types.Transaction, error) {
  321. return _Erc20.Contract.Approve(&_Erc20.TransactOpts, spender, amount)
  322. }
  323. // DecreaseAllowance is a paid mutator transaction binding the contract method 0xa457c2d7.
  324. //
  325. // Solidity: function decreaseAllowance(address spender, uint256 subtractedValue) returns(bool)
  326. func (_Erc20 *Erc20Transactor) DecreaseAllowance(opts *bind.TransactOpts, spender common.Address, subtractedValue *big.Int) (*types.Transaction, error) {
  327. return _Erc20.contract.Transact(opts, "decreaseAllowance", spender, subtractedValue)
  328. }
  329. // DecreaseAllowance is a paid mutator transaction binding the contract method 0xa457c2d7.
  330. //
  331. // Solidity: function decreaseAllowance(address spender, uint256 subtractedValue) returns(bool)
  332. func (_Erc20 *Erc20Session) DecreaseAllowance(spender common.Address, subtractedValue *big.Int) (*types.Transaction, error) {
  333. return _Erc20.Contract.DecreaseAllowance(&_Erc20.TransactOpts, spender, subtractedValue)
  334. }
  335. // DecreaseAllowance is a paid mutator transaction binding the contract method 0xa457c2d7.
  336. //
  337. // Solidity: function decreaseAllowance(address spender, uint256 subtractedValue) returns(bool)
  338. func (_Erc20 *Erc20TransactorSession) DecreaseAllowance(spender common.Address, subtractedValue *big.Int) (*types.Transaction, error) {
  339. return _Erc20.Contract.DecreaseAllowance(&_Erc20.TransactOpts, spender, subtractedValue)
  340. }
  341. // IncreaseAllowance is a paid mutator transaction binding the contract method 0x39509351.
  342. //
  343. // Solidity: function increaseAllowance(address spender, uint256 addedValue) returns(bool)
  344. func (_Erc20 *Erc20Transactor) IncreaseAllowance(opts *bind.TransactOpts, spender common.Address, addedValue *big.Int) (*types.Transaction, error) {
  345. return _Erc20.contract.Transact(opts, "increaseAllowance", spender, addedValue)
  346. }
  347. // IncreaseAllowance is a paid mutator transaction binding the contract method 0x39509351.
  348. //
  349. // Solidity: function increaseAllowance(address spender, uint256 addedValue) returns(bool)
  350. func (_Erc20 *Erc20Session) IncreaseAllowance(spender common.Address, addedValue *big.Int) (*types.Transaction, error) {
  351. return _Erc20.Contract.IncreaseAllowance(&_Erc20.TransactOpts, spender, addedValue)
  352. }
  353. // IncreaseAllowance is a paid mutator transaction binding the contract method 0x39509351.
  354. //
  355. // Solidity: function increaseAllowance(address spender, uint256 addedValue) returns(bool)
  356. func (_Erc20 *Erc20TransactorSession) IncreaseAllowance(spender common.Address, addedValue *big.Int) (*types.Transaction, error) {
  357. return _Erc20.Contract.IncreaseAllowance(&_Erc20.TransactOpts, spender, addedValue)
  358. }
  359. // Transfer is a paid mutator transaction binding the contract method 0xa9059cbb.
  360. //
  361. // Solidity: function transfer(address recipient, uint256 amount) returns(bool)
  362. func (_Erc20 *Erc20Transactor) Transfer(opts *bind.TransactOpts, recipient common.Address, amount *big.Int) (*types.Transaction, error) {
  363. return _Erc20.contract.Transact(opts, "transfer", recipient, amount)
  364. }
  365. // Transfer is a paid mutator transaction binding the contract method 0xa9059cbb.
  366. //
  367. // Solidity: function transfer(address recipient, uint256 amount) returns(bool)
  368. func (_Erc20 *Erc20Session) Transfer(recipient common.Address, amount *big.Int) (*types.Transaction, error) {
  369. return _Erc20.Contract.Transfer(&_Erc20.TransactOpts, recipient, amount)
  370. }
  371. // Transfer is a paid mutator transaction binding the contract method 0xa9059cbb.
  372. //
  373. // Solidity: function transfer(address recipient, uint256 amount) returns(bool)
  374. func (_Erc20 *Erc20TransactorSession) Transfer(recipient common.Address, amount *big.Int) (*types.Transaction, error) {
  375. return _Erc20.Contract.Transfer(&_Erc20.TransactOpts, recipient, amount)
  376. }
  377. // TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.
  378. //
  379. // Solidity: function transferFrom(address sender, address recipient, uint256 amount) returns(bool)
  380. func (_Erc20 *Erc20Transactor) TransferFrom(opts *bind.TransactOpts, sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error) {
  381. return _Erc20.contract.Transact(opts, "transferFrom", sender, recipient, amount)
  382. }
  383. // TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.
  384. //
  385. // Solidity: function transferFrom(address sender, address recipient, uint256 amount) returns(bool)
  386. func (_Erc20 *Erc20Session) TransferFrom(sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error) {
  387. return _Erc20.Contract.TransferFrom(&_Erc20.TransactOpts, sender, recipient, amount)
  388. }
  389. // TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.
  390. //
  391. // Solidity: function transferFrom(address sender, address recipient, uint256 amount) returns(bool)
  392. func (_Erc20 *Erc20TransactorSession) TransferFrom(sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error) {
  393. return _Erc20.Contract.TransferFrom(&_Erc20.TransactOpts, sender, recipient, amount)
  394. }
  395. // Erc20ApprovalIterator is returned from FilterApproval and is used to iterate over the raw logs and unpacked data for Approval events raised by the Erc20 contract.
  396. type Erc20ApprovalIterator struct {
  397. Event *Erc20Approval // Event containing the contract specifics and raw log
  398. contract *bind.BoundContract // Generic contract to use for unpacking event data
  399. event string // Event name to use for unpacking event data
  400. logs chan types.Log // Log channel receiving the found contract events
  401. sub ethereum.Subscription // Subscription for errors, completion and termination
  402. done bool // Whether the subscription completed delivering logs
  403. fail error // Occurred error to stop iteration
  404. }
  405. // Next advances the iterator to the subsequent event, returning whether there
  406. // are any more events found. In case of a retrieval or parsing error, false is
  407. // returned and Error() can be queried for the exact failure.
  408. func (it *Erc20ApprovalIterator) Next() bool {
  409. // If the iterator failed, stop iterating
  410. if it.fail != nil {
  411. return false
  412. }
  413. // If the iterator completed, deliver directly whatever's available
  414. if it.done {
  415. select {
  416. case log := <-it.logs:
  417. it.Event = new(Erc20Approval)
  418. if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
  419. it.fail = err
  420. return false
  421. }
  422. it.Event.Raw = log
  423. return true
  424. default:
  425. return false
  426. }
  427. }
  428. // Iterator still in progress, wait for either a data or an error event
  429. select {
  430. case log := <-it.logs:
  431. it.Event = new(Erc20Approval)
  432. if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
  433. it.fail = err
  434. return false
  435. }
  436. it.Event.Raw = log
  437. return true
  438. case err := <-it.sub.Err():
  439. it.done = true
  440. it.fail = err
  441. return it.Next()
  442. }
  443. }
  444. // Error returns any retrieval or parsing error occurred during filtering.
  445. func (it *Erc20ApprovalIterator) Error() error {
  446. return it.fail
  447. }
  448. // Close terminates the iteration process, releasing any pending underlying
  449. // resources.
  450. func (it *Erc20ApprovalIterator) Close() error {
  451. it.sub.Unsubscribe()
  452. return nil
  453. }
  454. // Erc20Approval represents a Approval event raised by the Erc20 contract.
  455. type Erc20Approval struct {
  456. Owner common.Address
  457. Spender common.Address
  458. Value *big.Int
  459. Raw types.Log // Blockchain specific contextual infos
  460. }
  461. // FilterApproval is a free log retrieval operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.
  462. //
  463. // Solidity: event Approval(address indexed owner, address indexed spender, uint256 value)
  464. func (_Erc20 *Erc20Filterer) FilterApproval(opts *bind.FilterOpts, owner []common.Address, spender []common.Address) (*Erc20ApprovalIterator, error) {
  465. var ownerRule []interface{}
  466. for _, ownerItem := range owner {
  467. ownerRule = append(ownerRule, ownerItem)
  468. }
  469. var spenderRule []interface{}
  470. for _, spenderItem := range spender {
  471. spenderRule = append(spenderRule, spenderItem)
  472. }
  473. logs, sub, err := _Erc20.contract.FilterLogs(opts, "Approval", ownerRule, spenderRule)
  474. if err != nil {
  475. return nil, err
  476. }
  477. return &Erc20ApprovalIterator{contract: _Erc20.contract, event: "Approval", logs: logs, sub: sub}, nil
  478. }
  479. // WatchApproval is a free log subscription operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.
  480. //
  481. // Solidity: event Approval(address indexed owner, address indexed spender, uint256 value)
  482. func (_Erc20 *Erc20Filterer) WatchApproval(opts *bind.WatchOpts, sink chan<- *Erc20Approval, owner []common.Address, spender []common.Address) (event.Subscription, error) {
  483. var ownerRule []interface{}
  484. for _, ownerItem := range owner {
  485. ownerRule = append(ownerRule, ownerItem)
  486. }
  487. var spenderRule []interface{}
  488. for _, spenderItem := range spender {
  489. spenderRule = append(spenderRule, spenderItem)
  490. }
  491. logs, sub, err := _Erc20.contract.WatchLogs(opts, "Approval", ownerRule, spenderRule)
  492. if err != nil {
  493. return nil, err
  494. }
  495. return event.NewSubscription(func(quit <-chan struct{}) error {
  496. defer sub.Unsubscribe()
  497. for {
  498. select {
  499. case log := <-logs:
  500. // New log arrived, parse the event and forward to the user
  501. event := new(Erc20Approval)
  502. if err := _Erc20.contract.UnpackLog(event, "Approval", log); err != nil {
  503. return err
  504. }
  505. event.Raw = log
  506. select {
  507. case sink <- event:
  508. case err := <-sub.Err():
  509. return err
  510. case <-quit:
  511. return nil
  512. }
  513. case err := <-sub.Err():
  514. return err
  515. case <-quit:
  516. return nil
  517. }
  518. }
  519. }), nil
  520. }
  521. // ParseApproval is a log parse operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.
  522. //
  523. // Solidity: event Approval(address indexed owner, address indexed spender, uint256 value)
  524. func (_Erc20 *Erc20Filterer) ParseApproval(log types.Log) (*Erc20Approval, error) {
  525. event := new(Erc20Approval)
  526. if err := _Erc20.contract.UnpackLog(event, "Approval", log); err != nil {
  527. return nil, err
  528. }
  529. event.Raw = log
  530. return event, nil
  531. }
  532. // Erc20TransferIterator is returned from FilterTransfer and is used to iterate over the raw logs and unpacked data for Transfer events raised by the Erc20 contract.
  533. type Erc20TransferIterator struct {
  534. Event *Erc20Transfer // Event containing the contract specifics and raw log
  535. contract *bind.BoundContract // Generic contract to use for unpacking event data
  536. event string // Event name to use for unpacking event data
  537. logs chan types.Log // Log channel receiving the found contract events
  538. sub ethereum.Subscription // Subscription for errors, completion and termination
  539. done bool // Whether the subscription completed delivering logs
  540. fail error // Occurred error to stop iteration
  541. }
  542. // Next advances the iterator to the subsequent event, returning whether there
  543. // are any more events found. In case of a retrieval or parsing error, false is
  544. // returned and Error() can be queried for the exact failure.
  545. func (it *Erc20TransferIterator) Next() bool {
  546. // If the iterator failed, stop iterating
  547. if it.fail != nil {
  548. return false
  549. }
  550. // If the iterator completed, deliver directly whatever's available
  551. if it.done {
  552. select {
  553. case log := <-it.logs:
  554. it.Event = new(Erc20Transfer)
  555. if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
  556. it.fail = err
  557. return false
  558. }
  559. it.Event.Raw = log
  560. return true
  561. default:
  562. return false
  563. }
  564. }
  565. // Iterator still in progress, wait for either a data or an error event
  566. select {
  567. case log := <-it.logs:
  568. it.Event = new(Erc20Transfer)
  569. if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
  570. it.fail = err
  571. return false
  572. }
  573. it.Event.Raw = log
  574. return true
  575. case err := <-it.sub.Err():
  576. it.done = true
  577. it.fail = err
  578. return it.Next()
  579. }
  580. }
  581. // Error returns any retrieval or parsing error occurred during filtering.
  582. func (it *Erc20TransferIterator) Error() error {
  583. return it.fail
  584. }
  585. // Close terminates the iteration process, releasing any pending underlying
  586. // resources.
  587. func (it *Erc20TransferIterator) Close() error {
  588. it.sub.Unsubscribe()
  589. return nil
  590. }
  591. // Erc20Transfer represents a Transfer event raised by the Erc20 contract.
  592. type Erc20Transfer struct {
  593. From common.Address
  594. To common.Address
  595. Value *big.Int
  596. Raw types.Log // Blockchain specific contextual infos
  597. }
  598. // FilterTransfer is a free log retrieval operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.
  599. //
  600. // Solidity: event Transfer(address indexed from, address indexed to, uint256 value)
  601. func (_Erc20 *Erc20Filterer) FilterTransfer(opts *bind.FilterOpts, from []common.Address, to []common.Address) (*Erc20TransferIterator, error) {
  602. var fromRule []interface{}
  603. for _, fromItem := range from {
  604. fromRule = append(fromRule, fromItem)
  605. }
  606. var toRule []interface{}
  607. for _, toItem := range to {
  608. toRule = append(toRule, toItem)
  609. }
  610. logs, sub, err := _Erc20.contract.FilterLogs(opts, "Transfer", fromRule, toRule)
  611. if err != nil {
  612. return nil, err
  613. }
  614. return &Erc20TransferIterator{contract: _Erc20.contract, event: "Transfer", logs: logs, sub: sub}, nil
  615. }
  616. // WatchTransfer is a free log subscription operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.
  617. //
  618. // Solidity: event Transfer(address indexed from, address indexed to, uint256 value)
  619. func (_Erc20 *Erc20Filterer) WatchTransfer(opts *bind.WatchOpts, sink chan<- *Erc20Transfer, from []common.Address, to []common.Address) (event.Subscription, error) {
  620. var fromRule []interface{}
  621. for _, fromItem := range from {
  622. fromRule = append(fromRule, fromItem)
  623. }
  624. var toRule []interface{}
  625. for _, toItem := range to {
  626. toRule = append(toRule, toItem)
  627. }
  628. logs, sub, err := _Erc20.contract.WatchLogs(opts, "Transfer", fromRule, toRule)
  629. if err != nil {
  630. return nil, err
  631. }
  632. return event.NewSubscription(func(quit <-chan struct{}) error {
  633. defer sub.Unsubscribe()
  634. for {
  635. select {
  636. case log := <-logs:
  637. // New log arrived, parse the event and forward to the user
  638. event := new(Erc20Transfer)
  639. if err := _Erc20.contract.UnpackLog(event, "Transfer", log); err != nil {
  640. return err
  641. }
  642. event.Raw = log
  643. select {
  644. case sink <- event:
  645. case err := <-sub.Err():
  646. return err
  647. case <-quit:
  648. return nil
  649. }
  650. case err := <-sub.Err():
  651. return err
  652. case <-quit:
  653. return nil
  654. }
  655. }
  656. }), nil
  657. }
  658. // ParseTransfer is a log parse operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.
  659. //
  660. // Solidity: event Transfer(address indexed from, address indexed to, uint256 value)
  661. func (_Erc20 *Erc20Filterer) ParseTransfer(log types.Log) (*Erc20Transfer, error) {
  662. event := new(Erc20Transfer)
  663. if err := _Erc20.contract.UnpackLog(event, "Transfer", log); err != nil {
  664. return nil, err
  665. }
  666. event.Raw = log
  667. return event, nil
  668. }