mirror of
https://github.com/forta-network/go-multicall.git
synced 2026-02-26 07:37:23 +00:00
10 lines
256 B
Go
10 lines
256 B
Go
package contract_multicall
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
)
|
|
|
|
// Interface is an abstraction of the contract.
|
|
type Interface interface {
|
|
Aggregate3(opts *bind.CallOpts, calls []Multicall3Call3) ([]Multicall3Result, error)
|
|
}
|