accounts/abi: regenerate test data

This commit is contained in:
Jared Wasinger 2025-02-03 20:21:17 -08:00
parent cf0d15d276
commit 484164968c
27 changed files with 39 additions and 39 deletions

View file

@ -46,7 +46,7 @@ func NewCallbackParam() *CallbackParam {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *CallbackParam) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Test is a free data retrieval call binding the contract method 0xd7a5aba2.

View file

@ -46,7 +46,7 @@ func NewCrowdsale() *Crowdsale {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Crowdsale) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
func (crowdsale *Crowdsale) PackConstructor(ifSuccessfulSendTo common.Address, fundingGoalInEthers *big.Int, durationInMinutes *big.Int, etherCostOfEachToken *big.Int, addressOfTokenUsedAsReward common.Address) []byte {

View file

@ -46,7 +46,7 @@ func NewDAO() *DAO {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *DAO) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
func (dAO *DAO) PackConstructor(minimumQuorumForProposals *big.Int, minutesForDebate *big.Int, marginOfVotesForMajority *big.Int, congressLeader common.Address) []byte {

View file

@ -46,7 +46,7 @@ func NewDeeplyNestedArray() *DeeplyNestedArray {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *DeeplyNestedArray) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// DeepUint64Array is a free data retrieval call binding the contract method 0x98ed1856.

View file

@ -46,5 +46,5 @@ func NewEmpty() *Empty {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Empty) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}

View file

@ -45,7 +45,7 @@ func NewEventChecker() *EventChecker {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *EventChecker) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// EventCheckerDynamic represents a Dynamic event raised by the EventChecker contract.

View file

@ -46,7 +46,7 @@ func NewGetter() *Getter {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Getter) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Getter is a free data retrieval call binding the contract method 0x993a04b7.

View file

@ -46,7 +46,7 @@ func NewIdentifierCollision() *IdentifierCollision {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *IdentifierCollision) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// MyVar is a free data retrieval call binding the contract method 0x4ef1f0ad.

View file

@ -45,7 +45,7 @@ func NewInputChecker() *InputChecker {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *InputChecker) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// AnonInput is a free data retrieval call binding the contract method 0x3e708e82.

View file

@ -46,7 +46,7 @@ func NewInteractor() *Interactor {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Interactor) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
func (interactor *Interactor) PackConstructor(str string) []byte {

View file

@ -52,7 +52,7 @@ func NewNameConflict() *NameConflict {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *NameConflict) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// AddRequest is a free data retrieval call binding the contract method 0xcce7b048.

View file

@ -46,13 +46,13 @@ func NewNumericMethodName() *NumericMethodName {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *NumericMethodName) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// E1test is a free data retrieval call binding the contract method 0xffa02795.
// E1test0 is a free data retrieval call binding the contract method 0xffa02795.
//
// Solidity: function _1test() pure returns()
func (numericMethodName *NumericMethodName) PackE1test() []byte {
func (numericMethodName *NumericMethodName) PackE1test0() []byte {
enc, err := numericMethodName.abi.Pack("_1test")
if err != nil {
panic(err)
@ -60,10 +60,10 @@ func (numericMethodName *NumericMethodName) PackE1test() []byte {
return enc
}
// E1test0 is a free data retrieval call binding the contract method 0xd02767c7.
// E1test is a free data retrieval call binding the contract method 0xd02767c7.
//
// Solidity: function __1test() pure returns()
func (numericMethodName *NumericMethodName) PackE1test0() []byte {
func (numericMethodName *NumericMethodName) PackE1test() []byte {
enc, err := numericMethodName.abi.Pack("__1test")
if err != nil {
panic(err)

View file

@ -45,7 +45,7 @@ func NewOutputChecker() *OutputChecker {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *OutputChecker) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// AnonOutput is a free data retrieval call binding the contract method 0x008bda05.

View file

@ -46,7 +46,7 @@ func NewOverload() *Overload {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Overload) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Foo is a free data retrieval call binding the contract method 0x04bc52f8.

View file

@ -46,7 +46,7 @@ func NewRangeKeyword() *RangeKeyword {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *RangeKeyword) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// FunctionWithKeywordParameter is a free data retrieval call binding the contract method 0x527a119f.

View file

@ -46,7 +46,7 @@ func NewSlicer() *Slicer {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Slicer) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// EchoAddresses is a free data retrieval call binding the contract method 0xbe1127a3.

View file

@ -50,7 +50,7 @@ func NewStructs() *Structs {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Structs) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// F is a free data retrieval call binding the contract method 0x28811f59.

View file

@ -51,7 +51,7 @@ func NewStructs() *Structs {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Structs) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// F is a free data retrieval call binding the contract method 0x28811f59.

View file

@ -46,7 +46,7 @@ func NewToken() *Token {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Token) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
func (token *Token) PackConstructor(initialSupply *big.Int, tokenName string, decimalUnits uint8, tokenSymbol string) []byte {

View file

@ -71,7 +71,7 @@ func NewTuple() *Tuple {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Tuple) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Func1 is a free data retrieval call binding the contract method 0x443c79b4.

View file

@ -46,7 +46,7 @@ func NewTupler() *Tupler {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Tupler) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Tuple is a free data retrieval call binding the contract method 0x3175aae2.

View file

@ -46,7 +46,7 @@ func NewUnderscorer() *Underscorer {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *Underscorer) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// AllPurelyUnderscoredOutput is a free data retrieval call binding the contract method 0xb564b34d.

View file

@ -53,7 +53,7 @@ func NewDB() *DB {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *DB) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Get is a free data retrieval call binding the contract method 0x9507d39a.

View file

@ -52,7 +52,7 @@ func NewC() *C {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *C) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// DoSomethingWithManyArgs is a free data retrieval call binding the contract method 0x6fd8b968.

View file

@ -50,7 +50,7 @@ func NewC1() *C1 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *C1) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
func (c1 *C1) PackConstructor(v1 *big.Int, v2 *big.Int) []byte {
@ -113,7 +113,7 @@ func NewC2() *C2 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *C2) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
func (c2 *C2) PackConstructor(v1 *big.Int, v2 *big.Int) []byte {
@ -172,7 +172,7 @@ func NewL1() *L1 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *L1) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Do is a free data retrieval call binding the contract method 0x2ad11272.
@ -226,7 +226,7 @@ func NewL2() *L2 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *L2) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Do is a free data retrieval call binding the contract method 0x2ad11272.
@ -280,7 +280,7 @@ func NewL2b() *L2b {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *L2b) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Do is a free data retrieval call binding the contract method 0x2ad11272.
@ -331,7 +331,7 @@ func NewL3() *L3 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *L3) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Do is a free data retrieval call binding the contract method 0x2ad11272.
@ -386,7 +386,7 @@ func NewL4() *L4 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *L4) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Do is a free data retrieval call binding the contract method 0x2ad11272.
@ -440,7 +440,7 @@ func NewL4b() *L4b {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *L4b) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Do is a free data retrieval call binding the contract method 0x2ad11272.

View file

@ -46,7 +46,7 @@ func NewC() *C {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *C) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Bar is a free data retrieval call binding the contract method 0xb0a378b0.
@ -152,7 +152,7 @@ func NewC2() *C2 {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *C2) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// Foo is a free data retrieval call binding the contract method 0xbfb4ebcf.

View file

@ -46,7 +46,7 @@ func NewMyContract() *MyContract {
// Instance creates a wrapper for a deployed contract instance at the given address.
// Use this to create the instance object passed to abigen v2 library functions Call, Transact, etc.
func (c *MyContract) Instance(backend bind.ContractBackend, addr common.Address) bind.BoundContract {
return bind.NewContractInstance(backend, addr, c.abi)
return bind.NewBoundContract(backend, addr, c.abi)
}
// GetNums is a free data retrieval call binding the contract method 0xbd6d1007.