mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-10 05:53:46 +00:00
31 lines
1.1 KiB
Go
31 lines
1.1 KiB
Go
// Copyright 2024 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package bind
|
|
|
|
import bind1 "github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
|
|
type ContractBackend = bind1.ContractBackend
|
|
|
|
type MetaData = bind1.MetaData
|
|
|
|
type FilterOpts = bind1.FilterOpts
|
|
|
|
type WatchOpts = bind1.WatchOpts
|
|
|
|
type TransactOpts = bind1.TransactOpts
|
|
|
|
type CallOpts = bind1.CallOpts
|