Commit c118ba2f authored by Hamdi Allam's avatar Hamdi Allam

run with abigen v1.10.25

parent 79b98b4a
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// AddressManagerMetaData contains all meta data concerning the AddressManager contract.
......@@ -157,11 +156,11 @@ func NewAddressManagerFilterer(address common.Address, filterer bind.ContractFil
// bindAddressManager binds a generic wrapper to an already deployed contract.
func bindAddressManager(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := AddressManagerMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(AddressManagerABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// BaseFeeVaultMetaData contains all meta data concerning the BaseFeeVault contract.
......@@ -157,11 +156,11 @@ func NewBaseFeeVaultFilterer(address common.Address, filterer bind.ContractFilte
// bindBaseFeeVault binds a generic wrapper to an already deployed contract.
func bindBaseFeeVault(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := BaseFeeVaultMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(BaseFeeVaultABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// CrossDomainMessengerMetaData contains all meta data concerning the CrossDomainMessenger contract.
......@@ -135,11 +134,11 @@ func NewCrossDomainMessengerFilterer(address common.Address, filterer bind.Contr
// bindCrossDomainMessenger binds a generic wrapper to an already deployed contract.
func bindCrossDomainMessenger(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := CrossDomainMessengerMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(CrossDomainMessengerABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// DeployerWhitelistMetaData contains all meta data concerning the DeployerWhitelist contract.
......@@ -157,11 +156,11 @@ func NewDeployerWhitelistFilterer(address common.Address, filterer bind.Contract
// bindDeployerWhitelist binds a generic wrapper to an already deployed contract.
func bindDeployerWhitelist(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := DeployerWhitelistMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(DeployerWhitelistABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// DisputeGameFactoryMetaData contains all meta data concerning the DisputeGameFactory contract.
......@@ -157,11 +156,11 @@ func NewDisputeGameFactoryFilterer(address common.Address, filterer bind.Contrac
// bindDisputeGameFactory binds a generic wrapper to an already deployed contract.
func bindDisputeGameFactory(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := DisputeGameFactoryMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(DisputeGameFactoryABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// ERC20MetaData contains all meta data concerning the ERC20 contract.
......@@ -157,11 +156,11 @@ func NewERC20Filterer(address common.Address, filterer bind.ContractFilterer) (*
// bindERC20 binds a generic wrapper to an already deployed contract.
func bindERC20(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := ERC20MetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(ERC20ABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// GasPriceOracleMetaData contains all meta data concerning the GasPriceOracle contract.
......@@ -157,11 +156,11 @@ func NewGasPriceOracleFilterer(address common.Address, filterer bind.ContractFil
// bindGasPriceOracle binds a generic wrapper to an already deployed contract.
func bindGasPriceOracle(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := GasPriceOracleMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(GasPriceOracleABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L1BlockMetaData contains all meta data concerning the L1Block contract.
......@@ -157,11 +156,11 @@ func NewL1BlockFilterer(address common.Address, filterer bind.ContractFilterer)
// bindL1Block binds a generic wrapper to an already deployed contract.
func bindL1Block(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L1BlockMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L1BlockABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L1BlockNumberMetaData contains all meta data concerning the L1BlockNumber contract.
......@@ -157,11 +156,11 @@ func NewL1BlockNumberFilterer(address common.Address, filterer bind.ContractFilt
// bindL1BlockNumber binds a generic wrapper to an already deployed contract.
func bindL1BlockNumber(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L1BlockNumberMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L1BlockNumberABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L1CrossDomainMessengerMetaData contains all meta data concerning the L1CrossDomainMessenger contract.
......@@ -157,11 +156,11 @@ func NewL1CrossDomainMessengerFilterer(address common.Address, filterer bind.Con
// bindL1CrossDomainMessenger binds a generic wrapper to an already deployed contract.
func bindL1CrossDomainMessenger(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L1CrossDomainMessengerMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L1CrossDomainMessengerABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L1ERC721BridgeMetaData contains all meta data concerning the L1ERC721Bridge contract.
......@@ -157,11 +156,11 @@ func NewL1ERC721BridgeFilterer(address common.Address, filterer bind.ContractFil
// bindL1ERC721Bridge binds a generic wrapper to an already deployed contract.
func bindL1ERC721Bridge(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L1ERC721BridgeMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L1ERC721BridgeABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L1FeeVaultMetaData contains all meta data concerning the L1FeeVault contract.
......@@ -157,11 +156,11 @@ func NewL1FeeVaultFilterer(address common.Address, filterer bind.ContractFiltere
// bindL1FeeVault binds a generic wrapper to an already deployed contract.
func bindL1FeeVault(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L1FeeVaultMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L1FeeVaultABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L1StandardBridgeMetaData contains all meta data concerning the L1StandardBridge contract.
......@@ -157,11 +156,11 @@ func NewL1StandardBridgeFilterer(address common.Address, filterer bind.ContractF
// bindL1StandardBridge binds a generic wrapper to an already deployed contract.
func bindL1StandardBridge(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L1StandardBridgeMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L1StandardBridgeABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L2CrossDomainMessengerMetaData contains all meta data concerning the L2CrossDomainMessenger contract.
......@@ -157,11 +156,11 @@ func NewL2CrossDomainMessengerFilterer(address common.Address, filterer bind.Con
// bindL2CrossDomainMessenger binds a generic wrapper to an already deployed contract.
func bindL2CrossDomainMessenger(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L2CrossDomainMessengerMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L2CrossDomainMessengerABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L2ERC721BridgeMetaData contains all meta data concerning the L2ERC721Bridge contract.
......@@ -157,11 +156,11 @@ func NewL2ERC721BridgeFilterer(address common.Address, filterer bind.ContractFil
// bindL2ERC721Bridge binds a generic wrapper to an already deployed contract.
func bindL2ERC721Bridge(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L2ERC721BridgeMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L2ERC721BridgeABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// TypesOutputProposal is an auto generated low-level Go binding around an user-defined struct.
......@@ -164,11 +163,11 @@ func NewL2OutputOracleFilterer(address common.Address, filterer bind.ContractFil
// bindL2OutputOracle binds a generic wrapper to an already deployed contract.
func bindL2OutputOracle(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L2OutputOracleMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L2OutputOracleABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L2StandardBridgeMetaData contains all meta data concerning the L2StandardBridge contract.
......@@ -157,11 +156,11 @@ func NewL2StandardBridgeFilterer(address common.Address, filterer bind.ContractF
// bindL2StandardBridge binds a generic wrapper to an already deployed contract.
func bindL2StandardBridge(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L2StandardBridgeMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L2StandardBridgeABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// L2ToL1MessagePasserMetaData contains all meta data concerning the L2ToL1MessagePasser contract.
......@@ -157,11 +156,11 @@ func NewL2ToL1MessagePasserFilterer(address common.Address, filterer bind.Contra
// bindL2ToL1MessagePasser binds a generic wrapper to an already deployed contract.
func bindL2ToL1MessagePasser(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := L2ToL1MessagePasserMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(L2ToL1MessagePasserABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// LegacyERC20ETHMetaData contains all meta data concerning the LegacyERC20ETH contract.
......@@ -157,11 +156,11 @@ func NewLegacyERC20ETHFilterer(address common.Address, filterer bind.ContractFil
// bindLegacyERC20ETH binds a generic wrapper to an already deployed contract.
func bindLegacyERC20ETH(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := LegacyERC20ETHMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(LegacyERC20ETHABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// LegacyMessagePasserMetaData contains all meta data concerning the LegacyMessagePasser contract.
......@@ -157,11 +156,11 @@ func NewLegacyMessagePasserFilterer(address common.Address, filterer bind.Contra
// bindLegacyMessagePasser binds a generic wrapper to an already deployed contract.
func bindLegacyMessagePasser(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := LegacyMessagePasserMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(LegacyMessagePasserABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// OptimismMintableERC20MetaData contains all meta data concerning the OptimismMintableERC20 contract.
......@@ -157,11 +156,11 @@ func NewOptimismMintableERC20Filterer(address common.Address, filterer bind.Cont
// bindOptimismMintableERC20 binds a generic wrapper to an already deployed contract.
func bindOptimismMintableERC20(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := OptimismMintableERC20MetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(OptimismMintableERC20ABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// OptimismMintableERC20FactoryMetaData contains all meta data concerning the OptimismMintableERC20Factory contract.
......@@ -157,11 +156,11 @@ func NewOptimismMintableERC20FactoryFilterer(address common.Address, filterer bi
// bindOptimismMintableERC20Factory binds a generic wrapper to an already deployed contract.
func bindOptimismMintableERC20Factory(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := OptimismMintableERC20FactoryMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(OptimismMintableERC20FactoryABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// OptimismMintableERC721FactoryMetaData contains all meta data concerning the OptimismMintableERC721Factory contract.
......@@ -157,11 +156,11 @@ func NewOptimismMintableERC721FactoryFilterer(address common.Address, filterer b
// bindOptimismMintableERC721Factory binds a generic wrapper to an already deployed contract.
func bindOptimismMintableERC721Factory(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := OptimismMintableERC721FactoryMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(OptimismMintableERC721FactoryABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// TypesOutputRootProof is an auto generated low-level Go binding around an user-defined struct.
......@@ -175,11 +174,11 @@ func NewOptimismPortalFilterer(address common.Address, filterer bind.ContractFil
// bindOptimismPortal binds a generic wrapper to an already deployed contract.
func bindOptimismPortal(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := OptimismPortalMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(OptimismPortalABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// ProxyMetaData contains all meta data concerning the Proxy contract.
......@@ -157,11 +156,11 @@ func NewProxyFilterer(address common.Address, filterer bind.ContractFilterer) (*
// bindProxy binds a generic wrapper to an already deployed contract.
func bindProxy(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := ProxyMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(ProxyABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// ProxyAdminMetaData contains all meta data concerning the ProxyAdmin contract.
......@@ -157,11 +156,11 @@ func NewProxyAdminFilterer(address common.Address, filterer bind.ContractFiltere
// bindProxyAdmin binds a generic wrapper to an already deployed contract.
func bindProxyAdmin(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := ProxyAdminMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(ProxyAdminABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// SequencerFeeVaultMetaData contains all meta data concerning the SequencerFeeVault contract.
......@@ -157,11 +156,11 @@ func NewSequencerFeeVaultFilterer(address common.Address, filterer bind.Contract
// bindSequencerFeeVault binds a generic wrapper to an already deployed contract.
func bindSequencerFeeVault(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := SequencerFeeVaultMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(SequencerFeeVaultABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// StandardBridgeMetaData contains all meta data concerning the StandardBridge contract.
......@@ -135,11 +134,11 @@ func NewStandardBridgeFilterer(address common.Address, filterer bind.ContractFil
// bindStandardBridge binds a generic wrapper to an already deployed contract.
func bindStandardBridge(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := StandardBridgeMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(StandardBridgeABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// ResourceMeteringResourceConfig is an auto generated low-level Go binding around an user-defined struct.
......@@ -167,11 +166,11 @@ func NewSystemConfigFilterer(address common.Address, filterer bind.ContractFilte
// bindSystemConfig binds a generic wrapper to an already deployed contract.
func bindSystemConfig(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := SystemConfigMetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(SystemConfigABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
......@@ -26,7 +26,6 @@ var (
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// WETH9MetaData contains all meta data concerning the WETH9 contract.
......@@ -157,11 +156,11 @@ func NewWETH9Filterer(address common.Address, filterer bind.ContractFilterer) (*
// bindWETH9 binds a generic wrapper to an already deployed contract.
func bindWETH9(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := WETH9MetaData.GetAbi()
parsed, err := abi.JSON(strings.NewReader(WETH9ABI))
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
return bind.NewBoundContract(address, parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment