mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
24 lines
979 B
Go
24 lines
979 B
Go
|
package deposit
|
||
|
|
||
|
import (
|
||
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||
|
)
|
||
|
|
||
|
// NewDepositContractcallFromBoundContract creates a new instance of DepositContractCaller, bound to
|
||
|
// a specific deployed contract.
|
||
|
func NewDepositContractCallerFromBoundContract(contract *bind.BoundContract) DepositContractCaller {
|
||
|
return DepositContractCaller{contract: contract}
|
||
|
}
|
||
|
|
||
|
// NewDepositContractTransactorFromBoundContract creates a new instance of
|
||
|
// DepositContractTransactor, bound to a specific deployed contract.
|
||
|
func NewDepositContractTransactorFromBoundContract(contract *bind.BoundContract) DepositContractTransactor {
|
||
|
return DepositContractTransactor{contract: contract}
|
||
|
}
|
||
|
|
||
|
// NewDepositContractFiltererFromBoundContract creates a new instance of
|
||
|
// DepositContractFilterer, bound to a specific deployed contract.
|
||
|
func NewDepositContractFiltererFromBoundContract(contract *bind.BoundContract) DepositContractFilterer {
|
||
|
return DepositContractFilterer{contract: contract}
|
||
|
}
|