1
0
Fork 0
forked from forks/go-multicall
go-multicall-modded/contracts/contract_multicall/interface.go
2023-04-24 15:27:26 +03:00

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)
}