NewBasicTransactor creates a new write-only instance of Basic, bound to a specific deployed contract.
(address common.Address, transactor bind.ContractTransactor)
| 139 | |
| 140 | // NewBasicTransactor creates a new write-only instance of Basic, bound to a specific deployed contract. |
| 141 | func NewBasicTransactor(address common.Address, transactor bind.ContractTransactor) (*BasicTransactor, error) { |
| 142 | contract, err := bindBasic(address, nil, transactor, nil) |
| 143 | if err != nil { |
| 144 | return nil, err |
| 145 | } |
| 146 | return &BasicTransactor{contract: contract}, nil |
| 147 | } |
| 148 | |
| 149 | // NewBasicFilterer creates a new log filterer instance of Basic, bound to a specific deployed contract. |
| 150 | func NewBasicFilterer(address common.Address, filterer bind.ContractFilterer) (*BasicFilterer, error) { |
nothing calls this directly
no test coverage detected