BridgeD

package
v0.6.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 23, 2024 License: AGPL-3.0, AGPL-3.0-or-later Imports: 9 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BridgeDABI = BridgeDMetaData.ABI

BridgeDABI is the input ABI used to generate the binding from. Deprecated: Use BridgeDMetaData.ABI instead.

View Source
var BridgeDBin = BridgeDMetaData.Bin

BridgeDBin is the compiled bytecode used for deploying new contracts. Deprecated: Use BridgeDMetaData.Bin instead.

View Source
var BridgeDMetaData = &bind.MetaData{
	ABI: "[{\"inputs\":[],\"name\":\"exec\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}]",
	Bin: "0x6080604052348015600f57600080fd5b50607d8061001e6000396000f3fe60806040526004361060205760003560e01c8063c1c0e9c414602b57600080fd5b36602657005b600080fd5b6045600080546001600160a01b0319163317905534600155565b00fea2646970667358221220aaf44f2ad2fa35f506fc332df1f7e991eab5ff654446615796a1e5d3419bee9364736f6c634300080c0033",
}

BridgeDMetaData contains all meta data concerning the BridgeD contract.

Functions

This section is empty.

Types

type BridgeD

type BridgeD struct {
	BridgeDCaller     // Read-only binding to the contract
	BridgeDTransactor // Write-only binding to the contract
	BridgeDFilterer   // Log filterer for contract events
}

BridgeD is an auto generated Go binding around an Ethereum contract.

func DeployBridgeD

func DeployBridgeD(auth *bind.TransactOpts, backend bind.ContractBackend) (common.Address, *types.Transaction, *BridgeD, error)

DeployBridgeD deploys a new Ethereum contract, binding an instance of BridgeD to it.

func NewBridgeD

func NewBridgeD(address common.Address, backend bind.ContractBackend) (*BridgeD, error)

NewBridgeD creates a new instance of BridgeD, bound to a specific deployed contract.

type BridgeDCaller

type BridgeDCaller struct {
	// contains filtered or unexported fields
}

BridgeDCaller is an auto generated read-only Go binding around an Ethereum contract.

func NewBridgeDCaller

func NewBridgeDCaller(address common.Address, caller bind.ContractCaller) (*BridgeDCaller, error)

NewBridgeDCaller creates a new read-only instance of BridgeD, bound to a specific deployed contract.

type BridgeDCallerRaw

type BridgeDCallerRaw struct {
	Contract *BridgeDCaller // Generic read-only contract binding to access the raw methods on
}

BridgeDCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.

func (*BridgeDCallerRaw) Call

func (_BridgeD *BridgeDCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error

Call invokes the (constant) contract method with params as input values and sets the output to result. The result type might be a single field for simple returns, a slice of interfaces for anonymous returns and a struct for named returns.

type BridgeDCallerSession

type BridgeDCallerSession struct {
	Contract *BridgeDCaller // Generic contract caller binding to set the session for
	CallOpts bind.CallOpts  // Call options to use throughout this session
}

BridgeDCallerSession is an auto generated read-only Go binding around an Ethereum contract, with pre-set call options.

type BridgeDFilterer

type BridgeDFilterer struct {
	// contains filtered or unexported fields
}

BridgeDFilterer is an auto generated log filtering Go binding around an Ethereum contract events.

func NewBridgeDFilterer

func NewBridgeDFilterer(address common.Address, filterer bind.ContractFilterer) (*BridgeDFilterer, error)

NewBridgeDFilterer creates a new log filterer instance of BridgeD, bound to a specific deployed contract.

type BridgeDRaw

type BridgeDRaw struct {
	Contract *BridgeD // Generic contract binding to access the raw methods on
}

BridgeDRaw is an auto generated low-level Go binding around an Ethereum contract.

func (*BridgeDRaw) Call

func (_BridgeD *BridgeDRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error

Call invokes the (constant) contract method with params as input values and sets the output to result. The result type might be a single field for simple returns, a slice of interfaces for anonymous returns and a struct for named returns.

func (*BridgeDRaw) Transact

func (_BridgeD *BridgeDRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)

Transact invokes the (paid) contract method with params as input values.

func (*BridgeDRaw) Transfer

func (_BridgeD *BridgeDRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)

Transfer initiates a plain transaction to move funds to the contract, calling its default method if one is available.

type BridgeDSession

type BridgeDSession struct {
	Contract     *BridgeD          // Generic contract binding to set the session for
	CallOpts     bind.CallOpts     // Call options to use throughout this session
	TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}

BridgeDSession is an auto generated Go binding around an Ethereum contract, with pre-set call and transact options.

func (*BridgeDSession) Exec

func (_BridgeD *BridgeDSession) Exec() (*types.Transaction, error)

Exec is a paid mutator transaction binding the contract method 0xc1c0e9c4.

Solidity: function exec() payable returns()

func (*BridgeDSession) Receive

func (_BridgeD *BridgeDSession) Receive() (*types.Transaction, error)

Receive is a paid mutator transaction binding the contract receive function.

Solidity: receive() payable returns()

type BridgeDTransactor

type BridgeDTransactor struct {
	// contains filtered or unexported fields
}

BridgeDTransactor is an auto generated write-only Go binding around an Ethereum contract.

func NewBridgeDTransactor

func NewBridgeDTransactor(address common.Address, transactor bind.ContractTransactor) (*BridgeDTransactor, error)

NewBridgeDTransactor creates a new write-only instance of BridgeD, bound to a specific deployed contract.

func (*BridgeDTransactor) Exec

func (_BridgeD *BridgeDTransactor) Exec(opts *bind.TransactOpts) (*types.Transaction, error)

Exec is a paid mutator transaction binding the contract method 0xc1c0e9c4.

Solidity: function exec() payable returns()

func (*BridgeDTransactor) Receive

func (_BridgeD *BridgeDTransactor) Receive(opts *bind.TransactOpts) (*types.Transaction, error)

Receive is a paid mutator transaction binding the contract receive function.

Solidity: receive() payable returns()

type BridgeDTransactorRaw

type BridgeDTransactorRaw struct {
	Contract *BridgeDTransactor // Generic write-only contract binding to access the raw methods on
}

BridgeDTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.

func (*BridgeDTransactorRaw) Transact

func (_BridgeD *BridgeDTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)

Transact invokes the (paid) contract method with params as input values.

func (*BridgeDTransactorRaw) Transfer

func (_BridgeD *BridgeDTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)

Transfer initiates a plain transaction to move funds to the contract, calling its default method if one is available.

type BridgeDTransactorSession

type BridgeDTransactorSession struct {
	Contract     *BridgeDTransactor // Generic contract transactor binding to set the session for
	TransactOpts bind.TransactOpts  // Transaction auth options to use throughout this session
}

BridgeDTransactorSession is an auto generated write-only Go binding around an Ethereum contract, with pre-set transact options.

func (*BridgeDTransactorSession) Exec

func (_BridgeD *BridgeDTransactorSession) Exec() (*types.Transaction, error)

Exec is a paid mutator transaction binding the contract method 0xc1c0e9c4.

Solidity: function exec() payable returns()

func (*BridgeDTransactorSession) Receive

func (_BridgeD *BridgeDTransactorSession) Receive() (*types.Transaction, error)

Receive is a paid mutator transaction binding the contract receive function.

Solidity: receive() payable returns()

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL