erc20.go 47 KB

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