mocks

package
v0.0.11 Latest Latest
Warning

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

Go to latest
Published: Dec 8, 2022 License: MIT Imports: 24 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewMockBlockHeader

func NewMockBlockHeader() *objs.BlockHeader

func NewMockLogger

func NewMockLogger() *logrus.Logger

func NewMockOwnState

func NewMockOwnState() *objs.OwnState

func NewMockSnapshotTx

func NewMockSnapshotTx() *types.Transaction

func NewMockSnapshotTx2

func NewMockSnapshotTx2() *types.Transaction

func NewMockStorage

func NewMockStorage() *dynamics.Storage

func NewTestDB

func NewTestDB() *db.Database

func NewTestRawDB

func NewTestRawDB() *badger.DB

Types

type AdminClientSetAdminHandlerFunc

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

AdminClientSetAdminHandlerFunc describes the behavior when the SetAdminHandler method of the parent MockAdminClient instance is invoked.

func (*AdminClientSetAdminHandlerFunc) History

History returns a sequence of AdminClientSetAdminHandlerFuncCall objects describing the invocations of this function.

func (*AdminClientSetAdminHandlerFunc) PushHook

func (f *AdminClientSetAdminHandlerFunc) PushHook(hook func(interfaces.AdminHandler))

PushHook adds a function to the end of hook queue. Each invocation of the SetAdminHandler method of the parent MockAdminClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminClientSetAdminHandlerFunc) PushReturn

func (f *AdminClientSetAdminHandlerFunc) PushReturn()

PushReturn calls PushHook with a function that returns the given values.

func (*AdminClientSetAdminHandlerFunc) SetDefaultHook

func (f *AdminClientSetAdminHandlerFunc) SetDefaultHook(hook func(interfaces.AdminHandler))

SetDefaultHook sets function that is called when the SetAdminHandler method of the parent MockAdminClient instance is invoked and the hook queue is empty.

func (*AdminClientSetAdminHandlerFunc) SetDefaultReturn

func (f *AdminClientSetAdminHandlerFunc) SetDefaultReturn()

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminClientSetAdminHandlerFuncCall

type AdminClientSetAdminHandlerFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 interfaces.AdminHandler
}

AdminClientSetAdminHandlerFuncCall is an object that describes an invocation of method SetAdminHandler on an instance of MockAdminClient.

func (AdminClientSetAdminHandlerFuncCall) Args

func (c AdminClientSetAdminHandlerFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminClientSetAdminHandlerFuncCall) Results

func (c AdminClientSetAdminHandlerFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerAddPrivateKeyFunc

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

AdminHandlerAddPrivateKeyFunc describes the behavior when the AddPrivateKey method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerAddPrivateKeyFunc) History

History returns a sequence of AdminHandlerAddPrivateKeyFuncCall objects describing the invocations of this function.

func (*AdminHandlerAddPrivateKeyFunc) PushHook

func (f *AdminHandlerAddPrivateKeyFunc) PushHook(hook func([]byte, constants.CurveSpec) error)

PushHook adds a function to the end of hook queue. Each invocation of the AddPrivateKey method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerAddPrivateKeyFunc) PushReturn

func (f *AdminHandlerAddPrivateKeyFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerAddPrivateKeyFunc) SetDefaultHook

func (f *AdminHandlerAddPrivateKeyFunc) SetDefaultHook(hook func([]byte, constants.CurveSpec) error)

SetDefaultHook sets function that is called when the AddPrivateKey method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerAddPrivateKeyFunc) SetDefaultReturn

func (f *AdminHandlerAddPrivateKeyFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerAddPrivateKeyFuncCall

type AdminHandlerAddPrivateKeyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 []byte
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 constants.CurveSpec
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

AdminHandlerAddPrivateKeyFuncCall is an object that describes an invocation of method AddPrivateKey on an instance of MockAdminHandler.

func (AdminHandlerAddPrivateKeyFuncCall) Args

func (c AdminHandlerAddPrivateKeyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerAddPrivateKeyFuncCall) Results

func (c AdminHandlerAddPrivateKeyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerAddSnapshotFunc

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

AdminHandlerAddSnapshotFunc describes the behavior when the AddSnapshot method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerAddSnapshotFunc) History

History returns a sequence of AdminHandlerAddSnapshotFuncCall objects describing the invocations of this function.

func (*AdminHandlerAddSnapshotFunc) PushHook

func (f *AdminHandlerAddSnapshotFunc) PushHook(hook func(*objs.BlockHeader, bool) error)

PushHook adds a function to the end of hook queue. Each invocation of the AddSnapshot method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerAddSnapshotFunc) PushReturn

func (f *AdminHandlerAddSnapshotFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerAddSnapshotFunc) SetDefaultHook

func (f *AdminHandlerAddSnapshotFunc) SetDefaultHook(hook func(*objs.BlockHeader, bool) error)

SetDefaultHook sets function that is called when the AddSnapshot method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerAddSnapshotFunc) SetDefaultReturn

func (f *AdminHandlerAddSnapshotFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerAddSnapshotFuncCall

type AdminHandlerAddSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *objs.BlockHeader
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 bool
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

AdminHandlerAddSnapshotFuncCall is an object that describes an invocation of method AddSnapshot on an instance of MockAdminHandler.

func (AdminHandlerAddSnapshotFuncCall) Args

func (c AdminHandlerAddSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerAddSnapshotFuncCall) Results

func (c AdminHandlerAddSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerAddValidatorSetFunc

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

AdminHandlerAddValidatorSetFunc describes the behavior when the AddValidatorSet method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerAddValidatorSetFunc) History

History returns a sequence of AdminHandlerAddValidatorSetFuncCall objects describing the invocations of this function.

func (*AdminHandlerAddValidatorSetFunc) PushHook

func (f *AdminHandlerAddValidatorSetFunc) PushHook(hook func(*objs.ValidatorSet) error)

PushHook adds a function to the end of hook queue. Each invocation of the AddValidatorSet method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerAddValidatorSetFunc) PushReturn

func (f *AdminHandlerAddValidatorSetFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerAddValidatorSetFunc) SetDefaultHook

func (f *AdminHandlerAddValidatorSetFunc) SetDefaultHook(hook func(*objs.ValidatorSet) error)

SetDefaultHook sets function that is called when the AddValidatorSet method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerAddValidatorSetFunc) SetDefaultReturn

func (f *AdminHandlerAddValidatorSetFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerAddValidatorSetFuncCall

type AdminHandlerAddValidatorSetFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *objs.ValidatorSet
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

AdminHandlerAddValidatorSetFuncCall is an object that describes an invocation of method AddValidatorSet on an instance of MockAdminHandler.

func (AdminHandlerAddValidatorSetFuncCall) Args

func (c AdminHandlerAddValidatorSetFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerAddValidatorSetFuncCall) Results

func (c AdminHandlerAddValidatorSetFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerIsSynchronizedFunc

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

AdminHandlerIsSynchronizedFunc describes the behavior when the IsSynchronized method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerIsSynchronizedFunc) History

History returns a sequence of AdminHandlerIsSynchronizedFuncCall objects describing the invocations of this function.

func (*AdminHandlerIsSynchronizedFunc) PushHook

func (f *AdminHandlerIsSynchronizedFunc) PushHook(hook func() bool)

PushHook adds a function to the end of hook queue. Each invocation of the IsSynchronized method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerIsSynchronizedFunc) PushReturn

func (f *AdminHandlerIsSynchronizedFunc) PushReturn(r0 bool)

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerIsSynchronizedFunc) SetDefaultHook

func (f *AdminHandlerIsSynchronizedFunc) SetDefaultHook(hook func() bool)

SetDefaultHook sets function that is called when the IsSynchronized method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerIsSynchronizedFunc) SetDefaultReturn

func (f *AdminHandlerIsSynchronizedFunc) SetDefaultReturn(r0 bool)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerIsSynchronizedFuncCall

type AdminHandlerIsSynchronizedFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
}

AdminHandlerIsSynchronizedFuncCall is an object that describes an invocation of method IsSynchronized on an instance of MockAdminHandler.

func (AdminHandlerIsSynchronizedFuncCall) Args

func (c AdminHandlerIsSynchronizedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerIsSynchronizedFuncCall) Results

func (c AdminHandlerIsSynchronizedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerRegisterSnapshotCallbackFunc

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

AdminHandlerRegisterSnapshotCallbackFunc describes the behavior when the RegisterSnapshotCallback method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerRegisterSnapshotCallbackFunc) History

History returns a sequence of AdminHandlerRegisterSnapshotCallbackFuncCall objects describing the invocations of this function.

func (*AdminHandlerRegisterSnapshotCallbackFunc) PushHook

func (f *AdminHandlerRegisterSnapshotCallbackFunc) PushHook(hook func(func(*objs.BlockHeader, int, int) error))

PushHook adds a function to the end of hook queue. Each invocation of the RegisterSnapshotCallback method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerRegisterSnapshotCallbackFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerRegisterSnapshotCallbackFunc) SetDefaultHook

func (f *AdminHandlerRegisterSnapshotCallbackFunc) SetDefaultHook(hook func(func(*objs.BlockHeader, int, int) error))

SetDefaultHook sets function that is called when the RegisterSnapshotCallback method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerRegisterSnapshotCallbackFunc) SetDefaultReturn

func (f *AdminHandlerRegisterSnapshotCallbackFunc) SetDefaultReturn()

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerRegisterSnapshotCallbackFuncCall

type AdminHandlerRegisterSnapshotCallbackFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 func(*objs.BlockHeader, int, int) error
}

AdminHandlerRegisterSnapshotCallbackFuncCall is an object that describes an invocation of method RegisterSnapshotCallback on an instance of MockAdminHandler.

func (AdminHandlerRegisterSnapshotCallbackFuncCall) Args

func (c AdminHandlerRegisterSnapshotCallbackFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerRegisterSnapshotCallbackFuncCall) Results

func (c AdminHandlerRegisterSnapshotCallbackFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerSetSynchronizedFunc

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

AdminHandlerSetSynchronizedFunc describes the behavior when the SetSynchronized method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerSetSynchronizedFunc) History

History returns a sequence of AdminHandlerSetSynchronizedFuncCall objects describing the invocations of this function.

func (*AdminHandlerSetSynchronizedFunc) PushHook

func (f *AdminHandlerSetSynchronizedFunc) PushHook(hook func(bool))

PushHook adds a function to the end of hook queue. Each invocation of the SetSynchronized method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerSetSynchronizedFunc) PushReturn

func (f *AdminHandlerSetSynchronizedFunc) PushReturn()

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerSetSynchronizedFunc) SetDefaultHook

func (f *AdminHandlerSetSynchronizedFunc) SetDefaultHook(hook func(bool))

SetDefaultHook sets function that is called when the SetSynchronized method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerSetSynchronizedFunc) SetDefaultReturn

func (f *AdminHandlerSetSynchronizedFunc) SetDefaultReturn()

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerSetSynchronizedFuncCall

type AdminHandlerSetSynchronizedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 bool
}

AdminHandlerSetSynchronizedFuncCall is an object that describes an invocation of method SetSynchronized on an instance of MockAdminHandler.

func (AdminHandlerSetSynchronizedFuncCall) Args

func (c AdminHandlerSetSynchronizedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerSetSynchronizedFuncCall) Results

func (c AdminHandlerSetSynchronizedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AdminHandlerUpdateDynamicStorageFunc added in v0.0.8

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

AdminHandlerUpdateDynamicStorageFunc describes the behavior when the UpdateDynamicStorage method of the parent MockAdminHandler instance is invoked.

func (*AdminHandlerUpdateDynamicStorageFunc) History added in v0.0.8

History returns a sequence of AdminHandlerUpdateDynamicStorageFuncCall objects describing the invocations of this function.

func (*AdminHandlerUpdateDynamicStorageFunc) PushHook added in v0.0.8

func (f *AdminHandlerUpdateDynamicStorageFunc) PushHook(hook func(uint32, []byte) error)

PushHook adds a function to the end of hook queue. Each invocation of the UpdateDynamicStorage method of the parent MockAdminHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AdminHandlerUpdateDynamicStorageFunc) PushReturn added in v0.0.8

func (f *AdminHandlerUpdateDynamicStorageFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*AdminHandlerUpdateDynamicStorageFunc) SetDefaultHook added in v0.0.8

func (f *AdminHandlerUpdateDynamicStorageFunc) SetDefaultHook(hook func(uint32, []byte) error)

SetDefaultHook sets function that is called when the UpdateDynamicStorage method of the parent MockAdminHandler instance is invoked and the hook queue is empty.

func (*AdminHandlerUpdateDynamicStorageFunc) SetDefaultReturn added in v0.0.8

func (f *AdminHandlerUpdateDynamicStorageFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AdminHandlerUpdateDynamicStorageFuncCall added in v0.0.8

type AdminHandlerUpdateDynamicStorageFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 uint32
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

AdminHandlerUpdateDynamicStorageFuncCall is an object that describes an invocation of method UpdateDynamicStorage on an instance of MockAdminHandler.

func (AdminHandlerUpdateDynamicStorageFuncCall) Args added in v0.0.8

func (c AdminHandlerUpdateDynamicStorageFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AdminHandlerUpdateDynamicStorageFuncCall) Results added in v0.0.8

func (c AdminHandlerUpdateDynamicStorageFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type AllSmartContractsEthereumContractsFunc

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

AllSmartContractsEthereumContractsFunc describes the behavior when the EthereumContracts method of the parent MockAllSmartContracts instance is invoked.

func (*AllSmartContractsEthereumContractsFunc) History

History returns a sequence of AllSmartContractsEthereumContractsFuncCall objects describing the invocations of this function.

func (*AllSmartContractsEthereumContractsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the EthereumContracts method of the parent MockAllSmartContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*AllSmartContractsEthereumContractsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*AllSmartContractsEthereumContractsFunc) SetDefaultHook

func (f *AllSmartContractsEthereumContractsFunc) SetDefaultHook(hook func() layer1.EthereumContracts)

SetDefaultHook sets function that is called when the EthereumContracts method of the parent MockAllSmartContracts instance is invoked and the hook queue is empty.

func (*AllSmartContractsEthereumContractsFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type AllSmartContractsEthereumContractsFuncCall

type AllSmartContractsEthereumContractsFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 layer1.EthereumContracts
}

AllSmartContractsEthereumContractsFuncCall is an object that describes an invocation of method EthereumContracts on an instance of MockAllSmartContracts.

func (AllSmartContractsEthereumContractsFuncCall) Args

func (c AllSmartContractsEthereumContractsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (AllSmartContractsEthereumContractsFuncCall) Results

func (c AllSmartContractsEthereumContractsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientCloseFunc

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

ClientCloseFunc describes the behavior when the Close method of the parent MockClient instance is invoked.

func (*ClientCloseFunc) History

func (f *ClientCloseFunc) History() []ClientCloseFuncCall

History returns a sequence of ClientCloseFuncCall objects describing the invocations of this function.

func (*ClientCloseFunc) PushHook

func (f *ClientCloseFunc) PushHook(hook func())

PushHook adds a function to the end of hook queue. Each invocation of the Close method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientCloseFunc) PushReturn

func (f *ClientCloseFunc) PushReturn()

PushReturn calls PushHook with a function that returns the given values.

func (*ClientCloseFunc) SetDefaultHook

func (f *ClientCloseFunc) SetDefaultHook(hook func())

SetDefaultHook sets function that is called when the Close method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientCloseFunc) SetDefaultReturn

func (f *ClientCloseFunc) SetDefaultReturn()

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientCloseFuncCall

type ClientCloseFuncCall struct{}

ClientCloseFuncCall is an object that describes an invocation of method Close on an instance of MockClient.

func (ClientCloseFuncCall) Args

func (c ClientCloseFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientCloseFuncCall) Results

func (c ClientCloseFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientEndpointInSyncFunc

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

ClientEndpointInSyncFunc describes the behavior when the EndpointInSync method of the parent MockClient instance is invoked.

func (*ClientEndpointInSyncFunc) History

History returns a sequence of ClientEndpointInSyncFuncCall objects describing the invocations of this function.

func (*ClientEndpointInSyncFunc) PushHook

func (f *ClientEndpointInSyncFunc) PushHook(hook func(context.Context) (bool, uint32, error))

PushHook adds a function to the end of hook queue. Each invocation of the EndpointInSync method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientEndpointInSyncFunc) PushReturn

func (f *ClientEndpointInSyncFunc) PushReturn(r0 bool, r1 uint32, r2 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientEndpointInSyncFunc) SetDefaultHook

func (f *ClientEndpointInSyncFunc) SetDefaultHook(hook func(context.Context) (bool, uint32, error))

SetDefaultHook sets function that is called when the EndpointInSync method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientEndpointInSyncFunc) SetDefaultReturn

func (f *ClientEndpointInSyncFunc) SetDefaultReturn(r0 bool, r1 uint32, r2 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientEndpointInSyncFuncCall

type ClientEndpointInSyncFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 uint32
	// Result2 is the value of the 3rd result returned from this method
	// invocation.
	Result2 error
}

ClientEndpointInSyncFuncCall is an object that describes an invocation of method EndpointInSync on an instance of MockClient.

func (ClientEndpointInSyncFuncCall) Args

func (c ClientEndpointInSyncFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientEndpointInSyncFuncCall) Results

func (c ClientEndpointInSyncFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientExtractTransactionSenderFunc

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

ClientExtractTransactionSenderFunc describes the behavior when the ExtractTransactionSender method of the parent MockClient instance is invoked.

func (*ClientExtractTransactionSenderFunc) History

History returns a sequence of ClientExtractTransactionSenderFuncCall objects describing the invocations of this function.

func (*ClientExtractTransactionSenderFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ExtractTransactionSender method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientExtractTransactionSenderFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ClientExtractTransactionSenderFunc) SetDefaultHook

func (f *ClientExtractTransactionSenderFunc) SetDefaultHook(hook func(*types.Transaction) (common.Address, error))

SetDefaultHook sets function that is called when the ExtractTransactionSender method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientExtractTransactionSenderFunc) SetDefaultReturn

func (f *ClientExtractTransactionSenderFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientExtractTransactionSenderFuncCall

type ClientExtractTransactionSenderFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *types.Transaction
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientExtractTransactionSenderFuncCall is an object that describes an invocation of method ExtractTransactionSender on an instance of MockClient.

func (ClientExtractTransactionSenderFuncCall) Args

func (c ClientExtractTransactionSenderFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientExtractTransactionSenderFuncCall) Results

func (c ClientExtractTransactionSenderFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetAccountFunc

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

ClientGetAccountFunc describes the behavior when the GetAccount method of the parent MockClient instance is invoked.

func (*ClientGetAccountFunc) History

History returns a sequence of ClientGetAccountFuncCall objects describing the invocations of this function.

func (*ClientGetAccountFunc) PushHook

func (f *ClientGetAccountFunc) PushHook(hook func(common.Address) (accounts.Account, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetAccount method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetAccountFunc) PushReturn

func (f *ClientGetAccountFunc) PushReturn(r0 accounts.Account, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetAccountFunc) SetDefaultHook

func (f *ClientGetAccountFunc) SetDefaultHook(hook func(common.Address) (accounts.Account, error))

SetDefaultHook sets function that is called when the GetAccount method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetAccountFunc) SetDefaultReturn

func (f *ClientGetAccountFunc) SetDefaultReturn(r0 accounts.Account, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetAccountFuncCall

type ClientGetAccountFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 accounts.Account
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetAccountFuncCall is an object that describes an invocation of method GetAccount on an instance of MockClient.

func (ClientGetAccountFuncCall) Args

func (c ClientGetAccountFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetAccountFuncCall) Results

func (c ClientGetAccountFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetBalanceFunc

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

ClientGetBalanceFunc describes the behavior when the GetBalance method of the parent MockClient instance is invoked.

func (*ClientGetBalanceFunc) History

History returns a sequence of ClientGetBalanceFuncCall objects describing the invocations of this function.

func (*ClientGetBalanceFunc) PushHook

func (f *ClientGetBalanceFunc) PushHook(hook func(common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetBalance method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetBalanceFunc) PushReturn

func (f *ClientGetBalanceFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetBalanceFunc) SetDefaultHook

func (f *ClientGetBalanceFunc) SetDefaultHook(hook func(common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the GetBalance method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetBalanceFunc) SetDefaultReturn

func (f *ClientGetBalanceFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetBalanceFuncCall

type ClientGetBalanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetBalanceFuncCall is an object that describes an invocation of method GetBalance on an instance of MockClient.

func (ClientGetBalanceFuncCall) Args

func (c ClientGetBalanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetBalanceFuncCall) Results

func (c ClientGetBalanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetBlockBaseFeeAndSuggestedGasTipFunc

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

ClientGetBlockBaseFeeAndSuggestedGasTipFunc describes the behavior when the GetBlockBaseFeeAndSuggestedGasTip method of the parent MockClient instance is invoked.

func (*ClientGetBlockBaseFeeAndSuggestedGasTipFunc) History

History returns a sequence of ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall objects describing the invocations of this function.

func (*ClientGetBlockBaseFeeAndSuggestedGasTipFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetBlockBaseFeeAndSuggestedGasTip method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetBlockBaseFeeAndSuggestedGasTipFunc) PushReturn

func (f *ClientGetBlockBaseFeeAndSuggestedGasTipFunc) PushReturn(r0 *big.Int, r1 *big.Int, r2 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetBlockBaseFeeAndSuggestedGasTipFunc) SetDefaultHook

func (f *ClientGetBlockBaseFeeAndSuggestedGasTipFunc) SetDefaultHook(hook func(context.Context) (*big.Int, *big.Int, error))

SetDefaultHook sets function that is called when the GetBlockBaseFeeAndSuggestedGasTip method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetBlockBaseFeeAndSuggestedGasTipFunc) SetDefaultReturn

func (f *ClientGetBlockBaseFeeAndSuggestedGasTipFunc) SetDefaultReturn(r0 *big.Int, r1 *big.Int, r2 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall

type ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 *big.Int
	// Result2 is the value of the 3rd result returned from this method
	// invocation.
	Result2 error
}

ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall is an object that describes an invocation of method GetBlockBaseFeeAndSuggestedGasTip on an instance of MockClient.

func (ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall) Args

func (c ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall) Results

func (c ClientGetBlockBaseFeeAndSuggestedGasTipFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetBlockByNumberFunc

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

ClientGetBlockByNumberFunc describes the behavior when the GetBlockByNumber method of the parent MockClient instance is invoked.

func (*ClientGetBlockByNumberFunc) History

History returns a sequence of ClientGetBlockByNumberFuncCall objects describing the invocations of this function.

func (*ClientGetBlockByNumberFunc) PushHook

func (f *ClientGetBlockByNumberFunc) PushHook(hook func(context.Context, *big.Int) (*types.Block, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetBlockByNumber method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetBlockByNumberFunc) PushReturn

func (f *ClientGetBlockByNumberFunc) PushReturn(r0 *types.Block, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetBlockByNumberFunc) SetDefaultHook

func (f *ClientGetBlockByNumberFunc) SetDefaultHook(hook func(context.Context, *big.Int) (*types.Block, error))

SetDefaultHook sets function that is called when the GetBlockByNumber method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetBlockByNumberFunc) SetDefaultReturn

func (f *ClientGetBlockByNumberFunc) SetDefaultReturn(r0 *types.Block, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetBlockByNumberFuncCall

type ClientGetBlockByNumberFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Block
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetBlockByNumberFuncCall is an object that describes an invocation of method GetBlockByNumber on an instance of MockClient.

func (ClientGetBlockByNumberFuncCall) Args

func (c ClientGetBlockByNumberFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetBlockByNumberFuncCall) Results

func (c ClientGetBlockByNumberFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetCallOptsFunc

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

ClientGetCallOptsFunc describes the behavior when the GetCallOpts method of the parent MockClient instance is invoked.

func (*ClientGetCallOptsFunc) History

History returns a sequence of ClientGetCallOptsFuncCall objects describing the invocations of this function.

func (*ClientGetCallOptsFunc) PushHook

func (f *ClientGetCallOptsFunc) PushHook(hook func(context.Context, accounts.Account) (*bind.CallOpts, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetCallOpts method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetCallOptsFunc) PushReturn

func (f *ClientGetCallOptsFunc) PushReturn(r0 *bind.CallOpts, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetCallOptsFunc) SetDefaultHook

func (f *ClientGetCallOptsFunc) SetDefaultHook(hook func(context.Context, accounts.Account) (*bind.CallOpts, error))

SetDefaultHook sets function that is called when the GetCallOpts method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetCallOptsFunc) SetDefaultReturn

func (f *ClientGetCallOptsFunc) SetDefaultReturn(r0 *bind.CallOpts, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetCallOptsFuncCall

type ClientGetCallOptsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 accounts.Account
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bind.CallOpts
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetCallOptsFuncCall is an object that describes an invocation of method GetCallOpts on an instance of MockClient.

func (ClientGetCallOptsFuncCall) Args

func (c ClientGetCallOptsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetCallOptsFuncCall) Results

func (c ClientGetCallOptsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetCallOptsLatestBlockFunc

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

ClientGetCallOptsLatestBlockFunc describes the behavior when the GetCallOptsLatestBlock method of the parent MockClient instance is invoked.

func (*ClientGetCallOptsLatestBlockFunc) History

History returns a sequence of ClientGetCallOptsLatestBlockFuncCall objects describing the invocations of this function.

func (*ClientGetCallOptsLatestBlockFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetCallOptsLatestBlock method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetCallOptsLatestBlockFunc) PushReturn

func (f *ClientGetCallOptsLatestBlockFunc) PushReturn(r0 *bind.CallOpts)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetCallOptsLatestBlockFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetCallOptsLatestBlock method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetCallOptsLatestBlockFunc) SetDefaultReturn

func (f *ClientGetCallOptsLatestBlockFunc) SetDefaultReturn(r0 *bind.CallOpts)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetCallOptsLatestBlockFuncCall

type ClientGetCallOptsLatestBlockFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 accounts.Account
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bind.CallOpts
}

ClientGetCallOptsLatestBlockFuncCall is an object that describes an invocation of method GetCallOptsLatestBlock on an instance of MockClient.

func (ClientGetCallOptsLatestBlockFuncCall) Args

func (c ClientGetCallOptsLatestBlockFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetCallOptsLatestBlockFuncCall) Results

func (c ClientGetCallOptsLatestBlockFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetChainIDFunc

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

ClientGetChainIDFunc describes the behavior when the GetChainID method of the parent MockClient instance is invoked.

func (*ClientGetChainIDFunc) History

History returns a sequence of ClientGetChainIDFuncCall objects describing the invocations of this function.

func (*ClientGetChainIDFunc) PushHook

func (f *ClientGetChainIDFunc) PushHook(hook func() *big.Int)

PushHook adds a function to the end of hook queue. Each invocation of the GetChainID method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetChainIDFunc) PushReturn

func (f *ClientGetChainIDFunc) PushReturn(r0 *big.Int)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetChainIDFunc) SetDefaultHook

func (f *ClientGetChainIDFunc) SetDefaultHook(hook func() *big.Int)

SetDefaultHook sets function that is called when the GetChainID method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetChainIDFunc) SetDefaultReturn

func (f *ClientGetChainIDFunc) SetDefaultReturn(r0 *big.Int)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetChainIDFuncCall

type ClientGetChainIDFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
}

ClientGetChainIDFuncCall is an object that describes an invocation of method GetChainID on an instance of MockClient.

func (ClientGetChainIDFuncCall) Args

func (c ClientGetChainIDFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetChainIDFuncCall) Results

func (c ClientGetChainIDFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetCurrentHeightFunc

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

ClientGetCurrentHeightFunc describes the behavior when the GetCurrentHeight method of the parent MockClient instance is invoked.

func (*ClientGetCurrentHeightFunc) History

History returns a sequence of ClientGetCurrentHeightFuncCall objects describing the invocations of this function.

func (*ClientGetCurrentHeightFunc) PushHook

func (f *ClientGetCurrentHeightFunc) PushHook(hook func(context.Context) (uint64, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetCurrentHeight method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetCurrentHeightFunc) PushReturn

func (f *ClientGetCurrentHeightFunc) PushReturn(r0 uint64, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetCurrentHeightFunc) SetDefaultHook

func (f *ClientGetCurrentHeightFunc) SetDefaultHook(hook func(context.Context) (uint64, error))

SetDefaultHook sets function that is called when the GetCurrentHeight method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetCurrentHeightFunc) SetDefaultReturn

func (f *ClientGetCurrentHeightFunc) SetDefaultReturn(r0 uint64, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetCurrentHeightFuncCall

type ClientGetCurrentHeightFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetCurrentHeightFuncCall is an object that describes an invocation of method GetCurrentHeight on an instance of MockClient.

func (ClientGetCurrentHeightFuncCall) Args

func (c ClientGetCurrentHeightFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetCurrentHeightFuncCall) Results

func (c ClientGetCurrentHeightFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetDefaultAccountFunc

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

ClientGetDefaultAccountFunc describes the behavior when the GetDefaultAccount method of the parent MockClient instance is invoked.

func (*ClientGetDefaultAccountFunc) History

History returns a sequence of ClientGetDefaultAccountFuncCall objects describing the invocations of this function.

func (*ClientGetDefaultAccountFunc) PushHook

func (f *ClientGetDefaultAccountFunc) PushHook(hook func() accounts.Account)

PushHook adds a function to the end of hook queue. Each invocation of the GetDefaultAccount method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetDefaultAccountFunc) PushReturn

func (f *ClientGetDefaultAccountFunc) PushReturn(r0 accounts.Account)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetDefaultAccountFunc) SetDefaultHook

func (f *ClientGetDefaultAccountFunc) SetDefaultHook(hook func() accounts.Account)

SetDefaultHook sets function that is called when the GetDefaultAccount method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetDefaultAccountFunc) SetDefaultReturn

func (f *ClientGetDefaultAccountFunc) SetDefaultReturn(r0 accounts.Account)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetDefaultAccountFuncCall

type ClientGetDefaultAccountFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 accounts.Account
}

ClientGetDefaultAccountFuncCall is an object that describes an invocation of method GetDefaultAccount on an instance of MockClient.

func (ClientGetDefaultAccountFuncCall) Args

func (c ClientGetDefaultAccountFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetDefaultAccountFuncCall) Results

func (c ClientGetDefaultAccountFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetEndpointFunc

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

ClientGetEndpointFunc describes the behavior when the GetEndpoint method of the parent MockClient instance is invoked.

func (*ClientGetEndpointFunc) History

History returns a sequence of ClientGetEndpointFuncCall objects describing the invocations of this function.

func (*ClientGetEndpointFunc) PushHook

func (f *ClientGetEndpointFunc) PushHook(hook func() string)

PushHook adds a function to the end of hook queue. Each invocation of the GetEndpoint method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetEndpointFunc) PushReturn

func (f *ClientGetEndpointFunc) PushReturn(r0 string)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetEndpointFunc) SetDefaultHook

func (f *ClientGetEndpointFunc) SetDefaultHook(hook func() string)

SetDefaultHook sets function that is called when the GetEndpoint method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetEndpointFunc) SetDefaultReturn

func (f *ClientGetEndpointFunc) SetDefaultReturn(r0 string)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetEndpointFuncCall

type ClientGetEndpointFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
}

ClientGetEndpointFuncCall is an object that describes an invocation of method GetEndpoint on an instance of MockClient.

func (ClientGetEndpointFuncCall) Args

func (c ClientGetEndpointFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetEndpointFuncCall) Results

func (c ClientGetEndpointFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetEventsFunc

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

ClientGetEventsFunc describes the behavior when the GetEvents method of the parent MockClient instance is invoked.

func (*ClientGetEventsFunc) History

History returns a sequence of ClientGetEventsFuncCall objects describing the invocations of this function.

func (*ClientGetEventsFunc) PushHook

func (f *ClientGetEventsFunc) PushHook(hook func(context.Context, uint64, uint64, []common.Address) ([]types.Log, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEvents method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetEventsFunc) PushReturn

func (f *ClientGetEventsFunc) PushReturn(r0 []types.Log, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetEventsFunc) SetDefaultHook

func (f *ClientGetEventsFunc) SetDefaultHook(hook func(context.Context, uint64, uint64, []common.Address) ([]types.Log, error))

SetDefaultHook sets function that is called when the GetEvents method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetEventsFunc) SetDefaultReturn

func (f *ClientGetEventsFunc) SetDefaultReturn(r0 []types.Log, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetEventsFuncCall

type ClientGetEventsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint64
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 uint64
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []types.Log
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetEventsFuncCall is an object that describes an invocation of method GetEvents on an instance of MockClient.

func (ClientGetEventsFuncCall) Args

func (c ClientGetEventsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetEventsFuncCall) Results

func (c ClientGetEventsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetFinalityDelayFunc

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

ClientGetFinalityDelayFunc describes the behavior when the GetFinalityDelay method of the parent MockClient instance is invoked.

func (*ClientGetFinalityDelayFunc) History

History returns a sequence of ClientGetFinalityDelayFuncCall objects describing the invocations of this function.

func (*ClientGetFinalityDelayFunc) PushHook

func (f *ClientGetFinalityDelayFunc) PushHook(hook func() uint64)

PushHook adds a function to the end of hook queue. Each invocation of the GetFinalityDelay method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetFinalityDelayFunc) PushReturn

func (f *ClientGetFinalityDelayFunc) PushReturn(r0 uint64)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetFinalityDelayFunc) SetDefaultHook

func (f *ClientGetFinalityDelayFunc) SetDefaultHook(hook func() uint64)

SetDefaultHook sets function that is called when the GetFinalityDelay method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetFinalityDelayFunc) SetDefaultReturn

func (f *ClientGetFinalityDelayFunc) SetDefaultReturn(r0 uint64)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetFinalityDelayFuncCall

type ClientGetFinalityDelayFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
}

ClientGetFinalityDelayFuncCall is an object that describes an invocation of method GetFinalityDelay on an instance of MockClient.

func (ClientGetFinalityDelayFuncCall) Args

func (c ClientGetFinalityDelayFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetFinalityDelayFuncCall) Results

func (c ClientGetFinalityDelayFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetFinalizedHeightFunc

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

ClientGetFinalizedHeightFunc describes the behavior when the GetFinalizedHeight method of the parent MockClient instance is invoked.

func (*ClientGetFinalizedHeightFunc) History

History returns a sequence of ClientGetFinalizedHeightFuncCall objects describing the invocations of this function.

func (*ClientGetFinalizedHeightFunc) PushHook

func (f *ClientGetFinalizedHeightFunc) PushHook(hook func(context.Context) (uint64, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetFinalizedHeight method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetFinalizedHeightFunc) PushReturn

func (f *ClientGetFinalizedHeightFunc) PushReturn(r0 uint64, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetFinalizedHeightFunc) SetDefaultHook

func (f *ClientGetFinalizedHeightFunc) SetDefaultHook(hook func(context.Context) (uint64, error))

SetDefaultHook sets function that is called when the GetFinalizedHeight method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetFinalizedHeightFunc) SetDefaultReturn

func (f *ClientGetFinalizedHeightFunc) SetDefaultReturn(r0 uint64, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetFinalizedHeightFuncCall

type ClientGetFinalizedHeightFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetFinalizedHeightFuncCall is an object that describes an invocation of method GetFinalizedHeight on an instance of MockClient.

func (ClientGetFinalizedHeightFuncCall) Args

func (c ClientGetFinalizedHeightFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetFinalizedHeightFuncCall) Results

func (c ClientGetFinalizedHeightFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetHeaderByNumberFunc

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

ClientGetHeaderByNumberFunc describes the behavior when the GetHeaderByNumber method of the parent MockClient instance is invoked.

func (*ClientGetHeaderByNumberFunc) History

History returns a sequence of ClientGetHeaderByNumberFuncCall objects describing the invocations of this function.

func (*ClientGetHeaderByNumberFunc) PushHook

func (f *ClientGetHeaderByNumberFunc) PushHook(hook func(context.Context, *big.Int) (*types.Header, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetHeaderByNumber method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetHeaderByNumberFunc) PushReturn

func (f *ClientGetHeaderByNumberFunc) PushReturn(r0 *types.Header, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetHeaderByNumberFunc) SetDefaultHook

func (f *ClientGetHeaderByNumberFunc) SetDefaultHook(hook func(context.Context, *big.Int) (*types.Header, error))

SetDefaultHook sets function that is called when the GetHeaderByNumber method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetHeaderByNumberFunc) SetDefaultReturn

func (f *ClientGetHeaderByNumberFunc) SetDefaultReturn(r0 *types.Header, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetHeaderByNumberFuncCall

type ClientGetHeaderByNumberFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Header
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetHeaderByNumberFuncCall is an object that describes an invocation of method GetHeaderByNumber on an instance of MockClient.

func (ClientGetHeaderByNumberFuncCall) Args

func (c ClientGetHeaderByNumberFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetHeaderByNumberFuncCall) Results

func (c ClientGetHeaderByNumberFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetKnownAccountsFunc

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

ClientGetKnownAccountsFunc describes the behavior when the GetKnownAccounts method of the parent MockClient instance is invoked.

func (*ClientGetKnownAccountsFunc) History

History returns a sequence of ClientGetKnownAccountsFuncCall objects describing the invocations of this function.

func (*ClientGetKnownAccountsFunc) PushHook

func (f *ClientGetKnownAccountsFunc) PushHook(hook func() []accounts.Account)

PushHook adds a function to the end of hook queue. Each invocation of the GetKnownAccounts method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetKnownAccountsFunc) PushReturn

func (f *ClientGetKnownAccountsFunc) PushReturn(r0 []accounts.Account)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetKnownAccountsFunc) SetDefaultHook

func (f *ClientGetKnownAccountsFunc) SetDefaultHook(hook func() []accounts.Account)

SetDefaultHook sets function that is called when the GetKnownAccounts method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetKnownAccountsFunc) SetDefaultReturn

func (f *ClientGetKnownAccountsFunc) SetDefaultReturn(r0 []accounts.Account)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetKnownAccountsFuncCall

type ClientGetKnownAccountsFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []accounts.Account
}

ClientGetKnownAccountsFuncCall is an object that describes an invocation of method GetKnownAccounts on an instance of MockClient.

func (ClientGetKnownAccountsFuncCall) Args

func (c ClientGetKnownAccountsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetKnownAccountsFuncCall) Results

func (c ClientGetKnownAccountsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetPeerCountFunc

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

ClientGetPeerCountFunc describes the behavior when the GetPeerCount method of the parent MockClient instance is invoked.

func (*ClientGetPeerCountFunc) History

History returns a sequence of ClientGetPeerCountFuncCall objects describing the invocations of this function.

func (*ClientGetPeerCountFunc) PushHook

func (f *ClientGetPeerCountFunc) PushHook(hook func(context.Context) (uint64, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPeerCount method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetPeerCountFunc) PushReturn

func (f *ClientGetPeerCountFunc) PushReturn(r0 uint64, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetPeerCountFunc) SetDefaultHook

func (f *ClientGetPeerCountFunc) SetDefaultHook(hook func(context.Context) (uint64, error))

SetDefaultHook sets function that is called when the GetPeerCount method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetPeerCountFunc) SetDefaultReturn

func (f *ClientGetPeerCountFunc) SetDefaultReturn(r0 uint64, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetPeerCountFuncCall

type ClientGetPeerCountFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetPeerCountFuncCall is an object that describes an invocation of method GetPeerCount on an instance of MockClient.

func (ClientGetPeerCountFuncCall) Args

func (c ClientGetPeerCountFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetPeerCountFuncCall) Results

func (c ClientGetPeerCountFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetPendingNonceFunc

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

ClientGetPendingNonceFunc describes the behavior when the GetPendingNonce method of the parent MockClient instance is invoked.

func (*ClientGetPendingNonceFunc) History

History returns a sequence of ClientGetPendingNonceFuncCall objects describing the invocations of this function.

func (*ClientGetPendingNonceFunc) PushHook

func (f *ClientGetPendingNonceFunc) PushHook(hook func(context.Context, common.Address) (uint64, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPendingNonce method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetPendingNonceFunc) PushReturn

func (f *ClientGetPendingNonceFunc) PushReturn(r0 uint64, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetPendingNonceFunc) SetDefaultHook

func (f *ClientGetPendingNonceFunc) SetDefaultHook(hook func(context.Context, common.Address) (uint64, error))

SetDefaultHook sets function that is called when the GetPendingNonce method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetPendingNonceFunc) SetDefaultReturn

func (f *ClientGetPendingNonceFunc) SetDefaultReturn(r0 uint64, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetPendingNonceFuncCall

type ClientGetPendingNonceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetPendingNonceFuncCall is an object that describes an invocation of method GetPendingNonce on an instance of MockClient.

func (ClientGetPendingNonceFuncCall) Args

func (c ClientGetPendingNonceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetPendingNonceFuncCall) Results

func (c ClientGetPendingNonceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTimeoutContextFunc

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

ClientGetTimeoutContextFunc describes the behavior when the GetTimeoutContext method of the parent MockClient instance is invoked.

func (*ClientGetTimeoutContextFunc) History

History returns a sequence of ClientGetTimeoutContextFuncCall objects describing the invocations of this function.

func (*ClientGetTimeoutContextFunc) PushHook

func (f *ClientGetTimeoutContextFunc) PushHook(hook func() (context.Context, context.CancelFunc))

PushHook adds a function to the end of hook queue. Each invocation of the GetTimeoutContext method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTimeoutContextFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTimeoutContextFunc) SetDefaultHook

func (f *ClientGetTimeoutContextFunc) SetDefaultHook(hook func() (context.Context, context.CancelFunc))

SetDefaultHook sets function that is called when the GetTimeoutContext method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTimeoutContextFunc) SetDefaultReturn

func (f *ClientGetTimeoutContextFunc) SetDefaultReturn(r0 context.Context, r1 context.CancelFunc)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTimeoutContextFuncCall

type ClientGetTimeoutContextFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 context.Context
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 context.CancelFunc
}

ClientGetTimeoutContextFuncCall is an object that describes an invocation of method GetTimeoutContext on an instance of MockClient.

func (ClientGetTimeoutContextFuncCall) Args

func (c ClientGetTimeoutContextFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTimeoutContextFuncCall) Results

func (c ClientGetTimeoutContextFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTransactionByHashFunc

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

ClientGetTransactionByHashFunc describes the behavior when the GetTransactionByHash method of the parent MockClient instance is invoked.

func (*ClientGetTransactionByHashFunc) History

History returns a sequence of ClientGetTransactionByHashFuncCall objects describing the invocations of this function.

func (*ClientGetTransactionByHashFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetTransactionByHash method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTransactionByHashFunc) PushReturn

func (f *ClientGetTransactionByHashFunc) PushReturn(r0 *types.Transaction, r1 bool, r2 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTransactionByHashFunc) SetDefaultHook

func (f *ClientGetTransactionByHashFunc) SetDefaultHook(hook func(context.Context, common.Hash) (*types.Transaction, bool, error))

SetDefaultHook sets function that is called when the GetTransactionByHash method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTransactionByHashFunc) SetDefaultReturn

func (f *ClientGetTransactionByHashFunc) SetDefaultReturn(r0 *types.Transaction, r1 bool, r2 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTransactionByHashFuncCall

type ClientGetTransactionByHashFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Hash
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 bool
	// Result2 is the value of the 3rd result returned from this method
	// invocation.
	Result2 error
}

ClientGetTransactionByHashFuncCall is an object that describes an invocation of method GetTransactionByHash on an instance of MockClient.

func (ClientGetTransactionByHashFuncCall) Args

func (c ClientGetTransactionByHashFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTransactionByHashFuncCall) Results

func (c ClientGetTransactionByHashFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTransactionOptsFunc

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

ClientGetTransactionOptsFunc describes the behavior when the GetTransactionOpts method of the parent MockClient instance is invoked.

func (*ClientGetTransactionOptsFunc) History

History returns a sequence of ClientGetTransactionOptsFuncCall objects describing the invocations of this function.

func (*ClientGetTransactionOptsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetTransactionOpts method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTransactionOptsFunc) PushReturn

func (f *ClientGetTransactionOptsFunc) PushReturn(r0 *bind.TransactOpts, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTransactionOptsFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetTransactionOpts method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTransactionOptsFunc) SetDefaultReturn

func (f *ClientGetTransactionOptsFunc) SetDefaultReturn(r0 *bind.TransactOpts, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTransactionOptsFuncCall

type ClientGetTransactionOptsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 accounts.Account
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bind.TransactOpts
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetTransactionOptsFuncCall is an object that describes an invocation of method GetTransactionOpts on an instance of MockClient.

func (ClientGetTransactionOptsFuncCall) Args

func (c ClientGetTransactionOptsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTransactionOptsFuncCall) Results

func (c ClientGetTransactionOptsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTransactionReceiptFunc

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

ClientGetTransactionReceiptFunc describes the behavior when the GetTransactionReceipt method of the parent MockClient instance is invoked.

func (*ClientGetTransactionReceiptFunc) History

History returns a sequence of ClientGetTransactionReceiptFuncCall objects describing the invocations of this function.

func (*ClientGetTransactionReceiptFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetTransactionReceipt method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTransactionReceiptFunc) PushReturn

func (f *ClientGetTransactionReceiptFunc) PushReturn(r0 *types.Receipt, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTransactionReceiptFunc) SetDefaultHook

func (f *ClientGetTransactionReceiptFunc) SetDefaultHook(hook func(context.Context, common.Hash) (*types.Receipt, error))

SetDefaultHook sets function that is called when the GetTransactionReceipt method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTransactionReceiptFunc) SetDefaultReturn

func (f *ClientGetTransactionReceiptFunc) SetDefaultReturn(r0 *types.Receipt, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTransactionReceiptFuncCall

type ClientGetTransactionReceiptFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Hash
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Receipt
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientGetTransactionReceiptFuncCall is an object that describes an invocation of method GetTransactionReceipt on an instance of MockClient.

func (ClientGetTransactionReceiptFuncCall) Args

func (c ClientGetTransactionReceiptFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTransactionReceiptFuncCall) Results

func (c ClientGetTransactionReceiptFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTxMaxGasFeeAllowedFunc

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

ClientGetTxMaxGasFeeAllowedFunc describes the behavior when the GetTxMaxGasFeeAllowed method of the parent MockClient instance is invoked.

func (*ClientGetTxMaxGasFeeAllowedFunc) History

History returns a sequence of ClientGetTxMaxGasFeeAllowedFuncCall objects describing the invocations of this function.

func (*ClientGetTxMaxGasFeeAllowedFunc) PushHook

func (f *ClientGetTxMaxGasFeeAllowedFunc) PushHook(hook func() *big.Int)

PushHook adds a function to the end of hook queue. Each invocation of the GetTxMaxGasFeeAllowed method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTxMaxGasFeeAllowedFunc) PushReturn

func (f *ClientGetTxMaxGasFeeAllowedFunc) PushReturn(r0 *big.Int)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTxMaxGasFeeAllowedFunc) SetDefaultHook

func (f *ClientGetTxMaxGasFeeAllowedFunc) SetDefaultHook(hook func() *big.Int)

SetDefaultHook sets function that is called when the GetTxMaxGasFeeAllowed method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTxMaxGasFeeAllowedFunc) SetDefaultReturn

func (f *ClientGetTxMaxGasFeeAllowedFunc) SetDefaultReturn(r0 *big.Int)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTxMaxGasFeeAllowedFuncCall

type ClientGetTxMaxGasFeeAllowedFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
}

ClientGetTxMaxGasFeeAllowedFuncCall is an object that describes an invocation of method GetTxMaxGasFeeAllowed on an instance of MockClient.

func (ClientGetTxMaxGasFeeAllowedFuncCall) Args

func (c ClientGetTxMaxGasFeeAllowedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTxMaxGasFeeAllowedFuncCall) Results

func (c ClientGetTxMaxGasFeeAllowedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTxMaxStaleBlocksFunc

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

ClientGetTxMaxStaleBlocksFunc describes the behavior when the GetTxMaxStaleBlocks method of the parent MockClient instance is invoked.

func (*ClientGetTxMaxStaleBlocksFunc) History

History returns a sequence of ClientGetTxMaxStaleBlocksFuncCall objects describing the invocations of this function.

func (*ClientGetTxMaxStaleBlocksFunc) PushHook

func (f *ClientGetTxMaxStaleBlocksFunc) PushHook(hook func() uint64)

PushHook adds a function to the end of hook queue. Each invocation of the GetTxMaxStaleBlocks method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTxMaxStaleBlocksFunc) PushReturn

func (f *ClientGetTxMaxStaleBlocksFunc) PushReturn(r0 uint64)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTxMaxStaleBlocksFunc) SetDefaultHook

func (f *ClientGetTxMaxStaleBlocksFunc) SetDefaultHook(hook func() uint64)

SetDefaultHook sets function that is called when the GetTxMaxStaleBlocks method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTxMaxStaleBlocksFunc) SetDefaultReturn

func (f *ClientGetTxMaxStaleBlocksFunc) SetDefaultReturn(r0 uint64)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTxMaxStaleBlocksFuncCall

type ClientGetTxMaxStaleBlocksFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
}

ClientGetTxMaxStaleBlocksFuncCall is an object that describes an invocation of method GetTxMaxStaleBlocks on an instance of MockClient.

func (ClientGetTxMaxStaleBlocksFuncCall) Args

func (c ClientGetTxMaxStaleBlocksFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTxMaxStaleBlocksFuncCall) Results

func (c ClientGetTxMaxStaleBlocksFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientGetTxNotFoundMaxBlocksFunc

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

ClientGetTxNotFoundMaxBlocksFunc describes the behavior when the GetTxNotFoundMaxBlocks method of the parent MockClient instance is invoked.

func (*ClientGetTxNotFoundMaxBlocksFunc) History

History returns a sequence of ClientGetTxNotFoundMaxBlocksFuncCall objects describing the invocations of this function.

func (*ClientGetTxNotFoundMaxBlocksFunc) PushHook

func (f *ClientGetTxNotFoundMaxBlocksFunc) PushHook(hook func() uint64)

PushHook adds a function to the end of hook queue. Each invocation of the GetTxNotFoundMaxBlocks method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientGetTxNotFoundMaxBlocksFunc) PushReturn

func (f *ClientGetTxNotFoundMaxBlocksFunc) PushReturn(r0 uint64)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientGetTxNotFoundMaxBlocksFunc) SetDefaultHook

func (f *ClientGetTxNotFoundMaxBlocksFunc) SetDefaultHook(hook func() uint64)

SetDefaultHook sets function that is called when the GetTxNotFoundMaxBlocks method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientGetTxNotFoundMaxBlocksFunc) SetDefaultReturn

func (f *ClientGetTxNotFoundMaxBlocksFunc) SetDefaultReturn(r0 uint64)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientGetTxNotFoundMaxBlocksFuncCall

type ClientGetTxNotFoundMaxBlocksFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint64
}

ClientGetTxNotFoundMaxBlocksFuncCall is an object that describes an invocation of method GetTxNotFoundMaxBlocks on an instance of MockClient.

func (ClientGetTxNotFoundMaxBlocksFuncCall) Args

func (c ClientGetTxNotFoundMaxBlocksFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientGetTxNotFoundMaxBlocksFuncCall) Results

func (c ClientGetTxNotFoundMaxBlocksFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientIsAccessibleFunc

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

ClientIsAccessibleFunc describes the behavior when the IsAccessible method of the parent MockClient instance is invoked.

func (*ClientIsAccessibleFunc) History

History returns a sequence of ClientIsAccessibleFuncCall objects describing the invocations of this function.

func (*ClientIsAccessibleFunc) PushHook

func (f *ClientIsAccessibleFunc) PushHook(hook func() bool)

PushHook adds a function to the end of hook queue. Each invocation of the IsAccessible method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientIsAccessibleFunc) PushReturn

func (f *ClientIsAccessibleFunc) PushReturn(r0 bool)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientIsAccessibleFunc) SetDefaultHook

func (f *ClientIsAccessibleFunc) SetDefaultHook(hook func() bool)

SetDefaultHook sets function that is called when the IsAccessible method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientIsAccessibleFunc) SetDefaultReturn

func (f *ClientIsAccessibleFunc) SetDefaultReturn(r0 bool)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientIsAccessibleFuncCall

type ClientIsAccessibleFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
}

ClientIsAccessibleFuncCall is an object that describes an invocation of method IsAccessible on an instance of MockClient.

func (ClientIsAccessibleFuncCall) Args

func (c ClientIsAccessibleFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientIsAccessibleFuncCall) Results

func (c ClientIsAccessibleFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientRetryTransactionFunc

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

ClientRetryTransactionFunc describes the behavior when the RetryTransaction method of the parent MockClient instance is invoked.

func (*ClientRetryTransactionFunc) History

History returns a sequence of ClientRetryTransactionFuncCall objects describing the invocations of this function.

func (*ClientRetryTransactionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the RetryTransaction method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientRetryTransactionFunc) PushReturn

func (f *ClientRetryTransactionFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientRetryTransactionFunc) SetDefaultHook

func (f *ClientRetryTransactionFunc) SetDefaultHook(hook func(context.Context, *types.Transaction, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the RetryTransaction method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientRetryTransactionFunc) SetDefaultReturn

func (f *ClientRetryTransactionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientRetryTransactionFuncCall

type ClientRetryTransactionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *types.Transaction
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientRetryTransactionFuncCall is an object that describes an invocation of method RetryTransaction on an instance of MockClient.

func (ClientRetryTransactionFuncCall) Args

func (c ClientRetryTransactionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientRetryTransactionFuncCall) Results

func (c ClientRetryTransactionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientSendTransactionFunc

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

ClientSendTransactionFunc describes the behavior when the SendTransaction method of the parent MockClient instance is invoked.

func (*ClientSendTransactionFunc) History

History returns a sequence of ClientSendTransactionFuncCall objects describing the invocations of this function.

func (*ClientSendTransactionFunc) PushHook

func (f *ClientSendTransactionFunc) PushHook(hook func(context.Context, *types.Transaction) error)

PushHook adds a function to the end of hook queue. Each invocation of the SendTransaction method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientSendTransactionFunc) PushReturn

func (f *ClientSendTransactionFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientSendTransactionFunc) SetDefaultHook

func (f *ClientSendTransactionFunc) SetDefaultHook(hook func(context.Context, *types.Transaction) error)

SetDefaultHook sets function that is called when the SendTransaction method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientSendTransactionFunc) SetDefaultReturn

func (f *ClientSendTransactionFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientSendTransactionFuncCall

type ClientSendTransactionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *types.Transaction
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

ClientSendTransactionFuncCall is an object that describes an invocation of method SendTransaction on an instance of MockClient.

func (ClientSendTransactionFuncCall) Args

func (c ClientSendTransactionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientSendTransactionFuncCall) Results

func (c ClientSendTransactionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ClientSignTransactionFunc

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

ClientSignTransactionFunc describes the behavior when the SignTransaction method of the parent MockClient instance is invoked.

func (*ClientSignTransactionFunc) History

History returns a sequence of ClientSignTransactionFuncCall objects describing the invocations of this function.

func (*ClientSignTransactionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SignTransaction method of the parent MockClient instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ClientSignTransactionFunc) PushReturn

func (f *ClientSignTransactionFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ClientSignTransactionFunc) SetDefaultHook

func (f *ClientSignTransactionFunc) SetDefaultHook(hook func(types.TxData, common.Address) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SignTransaction method of the parent MockClient instance is invoked and the hook queue is empty.

func (*ClientSignTransactionFunc) SetDefaultReturn

func (f *ClientSignTransactionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ClientSignTransactionFuncCall

type ClientSignTransactionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.TxData
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ClientSignTransactionFuncCall is an object that describes an invocation of method SignTransaction on an instance of MockClient.

func (ClientSignTransactionFuncCall) Args

func (c ClientSignTransactionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ClientSignTransactionFuncCall) Results

func (c ClientSignTransactionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type DepositHandlerAddFunc

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

DepositHandlerAddFunc describes the behavior when the Add method of the parent MockDepositHandler instance is invoked.

func (*DepositHandlerAddFunc) History

History returns a sequence of DepositHandlerAddFuncCall objects describing the invocations of this function.

func (*DepositHandlerAddFunc) PushHook

func (f *DepositHandlerAddFunc) PushHook(hook func(*v2.Txn, uint32, []byte, *big.Int, *objs1.Owner) error)

PushHook adds a function to the end of hook queue. Each invocation of the Add method of the parent MockDepositHandler instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*DepositHandlerAddFunc) PushReturn

func (f *DepositHandlerAddFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*DepositHandlerAddFunc) SetDefaultHook

func (f *DepositHandlerAddFunc) SetDefaultHook(hook func(*v2.Txn, uint32, []byte, *big.Int, *objs1.Owner) error)

SetDefaultHook sets function that is called when the Add method of the parent MockDepositHandler instance is invoked and the hook queue is empty.

func (*DepositHandlerAddFunc) SetDefaultReturn

func (f *DepositHandlerAddFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type DepositHandlerAddFuncCall

type DepositHandlerAddFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *v2.Txn
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []byte
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 *objs1.Owner
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

DepositHandlerAddFuncCall is an object that describes an invocation of method Add on an instance of MockDepositHandler.

func (DepositHandlerAddFuncCall) Args

func (c DepositHandlerAddFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (DepositHandlerAddFuncCall) Results

func (c DepositHandlerAddFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsALCAAddressFunc added in v0.0.8

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

EthereumContractsALCAAddressFunc describes the behavior when the ALCAAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsALCAAddressFunc) History added in v0.0.8

History returns a sequence of EthereumContractsALCAAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsALCAAddressFunc) PushHook added in v0.0.8

func (f *EthereumContractsALCAAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the ALCAAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsALCAAddressFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsALCAAddressFunc) SetDefaultHook added in v0.0.8

func (f *EthereumContractsALCAAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the ALCAAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsALCAAddressFunc) SetDefaultReturn added in v0.0.8

func (f *EthereumContractsALCAAddressFunc) SetDefaultReturn(r0 common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsALCAAddressFuncCall added in v0.0.8

type EthereumContractsALCAAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsALCAAddressFuncCall is an object that describes an invocation of method ALCAAddress on an instance of MockEthereumContracts.

func (EthereumContractsALCAAddressFuncCall) Args added in v0.0.8

func (c EthereumContractsALCAAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsALCAAddressFuncCall) Results added in v0.0.8

func (c EthereumContractsALCAAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsALCAFunc added in v0.0.8

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

EthereumContractsALCAFunc describes the behavior when the ALCA method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsALCAFunc) History added in v0.0.8

History returns a sequence of EthereumContractsALCAFuncCall objects describing the invocations of this function.

func (*EthereumContractsALCAFunc) PushHook added in v0.0.8

func (f *EthereumContractsALCAFunc) PushHook(hook func() bindings.IALCA)

PushHook adds a function to the end of hook queue. Each invocation of the ALCA method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsALCAFunc) PushReturn added in v0.0.8

func (f *EthereumContractsALCAFunc) PushReturn(r0 bindings.IALCA)

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsALCAFunc) SetDefaultHook added in v0.0.8

func (f *EthereumContractsALCAFunc) SetDefaultHook(hook func() bindings.IALCA)

SetDefaultHook sets function that is called when the ALCA method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsALCAFunc) SetDefaultReturn added in v0.0.8

func (f *EthereumContractsALCAFunc) SetDefaultReturn(r0 bindings.IALCA)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsALCAFuncCall added in v0.0.8

type EthereumContractsALCAFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IALCA
}

EthereumContractsALCAFuncCall is an object that describes an invocation of method ALCA on an instance of MockEthereumContracts.

func (EthereumContractsALCAFuncCall) Args added in v0.0.8

func (c EthereumContractsALCAFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsALCAFuncCall) Results added in v0.0.8

func (c EthereumContractsALCAFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsALCBAddressFunc added in v0.0.8

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

EthereumContractsALCBAddressFunc describes the behavior when the ALCBAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsALCBAddressFunc) History added in v0.0.8

History returns a sequence of EthereumContractsALCBAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsALCBAddressFunc) PushHook added in v0.0.8

func (f *EthereumContractsALCBAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the ALCBAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsALCBAddressFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsALCBAddressFunc) SetDefaultHook added in v0.0.8

func (f *EthereumContractsALCBAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the ALCBAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsALCBAddressFunc) SetDefaultReturn added in v0.0.8

func (f *EthereumContractsALCBAddressFunc) SetDefaultReturn(r0 common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsALCBAddressFuncCall added in v0.0.8

type EthereumContractsALCBAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsALCBAddressFuncCall is an object that describes an invocation of method ALCBAddress on an instance of MockEthereumContracts.

func (EthereumContractsALCBAddressFuncCall) Args added in v0.0.8

func (c EthereumContractsALCBAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsALCBAddressFuncCall) Results added in v0.0.8

func (c EthereumContractsALCBAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsALCBFunc added in v0.0.8

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

EthereumContractsALCBFunc describes the behavior when the ALCB method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsALCBFunc) History added in v0.0.8

History returns a sequence of EthereumContractsALCBFuncCall objects describing the invocations of this function.

func (*EthereumContractsALCBFunc) PushHook added in v0.0.8

func (f *EthereumContractsALCBFunc) PushHook(hook func() bindings.IALCB)

PushHook adds a function to the end of hook queue. Each invocation of the ALCB method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsALCBFunc) PushReturn added in v0.0.8

func (f *EthereumContractsALCBFunc) PushReturn(r0 bindings.IALCB)

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsALCBFunc) SetDefaultHook added in v0.0.8

func (f *EthereumContractsALCBFunc) SetDefaultHook(hook func() bindings.IALCB)

SetDefaultHook sets function that is called when the ALCB method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsALCBFunc) SetDefaultReturn added in v0.0.8

func (f *EthereumContractsALCBFunc) SetDefaultReturn(r0 bindings.IALCB)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsALCBFuncCall added in v0.0.8

type EthereumContractsALCBFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IALCB
}

EthereumContractsALCBFuncCall is an object that describes an invocation of method ALCB on an instance of MockEthereumContracts.

func (EthereumContractsALCBFuncCall) Args added in v0.0.8

func (c EthereumContractsALCBFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsALCBFuncCall) Results added in v0.0.8

func (c EthereumContractsALCBFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsContractFactoryAddressFunc

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

EthereumContractsContractFactoryAddressFunc describes the behavior when the ContractFactoryAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsContractFactoryAddressFunc) History

History returns a sequence of EthereumContractsContractFactoryAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsContractFactoryAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ContractFactoryAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsContractFactoryAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsContractFactoryAddressFunc) SetDefaultHook

func (f *EthereumContractsContractFactoryAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the ContractFactoryAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsContractFactoryAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsContractFactoryAddressFuncCall

type EthereumContractsContractFactoryAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsContractFactoryAddressFuncCall is an object that describes an invocation of method ContractFactoryAddress on an instance of MockEthereumContracts.

func (EthereumContractsContractFactoryAddressFuncCall) Args

func (c EthereumContractsContractFactoryAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsContractFactoryAddressFuncCall) Results

func (c EthereumContractsContractFactoryAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsContractFactoryFunc

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

EthereumContractsContractFactoryFunc describes the behavior when the ContractFactory method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsContractFactoryFunc) History

History returns a sequence of EthereumContractsContractFactoryFuncCall objects describing the invocations of this function.

func (*EthereumContractsContractFactoryFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ContractFactory method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsContractFactoryFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsContractFactoryFunc) SetDefaultHook

func (f *EthereumContractsContractFactoryFunc) SetDefaultHook(hook func() bindings.IAliceNetFactory)

SetDefaultHook sets function that is called when the ContractFactory method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsContractFactoryFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsContractFactoryFuncCall

type EthereumContractsContractFactoryFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IAliceNetFactory
}

EthereumContractsContractFactoryFuncCall is an object that describes an invocation of method ContractFactory on an instance of MockEthereumContracts.

func (EthereumContractsContractFactoryFuncCall) Args

func (c EthereumContractsContractFactoryFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsContractFactoryFuncCall) Results

func (c EthereumContractsContractFactoryFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsDynamicsAddressFunc added in v0.0.5

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

EthereumContractsDynamicsAddressFunc describes the behavior when the DynamicsAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsDynamicsAddressFunc) History added in v0.0.5

History returns a sequence of EthereumContractsDynamicsAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsDynamicsAddressFunc) PushHook added in v0.0.5

func (f *EthereumContractsDynamicsAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the DynamicsAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsDynamicsAddressFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsDynamicsAddressFunc) SetDefaultHook added in v0.0.5

func (f *EthereumContractsDynamicsAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the DynamicsAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsDynamicsAddressFunc) SetDefaultReturn added in v0.0.5

func (f *EthereumContractsDynamicsAddressFunc) SetDefaultReturn(r0 common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsDynamicsAddressFuncCall added in v0.0.5

type EthereumContractsDynamicsAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsDynamicsAddressFuncCall is an object that describes an invocation of method DynamicsAddress on an instance of MockEthereumContracts.

func (EthereumContractsDynamicsAddressFuncCall) Args added in v0.0.5

func (c EthereumContractsDynamicsAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsDynamicsAddressFuncCall) Results added in v0.0.5

func (c EthereumContractsDynamicsAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsDynamicsFunc added in v0.0.5

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

EthereumContractsDynamicsFunc describes the behavior when the Dynamics method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsDynamicsFunc) History added in v0.0.5

History returns a sequence of EthereumContractsDynamicsFuncCall objects describing the invocations of this function.

func (*EthereumContractsDynamicsFunc) PushHook added in v0.0.5

func (f *EthereumContractsDynamicsFunc) PushHook(hook func() bindings.IDynamics)

PushHook adds a function to the end of hook queue. Each invocation of the Dynamics method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsDynamicsFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsDynamicsFunc) SetDefaultHook added in v0.0.5

func (f *EthereumContractsDynamicsFunc) SetDefaultHook(hook func() bindings.IDynamics)

SetDefaultHook sets function that is called when the Dynamics method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsDynamicsFunc) SetDefaultReturn added in v0.0.5

func (f *EthereumContractsDynamicsFunc) SetDefaultReturn(r0 bindings.IDynamics)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsDynamicsFuncCall added in v0.0.5

type EthereumContractsDynamicsFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IDynamics
}

EthereumContractsDynamicsFuncCall is an object that describes an invocation of method Dynamics on an instance of MockEthereumContracts.

func (EthereumContractsDynamicsFuncCall) Args added in v0.0.5

func (c EthereumContractsDynamicsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsDynamicsFuncCall) Results added in v0.0.5

func (c EthereumContractsDynamicsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsEthdkgAddressFunc

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

EthereumContractsEthdkgAddressFunc describes the behavior when the EthdkgAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsEthdkgAddressFunc) History

History returns a sequence of EthereumContractsEthdkgAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsEthdkgAddressFunc) PushHook

func (f *EthereumContractsEthdkgAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the EthdkgAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsEthdkgAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsEthdkgAddressFunc) SetDefaultHook

func (f *EthereumContractsEthdkgAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the EthdkgAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsEthdkgAddressFunc) SetDefaultReturn

func (f *EthereumContractsEthdkgAddressFunc) SetDefaultReturn(r0 common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsEthdkgAddressFuncCall

type EthereumContractsEthdkgAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsEthdkgAddressFuncCall is an object that describes an invocation of method EthdkgAddress on an instance of MockEthereumContracts.

func (EthereumContractsEthdkgAddressFuncCall) Args

func (c EthereumContractsEthdkgAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsEthdkgAddressFuncCall) Results

func (c EthereumContractsEthdkgAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsEthdkgFunc

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

EthereumContractsEthdkgFunc describes the behavior when the Ethdkg method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsEthdkgFunc) History

History returns a sequence of EthereumContractsEthdkgFuncCall objects describing the invocations of this function.

func (*EthereumContractsEthdkgFunc) PushHook

func (f *EthereumContractsEthdkgFunc) PushHook(hook func() bindings.IETHDKG)

PushHook adds a function to the end of hook queue. Each invocation of the Ethdkg method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsEthdkgFunc) PushReturn

func (f *EthereumContractsEthdkgFunc) PushReturn(r0 bindings.IETHDKG)

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsEthdkgFunc) SetDefaultHook

func (f *EthereumContractsEthdkgFunc) SetDefaultHook(hook func() bindings.IETHDKG)

SetDefaultHook sets function that is called when the Ethdkg method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsEthdkgFunc) SetDefaultReturn

func (f *EthereumContractsEthdkgFunc) SetDefaultReturn(r0 bindings.IETHDKG)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsEthdkgFuncCall

type EthereumContractsEthdkgFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IETHDKG
}

EthereumContractsEthdkgFuncCall is an object that describes an invocation of method Ethdkg on an instance of MockEthereumContracts.

func (EthereumContractsEthdkgFuncCall) Args

func (c EthereumContractsEthdkgFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsEthdkgFuncCall) Results

func (c EthereumContractsEthdkgFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsGetAllAddressesFunc

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

EthereumContractsGetAllAddressesFunc describes the behavior when the GetAllAddresses method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsGetAllAddressesFunc) History

History returns a sequence of EthereumContractsGetAllAddressesFuncCall objects describing the invocations of this function.

func (*EthereumContractsGetAllAddressesFunc) PushHook

func (f *EthereumContractsGetAllAddressesFunc) PushHook(hook func() []common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the GetAllAddresses method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsGetAllAddressesFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsGetAllAddressesFunc) SetDefaultHook

func (f *EthereumContractsGetAllAddressesFunc) SetDefaultHook(hook func() []common.Address)

SetDefaultHook sets function that is called when the GetAllAddresses method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsGetAllAddressesFunc) SetDefaultReturn

func (f *EthereumContractsGetAllAddressesFunc) SetDefaultReturn(r0 []common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsGetAllAddressesFuncCall

type EthereumContractsGetAllAddressesFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []common.Address
}

EthereumContractsGetAllAddressesFuncCall is an object that describes an invocation of method GetAllAddresses on an instance of MockEthereumContracts.

func (EthereumContractsGetAllAddressesFuncCall) Args

func (c EthereumContractsGetAllAddressesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsGetAllAddressesFuncCall) Results

func (c EthereumContractsGetAllAddressesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsGovernanceAddressFunc

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

EthereumContractsGovernanceAddressFunc describes the behavior when the GovernanceAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsGovernanceAddressFunc) History

History returns a sequence of EthereumContractsGovernanceAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsGovernanceAddressFunc) PushHook

func (f *EthereumContractsGovernanceAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the GovernanceAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsGovernanceAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsGovernanceAddressFunc) SetDefaultHook

func (f *EthereumContractsGovernanceAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the GovernanceAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsGovernanceAddressFunc) SetDefaultReturn

func (f *EthereumContractsGovernanceAddressFunc) SetDefaultReturn(r0 common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsGovernanceAddressFuncCall

type EthereumContractsGovernanceAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsGovernanceAddressFuncCall is an object that describes an invocation of method GovernanceAddress on an instance of MockEthereumContracts.

func (EthereumContractsGovernanceAddressFuncCall) Args

func (c EthereumContractsGovernanceAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsGovernanceAddressFuncCall) Results

func (c EthereumContractsGovernanceAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsGovernanceFunc

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

EthereumContractsGovernanceFunc describes the behavior when the Governance method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsGovernanceFunc) History

History returns a sequence of EthereumContractsGovernanceFuncCall objects describing the invocations of this function.

func (*EthereumContractsGovernanceFunc) PushHook

func (f *EthereumContractsGovernanceFunc) PushHook(hook func() bindings.IGovernance)

PushHook adds a function to the end of hook queue. Each invocation of the Governance method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsGovernanceFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsGovernanceFunc) SetDefaultHook

func (f *EthereumContractsGovernanceFunc) SetDefaultHook(hook func() bindings.IGovernance)

SetDefaultHook sets function that is called when the Governance method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsGovernanceFunc) SetDefaultReturn

func (f *EthereumContractsGovernanceFunc) SetDefaultReturn(r0 bindings.IGovernance)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsGovernanceFuncCall

type EthereumContractsGovernanceFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IGovernance
}

EthereumContractsGovernanceFuncCall is an object that describes an invocation of method Governance on an instance of MockEthereumContracts.

func (EthereumContractsGovernanceFuncCall) Args

func (c EthereumContractsGovernanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsGovernanceFuncCall) Results

func (c EthereumContractsGovernanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsPublicStakingAddressFunc

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

EthereumContractsPublicStakingAddressFunc describes the behavior when the PublicStakingAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsPublicStakingAddressFunc) History

History returns a sequence of EthereumContractsPublicStakingAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsPublicStakingAddressFunc) PushHook

func (f *EthereumContractsPublicStakingAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the PublicStakingAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsPublicStakingAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsPublicStakingAddressFunc) SetDefaultHook

func (f *EthereumContractsPublicStakingAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the PublicStakingAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsPublicStakingAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsPublicStakingAddressFuncCall

type EthereumContractsPublicStakingAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsPublicStakingAddressFuncCall is an object that describes an invocation of method PublicStakingAddress on an instance of MockEthereumContracts.

func (EthereumContractsPublicStakingAddressFuncCall) Args

func (c EthereumContractsPublicStakingAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsPublicStakingAddressFuncCall) Results

func (c EthereumContractsPublicStakingAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsPublicStakingFunc

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

EthereumContractsPublicStakingFunc describes the behavior when the PublicStaking method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsPublicStakingFunc) History

History returns a sequence of EthereumContractsPublicStakingFuncCall objects describing the invocations of this function.

func (*EthereumContractsPublicStakingFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the PublicStaking method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsPublicStakingFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsPublicStakingFunc) SetDefaultHook

func (f *EthereumContractsPublicStakingFunc) SetDefaultHook(hook func() bindings.IPublicStaking)

SetDefaultHook sets function that is called when the PublicStaking method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsPublicStakingFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsPublicStakingFuncCall

type EthereumContractsPublicStakingFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IPublicStaking
}

EthereumContractsPublicStakingFuncCall is an object that describes an invocation of method PublicStaking on an instance of MockEthereumContracts.

func (EthereumContractsPublicStakingFuncCall) Args

func (c EthereumContractsPublicStakingFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsPublicStakingFuncCall) Results

func (c EthereumContractsPublicStakingFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsSnapshotsAddressFunc

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

EthereumContractsSnapshotsAddressFunc describes the behavior when the SnapshotsAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsSnapshotsAddressFunc) History

History returns a sequence of EthereumContractsSnapshotsAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsSnapshotsAddressFunc) PushHook

func (f *EthereumContractsSnapshotsAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the SnapshotsAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsSnapshotsAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsSnapshotsAddressFunc) SetDefaultHook

func (f *EthereumContractsSnapshotsAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the SnapshotsAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsSnapshotsAddressFunc) SetDefaultReturn

func (f *EthereumContractsSnapshotsAddressFunc) SetDefaultReturn(r0 common.Address)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsSnapshotsAddressFuncCall

type EthereumContractsSnapshotsAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsSnapshotsAddressFuncCall is an object that describes an invocation of method SnapshotsAddress on an instance of MockEthereumContracts.

func (EthereumContractsSnapshotsAddressFuncCall) Args

func (c EthereumContractsSnapshotsAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsSnapshotsAddressFuncCall) Results

func (c EthereumContractsSnapshotsAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsSnapshotsFunc

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

EthereumContractsSnapshotsFunc describes the behavior when the Snapshots method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsSnapshotsFunc) History

History returns a sequence of EthereumContractsSnapshotsFuncCall objects describing the invocations of this function.

func (*EthereumContractsSnapshotsFunc) PushHook

func (f *EthereumContractsSnapshotsFunc) PushHook(hook func() bindings.ISnapshots)

PushHook adds a function to the end of hook queue. Each invocation of the Snapshots method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsSnapshotsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsSnapshotsFunc) SetDefaultHook

func (f *EthereumContractsSnapshotsFunc) SetDefaultHook(hook func() bindings.ISnapshots)

SetDefaultHook sets function that is called when the Snapshots method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsSnapshotsFunc) SetDefaultReturn

func (f *EthereumContractsSnapshotsFunc) SetDefaultReturn(r0 bindings.ISnapshots)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsSnapshotsFuncCall

type EthereumContractsSnapshotsFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.ISnapshots
}

EthereumContractsSnapshotsFuncCall is an object that describes an invocation of method Snapshots on an instance of MockEthereumContracts.

func (EthereumContractsSnapshotsFuncCall) Args

func (c EthereumContractsSnapshotsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsSnapshotsFuncCall) Results

func (c EthereumContractsSnapshotsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsValidatorPoolAddressFunc

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

EthereumContractsValidatorPoolAddressFunc describes the behavior when the ValidatorPoolAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsValidatorPoolAddressFunc) History

History returns a sequence of EthereumContractsValidatorPoolAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsValidatorPoolAddressFunc) PushHook

func (f *EthereumContractsValidatorPoolAddressFunc) PushHook(hook func() common.Address)

PushHook adds a function to the end of hook queue. Each invocation of the ValidatorPoolAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsValidatorPoolAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsValidatorPoolAddressFunc) SetDefaultHook

func (f *EthereumContractsValidatorPoolAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the ValidatorPoolAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsValidatorPoolAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsValidatorPoolAddressFuncCall

type EthereumContractsValidatorPoolAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsValidatorPoolAddressFuncCall is an object that describes an invocation of method ValidatorPoolAddress on an instance of MockEthereumContracts.

func (EthereumContractsValidatorPoolAddressFuncCall) Args

func (c EthereumContractsValidatorPoolAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsValidatorPoolAddressFuncCall) Results

func (c EthereumContractsValidatorPoolAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsValidatorPoolFunc

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

EthereumContractsValidatorPoolFunc describes the behavior when the ValidatorPool method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsValidatorPoolFunc) History

History returns a sequence of EthereumContractsValidatorPoolFuncCall objects describing the invocations of this function.

func (*EthereumContractsValidatorPoolFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ValidatorPool method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsValidatorPoolFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsValidatorPoolFunc) SetDefaultHook

func (f *EthereumContractsValidatorPoolFunc) SetDefaultHook(hook func() bindings.IValidatorPool)

SetDefaultHook sets function that is called when the ValidatorPool method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsValidatorPoolFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsValidatorPoolFuncCall

type EthereumContractsValidatorPoolFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IValidatorPool
}

EthereumContractsValidatorPoolFuncCall is an object that describes an invocation of method ValidatorPool on an instance of MockEthereumContracts.

func (EthereumContractsValidatorPoolFuncCall) Args

func (c EthereumContractsValidatorPoolFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsValidatorPoolFuncCall) Results

func (c EthereumContractsValidatorPoolFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsValidatorStakingAddressFunc

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

EthereumContractsValidatorStakingAddressFunc describes the behavior when the ValidatorStakingAddress method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsValidatorStakingAddressFunc) History

History returns a sequence of EthereumContractsValidatorStakingAddressFuncCall objects describing the invocations of this function.

func (*EthereumContractsValidatorStakingAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ValidatorStakingAddress method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsValidatorStakingAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsValidatorStakingAddressFunc) SetDefaultHook

func (f *EthereumContractsValidatorStakingAddressFunc) SetDefaultHook(hook func() common.Address)

SetDefaultHook sets function that is called when the ValidatorStakingAddress method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsValidatorStakingAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsValidatorStakingAddressFuncCall

type EthereumContractsValidatorStakingAddressFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
}

EthereumContractsValidatorStakingAddressFuncCall is an object that describes an invocation of method ValidatorStakingAddress on an instance of MockEthereumContracts.

func (EthereumContractsValidatorStakingAddressFuncCall) Args

func (c EthereumContractsValidatorStakingAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsValidatorStakingAddressFuncCall) Results

func (c EthereumContractsValidatorStakingAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type EthereumContractsValidatorStakingFunc

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

EthereumContractsValidatorStakingFunc describes the behavior when the ValidatorStaking method of the parent MockEthereumContracts instance is invoked.

func (*EthereumContractsValidatorStakingFunc) History

History returns a sequence of EthereumContractsValidatorStakingFuncCall objects describing the invocations of this function.

func (*EthereumContractsValidatorStakingFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ValidatorStaking method of the parent MockEthereumContracts instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*EthereumContractsValidatorStakingFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*EthereumContractsValidatorStakingFunc) SetDefaultHook

func (f *EthereumContractsValidatorStakingFunc) SetDefaultHook(hook func() bindings.IValidatorStaking)

SetDefaultHook sets function that is called when the ValidatorStaking method of the parent MockEthereumContracts instance is invoked and the hook queue is empty.

func (*EthereumContractsValidatorStakingFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type EthereumContractsValidatorStakingFuncCall

type EthereumContractsValidatorStakingFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.IValidatorStaking
}

EthereumContractsValidatorStakingFuncCall is an object that describes an invocation of method ValidatorStaking on an instance of MockEthereumContracts.

func (EthereumContractsValidatorStakingFuncCall) Args

func (c EthereumContractsValidatorStakingFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (EthereumContractsValidatorStakingFuncCall) Results

func (c EthereumContractsValidatorStakingFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAAllowanceFunc added in v0.0.8

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

IALCAAllowanceFunc describes the behavior when the Allowance method of the parent MockIALCA instance is invoked.

func (*IALCAAllowanceFunc) History added in v0.0.8

History returns a sequence of IALCAAllowanceFuncCall objects describing the invocations of this function.

func (*IALCAAllowanceFunc) PushHook added in v0.0.8

func (f *IALCAAllowanceFunc) PushHook(hook func(*bind.CallOpts, common.Address, common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the Allowance method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAAllowanceFunc) PushReturn added in v0.0.8

func (f *IALCAAllowanceFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAAllowanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCAAllowanceFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the Allowance method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAAllowanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAAllowanceFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAAllowanceFuncCall added in v0.0.8

type IALCAAllowanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAAllowanceFuncCall is an object that describes an invocation of method Allowance on an instance of MockIALCA.

func (IALCAAllowanceFuncCall) Args added in v0.0.8

func (c IALCAAllowanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAAllowanceFuncCall) Results added in v0.0.8

func (c IALCAAllowanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAApproveFunc added in v0.0.8

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

IALCAApproveFunc describes the behavior when the Approve method of the parent MockIALCA instance is invoked.

func (*IALCAApproveFunc) History added in v0.0.8

func (f *IALCAApproveFunc) History() []IALCAApproveFuncCall

History returns a sequence of IALCAApproveFuncCall objects describing the invocations of this function.

func (*IALCAApproveFunc) PushHook added in v0.0.8

func (f *IALCAApproveFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Approve method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAApproveFunc) PushReturn added in v0.0.8

func (f *IALCAApproveFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAApproveFunc) SetDefaultHook added in v0.0.8

func (f *IALCAApproveFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Approve method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAApproveFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAApproveFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAApproveFuncCall added in v0.0.8

type IALCAApproveFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAApproveFuncCall is an object that describes an invocation of method Approve on an instance of MockIALCA.

func (IALCAApproveFuncCall) Args added in v0.0.8

func (c IALCAApproveFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAApproveFuncCall) Results added in v0.0.8

func (c IALCAApproveFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCABalanceOfFunc added in v0.0.8

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

IALCABalanceOfFunc describes the behavior when the BalanceOf method of the parent MockIALCA instance is invoked.

func (*IALCABalanceOfFunc) History added in v0.0.8

History returns a sequence of IALCABalanceOfFuncCall objects describing the invocations of this function.

func (*IALCABalanceOfFunc) PushHook added in v0.0.8

func (f *IALCABalanceOfFunc) PushHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the BalanceOf method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCABalanceOfFunc) PushReturn added in v0.0.8

func (f *IALCABalanceOfFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCABalanceOfFunc) SetDefaultHook added in v0.0.8

func (f *IALCABalanceOfFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the BalanceOf method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCABalanceOfFunc) SetDefaultReturn added in v0.0.8

func (f *IALCABalanceOfFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCABalanceOfFuncCall added in v0.0.8

type IALCABalanceOfFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCABalanceOfFuncCall is an object that describes an invocation of method BalanceOf on an instance of MockIALCA.

func (IALCABalanceOfFuncCall) Args added in v0.0.8

func (c IALCABalanceOfFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCABalanceOfFuncCall) Results added in v0.0.8

func (c IALCABalanceOfFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAConvertFunc added in v0.0.8

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

IALCAConvertFunc describes the behavior when the Convert method of the parent MockIALCA instance is invoked.

func (*IALCAConvertFunc) History added in v0.0.8

func (f *IALCAConvertFunc) History() []IALCAConvertFuncCall

History returns a sequence of IALCAConvertFuncCall objects describing the invocations of this function.

func (*IALCAConvertFunc) PushHook added in v0.0.8

func (f *IALCAConvertFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the Convert method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAConvertFunc) PushReturn added in v0.0.8

func (f *IALCAConvertFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAConvertFunc) SetDefaultHook added in v0.0.8

func (f *IALCAConvertFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the Convert method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAConvertFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAConvertFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAConvertFuncCall added in v0.0.8

type IALCAConvertFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAConvertFuncCall is an object that describes an invocation of method Convert on an instance of MockIALCA.

func (IALCAConvertFuncCall) Args added in v0.0.8

func (c IALCAConvertFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAConvertFuncCall) Results added in v0.0.8

func (c IALCAConvertFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCADecimalsFunc added in v0.0.8

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

IALCADecimalsFunc describes the behavior when the Decimals method of the parent MockIALCA instance is invoked.

func (*IALCADecimalsFunc) History added in v0.0.8

History returns a sequence of IALCADecimalsFuncCall objects describing the invocations of this function.

func (*IALCADecimalsFunc) PushHook added in v0.0.8

func (f *IALCADecimalsFunc) PushHook(hook func(*bind.CallOpts) (uint8, error))

PushHook adds a function to the end of hook queue. Each invocation of the Decimals method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCADecimalsFunc) PushReturn added in v0.0.8

func (f *IALCADecimalsFunc) PushReturn(r0 uint8, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCADecimalsFunc) SetDefaultHook added in v0.0.8

func (f *IALCADecimalsFunc) SetDefaultHook(hook func(*bind.CallOpts) (uint8, error))

SetDefaultHook sets function that is called when the Decimals method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCADecimalsFunc) SetDefaultReturn added in v0.0.8

func (f *IALCADecimalsFunc) SetDefaultReturn(r0 uint8, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCADecimalsFuncCall added in v0.0.8

type IALCADecimalsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint8
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCADecimalsFuncCall is an object that describes an invocation of method Decimals on an instance of MockIALCA.

func (IALCADecimalsFuncCall) Args added in v0.0.8

func (c IALCADecimalsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCADecimalsFuncCall) Results added in v0.0.8

func (c IALCADecimalsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCADecreaseAllowanceFunc added in v0.0.8

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

IALCADecreaseAllowanceFunc describes the behavior when the DecreaseAllowance method of the parent MockIALCA instance is invoked.

func (*IALCADecreaseAllowanceFunc) History added in v0.0.8

History returns a sequence of IALCADecreaseAllowanceFuncCall objects describing the invocations of this function.

func (*IALCADecreaseAllowanceFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the DecreaseAllowance method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCADecreaseAllowanceFunc) PushReturn added in v0.0.8

func (f *IALCADecreaseAllowanceFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCADecreaseAllowanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCADecreaseAllowanceFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DecreaseAllowance method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCADecreaseAllowanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCADecreaseAllowanceFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCADecreaseAllowanceFuncCall added in v0.0.8

type IALCADecreaseAllowanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCADecreaseAllowanceFuncCall is an object that describes an invocation of method DecreaseAllowance on an instance of MockIALCA.

func (IALCADecreaseAllowanceFuncCall) Args added in v0.0.8

func (c IALCADecreaseAllowanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCADecreaseAllowanceFuncCall) Results added in v0.0.8

func (c IALCADecreaseAllowanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAExternalBurnFunc added in v0.0.8

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

IALCAExternalBurnFunc describes the behavior when the ExternalBurn method of the parent MockIALCA instance is invoked.

func (*IALCAExternalBurnFunc) History added in v0.0.8

History returns a sequence of IALCAExternalBurnFuncCall objects describing the invocations of this function.

func (*IALCAExternalBurnFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the ExternalBurn method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAExternalBurnFunc) PushReturn added in v0.0.8

func (f *IALCAExternalBurnFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAExternalBurnFunc) SetDefaultHook added in v0.0.8

func (f *IALCAExternalBurnFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the ExternalBurn method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAExternalBurnFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAExternalBurnFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAExternalBurnFuncCall added in v0.0.8

type IALCAExternalBurnFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAExternalBurnFuncCall is an object that describes an invocation of method ExternalBurn on an instance of MockIALCA.

func (IALCAExternalBurnFuncCall) Args added in v0.0.8

func (c IALCAExternalBurnFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAExternalBurnFuncCall) Results added in v0.0.8

func (c IALCAExternalBurnFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAExternalMintFunc added in v0.0.8

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

IALCAExternalMintFunc describes the behavior when the ExternalMint method of the parent MockIALCA instance is invoked.

func (*IALCAExternalMintFunc) History added in v0.0.8

History returns a sequence of IALCAExternalMintFuncCall objects describing the invocations of this function.

func (*IALCAExternalMintFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the ExternalMint method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAExternalMintFunc) PushReturn added in v0.0.8

func (f *IALCAExternalMintFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAExternalMintFunc) SetDefaultHook added in v0.0.8

func (f *IALCAExternalMintFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the ExternalMint method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAExternalMintFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAExternalMintFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAExternalMintFuncCall added in v0.0.8

type IALCAExternalMintFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAExternalMintFuncCall is an object that describes an invocation of method ExternalMint on an instance of MockIALCA.

func (IALCAExternalMintFuncCall) Args added in v0.0.8

func (c IALCAExternalMintFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAExternalMintFuncCall) Results added in v0.0.8

func (c IALCAExternalMintFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAFilterApprovalFunc added in v0.0.8

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

IALCAFilterApprovalFunc describes the behavior when the FilterApproval method of the parent MockIALCA instance is invoked.

func (*IALCAFilterApprovalFunc) History added in v0.0.8

History returns a sequence of IALCAFilterApprovalFuncCall objects describing the invocations of this function.

func (*IALCAFilterApprovalFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the FilterApproval method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAFilterApprovalFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAFilterApprovalFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the FilterApproval method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAFilterApprovalFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAFilterApprovalFunc) SetDefaultReturn(r0 *bindings.ALCAApprovalIterator, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAFilterApprovalFuncCall added in v0.0.8

type IALCAFilterApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCAApprovalIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAFilterApprovalFuncCall is an object that describes an invocation of method FilterApproval on an instance of MockIALCA.

func (IALCAFilterApprovalFuncCall) Args added in v0.0.8

func (c IALCAFilterApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAFilterApprovalFuncCall) Results added in v0.0.8

func (c IALCAFilterApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAFilterTransferFunc added in v0.0.8

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

IALCAFilterTransferFunc describes the behavior when the FilterTransfer method of the parent MockIALCA instance is invoked.

func (*IALCAFilterTransferFunc) History added in v0.0.8

History returns a sequence of IALCAFilterTransferFuncCall objects describing the invocations of this function.

func (*IALCAFilterTransferFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the FilterTransfer method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAFilterTransferFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAFilterTransferFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the FilterTransfer method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAFilterTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAFilterTransferFunc) SetDefaultReturn(r0 *bindings.ALCATransferIterator, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAFilterTransferFuncCall added in v0.0.8

type IALCAFilterTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCATransferIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAFilterTransferFuncCall is an object that describes an invocation of method FilterTransfer on an instance of MockIALCA.

func (IALCAFilterTransferFuncCall) Args added in v0.0.8

func (c IALCAFilterTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAFilterTransferFuncCall) Results added in v0.0.8

func (c IALCAFilterTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAFinishEarlyStageFunc added in v0.0.8

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

IALCAFinishEarlyStageFunc describes the behavior when the FinishEarlyStage method of the parent MockIALCA instance is invoked.

func (*IALCAFinishEarlyStageFunc) History added in v0.0.8

History returns a sequence of IALCAFinishEarlyStageFuncCall objects describing the invocations of this function.

func (*IALCAFinishEarlyStageFunc) PushHook added in v0.0.8

func (f *IALCAFinishEarlyStageFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the FinishEarlyStage method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAFinishEarlyStageFunc) PushReturn added in v0.0.8

func (f *IALCAFinishEarlyStageFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAFinishEarlyStageFunc) SetDefaultHook added in v0.0.8

func (f *IALCAFinishEarlyStageFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the FinishEarlyStage method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAFinishEarlyStageFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAFinishEarlyStageFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAFinishEarlyStageFuncCall added in v0.0.8

type IALCAFinishEarlyStageFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAFinishEarlyStageFuncCall is an object that describes an invocation of method FinishEarlyStage on an instance of MockIALCA.

func (IALCAFinishEarlyStageFuncCall) Args added in v0.0.8

func (c IALCAFinishEarlyStageFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAFinishEarlyStageFuncCall) Results added in v0.0.8

func (c IALCAFinishEarlyStageFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAGetLegacyTokenAddressFunc added in v0.0.8

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

IALCAGetLegacyTokenAddressFunc describes the behavior when the GetLegacyTokenAddress method of the parent MockIALCA instance is invoked.

func (*IALCAGetLegacyTokenAddressFunc) History added in v0.0.8

History returns a sequence of IALCAGetLegacyTokenAddressFuncCall objects describing the invocations of this function.

func (*IALCAGetLegacyTokenAddressFunc) PushHook added in v0.0.8

func (f *IALCAGetLegacyTokenAddressFunc) PushHook(hook func(*bind.CallOpts) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetLegacyTokenAddress method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAGetLegacyTokenAddressFunc) PushReturn added in v0.0.8

func (f *IALCAGetLegacyTokenAddressFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAGetLegacyTokenAddressFunc) SetDefaultHook added in v0.0.8

func (f *IALCAGetLegacyTokenAddressFunc) SetDefaultHook(hook func(*bind.CallOpts) (common.Address, error))

SetDefaultHook sets function that is called when the GetLegacyTokenAddress method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAGetLegacyTokenAddressFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAGetLegacyTokenAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAGetLegacyTokenAddressFuncCall added in v0.0.8

type IALCAGetLegacyTokenAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAGetLegacyTokenAddressFuncCall is an object that describes an invocation of method GetLegacyTokenAddress on an instance of MockIALCA.

func (IALCAGetLegacyTokenAddressFuncCall) Args added in v0.0.8

func (c IALCAGetLegacyTokenAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAGetLegacyTokenAddressFuncCall) Results added in v0.0.8

func (c IALCAGetLegacyTokenAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAGetMetamorphicContractAddressFunc added in v0.0.8

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

IALCAGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIALCA instance is invoked.

func (*IALCAGetMetamorphicContractAddressFunc) History added in v0.0.8

History returns a sequence of IALCAGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IALCAGetMetamorphicContractAddressFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAGetMetamorphicContractAddressFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAGetMetamorphicContractAddressFunc) SetDefaultHook added in v0.0.8

func (f *IALCAGetMetamorphicContractAddressFunc) SetDefaultHook(hook func(*bind.CallOpts, [32]byte, common.Address) (common.Address, error))

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAGetMetamorphicContractAddressFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAGetMetamorphicContractAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAGetMetamorphicContractAddressFuncCall added in v0.0.8

type IALCAGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIALCA.

func (IALCAGetMetamorphicContractAddressFuncCall) Args added in v0.0.8

func (c IALCAGetMetamorphicContractAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAGetMetamorphicContractAddressFuncCall) Results added in v0.0.8

func (c IALCAGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAIncreaseAllowanceFunc added in v0.0.8

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

IALCAIncreaseAllowanceFunc describes the behavior when the IncreaseAllowance method of the parent MockIALCA instance is invoked.

func (*IALCAIncreaseAllowanceFunc) History added in v0.0.8

History returns a sequence of IALCAIncreaseAllowanceFuncCall objects describing the invocations of this function.

func (*IALCAIncreaseAllowanceFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the IncreaseAllowance method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAIncreaseAllowanceFunc) PushReturn added in v0.0.8

func (f *IALCAIncreaseAllowanceFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAIncreaseAllowanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCAIncreaseAllowanceFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the IncreaseAllowance method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAIncreaseAllowanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAIncreaseAllowanceFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAIncreaseAllowanceFuncCall added in v0.0.8

type IALCAIncreaseAllowanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAIncreaseAllowanceFuncCall is an object that describes an invocation of method IncreaseAllowance on an instance of MockIALCA.

func (IALCAIncreaseAllowanceFuncCall) Args added in v0.0.8

func (c IALCAIncreaseAllowanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAIncreaseAllowanceFuncCall) Results added in v0.0.8

func (c IALCAIncreaseAllowanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAIsEarlyStageMigrationFunc added in v0.0.10

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

IALCAIsEarlyStageMigrationFunc describes the behavior when the IsEarlyStageMigration method of the parent MockIALCA instance is invoked.

func (*IALCAIsEarlyStageMigrationFunc) History added in v0.0.10

History returns a sequence of IALCAIsEarlyStageMigrationFuncCall objects describing the invocations of this function.

func (*IALCAIsEarlyStageMigrationFunc) PushHook added in v0.0.10

func (f *IALCAIsEarlyStageMigrationFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsEarlyStageMigration method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAIsEarlyStageMigrationFunc) PushReturn added in v0.0.10

func (f *IALCAIsEarlyStageMigrationFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAIsEarlyStageMigrationFunc) SetDefaultHook added in v0.0.10

func (f *IALCAIsEarlyStageMigrationFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsEarlyStageMigration method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAIsEarlyStageMigrationFunc) SetDefaultReturn added in v0.0.10

func (f *IALCAIsEarlyStageMigrationFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAIsEarlyStageMigrationFuncCall added in v0.0.10

type IALCAIsEarlyStageMigrationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAIsEarlyStageMigrationFuncCall is an object that describes an invocation of method IsEarlyStageMigration on an instance of MockIALCA.

func (IALCAIsEarlyStageMigrationFuncCall) Args added in v0.0.10

func (c IALCAIsEarlyStageMigrationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAIsEarlyStageMigrationFuncCall) Results added in v0.0.10

func (c IALCAIsEarlyStageMigrationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAMigrateFunc added in v0.0.8

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

IALCAMigrateFunc describes the behavior when the Migrate method of the parent MockIALCA instance is invoked.

func (*IALCAMigrateFunc) History added in v0.0.8

func (f *IALCAMigrateFunc) History() []IALCAMigrateFuncCall

History returns a sequence of IALCAMigrateFuncCall objects describing the invocations of this function.

func (*IALCAMigrateFunc) PushHook added in v0.0.8

func (f *IALCAMigrateFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Migrate method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAMigrateFunc) PushReturn added in v0.0.8

func (f *IALCAMigrateFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAMigrateFunc) SetDefaultHook added in v0.0.8

func (f *IALCAMigrateFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Migrate method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAMigrateFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAMigrateFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAMigrateFuncCall added in v0.0.8

type IALCAMigrateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAMigrateFuncCall is an object that describes an invocation of method Migrate on an instance of MockIALCA.

func (IALCAMigrateFuncCall) Args added in v0.0.8

func (c IALCAMigrateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAMigrateFuncCall) Results added in v0.0.8

func (c IALCAMigrateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAMigrateToFunc added in v0.0.8

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

IALCAMigrateToFunc describes the behavior when the MigrateTo method of the parent MockIALCA instance is invoked.

func (*IALCAMigrateToFunc) History added in v0.0.8

History returns a sequence of IALCAMigrateToFuncCall objects describing the invocations of this function.

func (*IALCAMigrateToFunc) PushHook added in v0.0.8

func (f *IALCAMigrateToFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the MigrateTo method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAMigrateToFunc) PushReturn added in v0.0.8

func (f *IALCAMigrateToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAMigrateToFunc) SetDefaultHook added in v0.0.8

func (f *IALCAMigrateToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MigrateTo method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAMigrateToFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAMigrateToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAMigrateToFuncCall added in v0.0.8

type IALCAMigrateToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAMigrateToFuncCall is an object that describes an invocation of method MigrateTo on an instance of MockIALCA.

func (IALCAMigrateToFuncCall) Args added in v0.0.8

func (c IALCAMigrateToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAMigrateToFuncCall) Results added in v0.0.8

func (c IALCAMigrateToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCANameFunc added in v0.0.8

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

IALCANameFunc describes the behavior when the Name method of the parent MockIALCA instance is invoked.

func (*IALCANameFunc) History added in v0.0.8

func (f *IALCANameFunc) History() []IALCANameFuncCall

History returns a sequence of IALCANameFuncCall objects describing the invocations of this function.

func (*IALCANameFunc) PushHook added in v0.0.8

func (f *IALCANameFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Name method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCANameFunc) PushReturn added in v0.0.8

func (f *IALCANameFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCANameFunc) SetDefaultHook added in v0.0.8

func (f *IALCANameFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Name method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCANameFunc) SetDefaultReturn added in v0.0.8

func (f *IALCANameFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCANameFuncCall added in v0.0.8

type IALCANameFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCANameFuncCall is an object that describes an invocation of method Name on an instance of MockIALCA.

func (IALCANameFuncCall) Args added in v0.0.8

func (c IALCANameFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCANameFuncCall) Results added in v0.0.8

func (c IALCANameFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAParseApprovalFunc added in v0.0.8

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

IALCAParseApprovalFunc describes the behavior when the ParseApproval method of the parent MockIALCA instance is invoked.

func (*IALCAParseApprovalFunc) History added in v0.0.8

History returns a sequence of IALCAParseApprovalFuncCall objects describing the invocations of this function.

func (*IALCAParseApprovalFunc) PushHook added in v0.0.8

func (f *IALCAParseApprovalFunc) PushHook(hook func(types.Log) (*bindings.ALCAApproval, error))

PushHook adds a function to the end of hook queue. Each invocation of the ParseApproval method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAParseApprovalFunc) PushReturn added in v0.0.8

func (f *IALCAParseApprovalFunc) PushReturn(r0 *bindings.ALCAApproval, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAParseApprovalFunc) SetDefaultHook added in v0.0.8

func (f *IALCAParseApprovalFunc) SetDefaultHook(hook func(types.Log) (*bindings.ALCAApproval, error))

SetDefaultHook sets function that is called when the ParseApproval method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAParseApprovalFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAParseApprovalFunc) SetDefaultReturn(r0 *bindings.ALCAApproval, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAParseApprovalFuncCall added in v0.0.8

type IALCAParseApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCAApproval
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAParseApprovalFuncCall is an object that describes an invocation of method ParseApproval on an instance of MockIALCA.

func (IALCAParseApprovalFuncCall) Args added in v0.0.8

func (c IALCAParseApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAParseApprovalFuncCall) Results added in v0.0.8

func (c IALCAParseApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAParseTransferFunc added in v0.0.8

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

IALCAParseTransferFunc describes the behavior when the ParseTransfer method of the parent MockIALCA instance is invoked.

func (*IALCAParseTransferFunc) History added in v0.0.8

History returns a sequence of IALCAParseTransferFuncCall objects describing the invocations of this function.

func (*IALCAParseTransferFunc) PushHook added in v0.0.8

func (f *IALCAParseTransferFunc) PushHook(hook func(types.Log) (*bindings.ALCATransfer, error))

PushHook adds a function to the end of hook queue. Each invocation of the ParseTransfer method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAParseTransferFunc) PushReturn added in v0.0.8

func (f *IALCAParseTransferFunc) PushReturn(r0 *bindings.ALCATransfer, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAParseTransferFunc) SetDefaultHook added in v0.0.8

func (f *IALCAParseTransferFunc) SetDefaultHook(hook func(types.Log) (*bindings.ALCATransfer, error))

SetDefaultHook sets function that is called when the ParseTransfer method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAParseTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAParseTransferFunc) SetDefaultReturn(r0 *bindings.ALCATransfer, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAParseTransferFuncCall added in v0.0.8

type IALCAParseTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCATransfer
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAParseTransferFuncCall is an object that describes an invocation of method ParseTransfer on an instance of MockIALCA.

func (IALCAParseTransferFuncCall) Args added in v0.0.8

func (c IALCAParseTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAParseTransferFuncCall) Results added in v0.0.8

func (c IALCAParseTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCASymbolFunc added in v0.0.8

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

IALCASymbolFunc describes the behavior when the Symbol method of the parent MockIALCA instance is invoked.

func (*IALCASymbolFunc) History added in v0.0.8

func (f *IALCASymbolFunc) History() []IALCASymbolFuncCall

History returns a sequence of IALCASymbolFuncCall objects describing the invocations of this function.

func (*IALCASymbolFunc) PushHook added in v0.0.8

func (f *IALCASymbolFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Symbol method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCASymbolFunc) PushReturn added in v0.0.8

func (f *IALCASymbolFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCASymbolFunc) SetDefaultHook added in v0.0.8

func (f *IALCASymbolFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Symbol method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCASymbolFunc) SetDefaultReturn added in v0.0.8

func (f *IALCASymbolFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCASymbolFuncCall added in v0.0.8

type IALCASymbolFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCASymbolFuncCall is an object that describes an invocation of method Symbol on an instance of MockIALCA.

func (IALCASymbolFuncCall) Args added in v0.0.8

func (c IALCASymbolFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCASymbolFuncCall) Results added in v0.0.8

func (c IALCASymbolFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCATotalSupplyFunc added in v0.0.8

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

IALCATotalSupplyFunc describes the behavior when the TotalSupply method of the parent MockIALCA instance is invoked.

func (*IALCATotalSupplyFunc) History added in v0.0.8

History returns a sequence of IALCATotalSupplyFuncCall objects describing the invocations of this function.

func (*IALCATotalSupplyFunc) PushHook added in v0.0.8

func (f *IALCATotalSupplyFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the TotalSupply method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCATotalSupplyFunc) PushReturn added in v0.0.8

func (f *IALCATotalSupplyFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCATotalSupplyFunc) SetDefaultHook added in v0.0.8

func (f *IALCATotalSupplyFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the TotalSupply method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCATotalSupplyFunc) SetDefaultReturn added in v0.0.8

func (f *IALCATotalSupplyFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCATotalSupplyFuncCall added in v0.0.8

type IALCATotalSupplyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCATotalSupplyFuncCall is an object that describes an invocation of method TotalSupply on an instance of MockIALCA.

func (IALCATotalSupplyFuncCall) Args added in v0.0.8

func (c IALCATotalSupplyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCATotalSupplyFuncCall) Results added in v0.0.8

func (c IALCATotalSupplyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCATransferFromFunc added in v0.0.8

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

IALCATransferFromFunc describes the behavior when the TransferFrom method of the parent MockIALCA instance is invoked.

func (*IALCATransferFromFunc) History added in v0.0.8

History returns a sequence of IALCATransferFromFuncCall objects describing the invocations of this function.

func (*IALCATransferFromFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the TransferFrom method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCATransferFromFunc) PushReturn added in v0.0.8

func (f *IALCATransferFromFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCATransferFromFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the TransferFrom method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCATransferFromFunc) SetDefaultReturn added in v0.0.8

func (f *IALCATransferFromFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCATransferFromFuncCall added in v0.0.8

type IALCATransferFromFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCATransferFromFuncCall is an object that describes an invocation of method TransferFrom on an instance of MockIALCA.

func (IALCATransferFromFuncCall) Args added in v0.0.8

func (c IALCATransferFromFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCATransferFromFuncCall) Results added in v0.0.8

func (c IALCATransferFromFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCATransferFunc added in v0.0.8

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

IALCATransferFunc describes the behavior when the Transfer method of the parent MockIALCA instance is invoked.

func (*IALCATransferFunc) History added in v0.0.8

History returns a sequence of IALCATransferFuncCall objects describing the invocations of this function.

func (*IALCATransferFunc) PushHook added in v0.0.8

func (f *IALCATransferFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Transfer method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCATransferFunc) PushReturn added in v0.0.8

func (f *IALCATransferFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCATransferFunc) SetDefaultHook added in v0.0.8

func (f *IALCATransferFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Transfer method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCATransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCATransferFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCATransferFuncCall added in v0.0.8

type IALCATransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCATransferFuncCall is an object that describes an invocation of method Transfer on an instance of MockIALCA.

func (IALCATransferFuncCall) Args added in v0.0.8

func (c IALCATransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCATransferFuncCall) Results added in v0.0.8

func (c IALCATransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAWatchApprovalFunc added in v0.0.8

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

IALCAWatchApprovalFunc describes the behavior when the WatchApproval method of the parent MockIALCA instance is invoked.

func (*IALCAWatchApprovalFunc) History added in v0.0.8

History returns a sequence of IALCAWatchApprovalFuncCall objects describing the invocations of this function.

func (*IALCAWatchApprovalFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the WatchApproval method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAWatchApprovalFunc) PushReturn added in v0.0.8

func (f *IALCAWatchApprovalFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAWatchApprovalFunc) SetDefaultHook added in v0.0.8

func (f *IALCAWatchApprovalFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.ALCAApproval, []common.Address, []common.Address) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchApproval method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAWatchApprovalFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAWatchApprovalFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAWatchApprovalFuncCall added in v0.0.8

type IALCAWatchApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ALCAApproval
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAWatchApprovalFuncCall is an object that describes an invocation of method WatchApproval on an instance of MockIALCA.

func (IALCAWatchApprovalFuncCall) Args added in v0.0.8

func (c IALCAWatchApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAWatchApprovalFuncCall) Results added in v0.0.8

func (c IALCAWatchApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCAWatchTransferFunc added in v0.0.8

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

IALCAWatchTransferFunc describes the behavior when the WatchTransfer method of the parent MockIALCA instance is invoked.

func (*IALCAWatchTransferFunc) History added in v0.0.8

History returns a sequence of IALCAWatchTransferFuncCall objects describing the invocations of this function.

func (*IALCAWatchTransferFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the WatchTransfer method of the parent MockIALCA instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCAWatchTransferFunc) PushReturn added in v0.0.8

func (f *IALCAWatchTransferFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCAWatchTransferFunc) SetDefaultHook added in v0.0.8

func (f *IALCAWatchTransferFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.ALCATransfer, []common.Address, []common.Address) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchTransfer method of the parent MockIALCA instance is invoked and the hook queue is empty.

func (*IALCAWatchTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCAWatchTransferFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCAWatchTransferFuncCall added in v0.0.8

type IALCAWatchTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ALCATransfer
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCAWatchTransferFuncCall is an object that describes an invocation of method WatchTransfer on an instance of MockIALCA.

func (IALCAWatchTransferFuncCall) Args added in v0.0.8

func (c IALCAWatchTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCAWatchTransferFuncCall) Results added in v0.0.8

func (c IALCAWatchTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBAllowanceFunc added in v0.0.8

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

IALCBAllowanceFunc describes the behavior when the Allowance method of the parent MockIALCB instance is invoked.

func (*IALCBAllowanceFunc) History added in v0.0.8

History returns a sequence of IALCBAllowanceFuncCall objects describing the invocations of this function.

func (*IALCBAllowanceFunc) PushHook added in v0.0.8

func (f *IALCBAllowanceFunc) PushHook(hook func(*bind.CallOpts, common.Address, common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the Allowance method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBAllowanceFunc) PushReturn added in v0.0.8

func (f *IALCBAllowanceFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBAllowanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCBAllowanceFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the Allowance method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBAllowanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBAllowanceFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBAllowanceFuncCall added in v0.0.8

type IALCBAllowanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBAllowanceFuncCall is an object that describes an invocation of method Allowance on an instance of MockIALCB.

func (IALCBAllowanceFuncCall) Args added in v0.0.8

func (c IALCBAllowanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBAllowanceFuncCall) Results added in v0.0.8

func (c IALCBAllowanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBApproveFunc added in v0.0.8

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

IALCBApproveFunc describes the behavior when the Approve method of the parent MockIALCB instance is invoked.

func (*IALCBApproveFunc) History added in v0.0.8

func (f *IALCBApproveFunc) History() []IALCBApproveFuncCall

History returns a sequence of IALCBApproveFuncCall objects describing the invocations of this function.

func (*IALCBApproveFunc) PushHook added in v0.0.8

func (f *IALCBApproveFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Approve method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBApproveFunc) PushReturn added in v0.0.8

func (f *IALCBApproveFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBApproveFunc) SetDefaultHook added in v0.0.8

func (f *IALCBApproveFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Approve method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBApproveFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBApproveFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBApproveFuncCall added in v0.0.8

type IALCBApproveFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBApproveFuncCall is an object that describes an invocation of method Approve on an instance of MockIALCB.

func (IALCBApproveFuncCall) Args added in v0.0.8

func (c IALCBApproveFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBApproveFuncCall) Results added in v0.0.8

func (c IALCBApproveFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBBalanceOfFunc added in v0.0.8

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

IALCBBalanceOfFunc describes the behavior when the BalanceOf method of the parent MockIALCB instance is invoked.

func (*IALCBBalanceOfFunc) History added in v0.0.8

History returns a sequence of IALCBBalanceOfFuncCall objects describing the invocations of this function.

func (*IALCBBalanceOfFunc) PushHook added in v0.0.8

func (f *IALCBBalanceOfFunc) PushHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the BalanceOf method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBBalanceOfFunc) PushReturn added in v0.0.8

func (f *IALCBBalanceOfFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBBalanceOfFunc) SetDefaultHook added in v0.0.8

func (f *IALCBBalanceOfFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the BalanceOf method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBBalanceOfFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBBalanceOfFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBBalanceOfFuncCall added in v0.0.8

type IALCBBalanceOfFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBBalanceOfFuncCall is an object that describes an invocation of method BalanceOf on an instance of MockIALCB.

func (IALCBBalanceOfFuncCall) Args added in v0.0.8

func (c IALCBBalanceOfFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBBalanceOfFuncCall) Results added in v0.0.8

func (c IALCBBalanceOfFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBBurnFunc added in v0.0.8

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

IALCBBurnFunc describes the behavior when the Burn method of the parent MockIALCB instance is invoked.

func (*IALCBBurnFunc) History added in v0.0.8

func (f *IALCBBurnFunc) History() []IALCBBurnFuncCall

History returns a sequence of IALCBBurnFuncCall objects describing the invocations of this function.

func (*IALCBBurnFunc) PushHook added in v0.0.8

func (f *IALCBBurnFunc) PushHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Burn method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBBurnFunc) PushReturn added in v0.0.8

func (f *IALCBBurnFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBBurnFunc) SetDefaultHook added in v0.0.8

func (f *IALCBBurnFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Burn method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBBurnFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBBurnFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBBurnFuncCall added in v0.0.8

type IALCBBurnFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBBurnFuncCall is an object that describes an invocation of method Burn on an instance of MockIALCB.

func (IALCBBurnFuncCall) Args added in v0.0.8

func (c IALCBBurnFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBBurnFuncCall) Results added in v0.0.8

func (c IALCBBurnFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBBurnToFunc added in v0.0.8

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

IALCBBurnToFunc describes the behavior when the BurnTo method of the parent MockIALCB instance is invoked.

func (*IALCBBurnToFunc) History added in v0.0.8

func (f *IALCBBurnToFunc) History() []IALCBBurnToFuncCall

History returns a sequence of IALCBBurnToFuncCall objects describing the invocations of this function.

func (*IALCBBurnToFunc) PushHook added in v0.0.8

func (f *IALCBBurnToFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the BurnTo method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBBurnToFunc) PushReturn added in v0.0.8

func (f *IALCBBurnToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBBurnToFunc) SetDefaultHook added in v0.0.8

func (f *IALCBBurnToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the BurnTo method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBBurnToFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBBurnToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBBurnToFuncCall added in v0.0.8

type IALCBBurnToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBBurnToFuncCall is an object that describes an invocation of method BurnTo on an instance of MockIALCB.

func (IALCBBurnToFuncCall) Args added in v0.0.8

func (c IALCBBurnToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBBurnToFuncCall) Results added in v0.0.8

func (c IALCBBurnToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBDecimalsFunc added in v0.0.8

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

IALCBDecimalsFunc describes the behavior when the Decimals method of the parent MockIALCB instance is invoked.

func (*IALCBDecimalsFunc) History added in v0.0.8

History returns a sequence of IALCBDecimalsFuncCall objects describing the invocations of this function.

func (*IALCBDecimalsFunc) PushHook added in v0.0.8

func (f *IALCBDecimalsFunc) PushHook(hook func(*bind.CallOpts) (uint8, error))

PushHook adds a function to the end of hook queue. Each invocation of the Decimals method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBDecimalsFunc) PushReturn added in v0.0.8

func (f *IALCBDecimalsFunc) PushReturn(r0 uint8, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBDecimalsFunc) SetDefaultHook added in v0.0.8

func (f *IALCBDecimalsFunc) SetDefaultHook(hook func(*bind.CallOpts) (uint8, error))

SetDefaultHook sets function that is called when the Decimals method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBDecimalsFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBDecimalsFunc) SetDefaultReturn(r0 uint8, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBDecimalsFuncCall added in v0.0.8

type IALCBDecimalsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint8
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBDecimalsFuncCall is an object that describes an invocation of method Decimals on an instance of MockIALCB.

func (IALCBDecimalsFuncCall) Args added in v0.0.8

func (c IALCBDecimalsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBDecimalsFuncCall) Results added in v0.0.8

func (c IALCBDecimalsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBDecreaseAllowanceFunc added in v0.0.8

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

IALCBDecreaseAllowanceFunc describes the behavior when the DecreaseAllowance method of the parent MockIALCB instance is invoked.

func (*IALCBDecreaseAllowanceFunc) History added in v0.0.8

History returns a sequence of IALCBDecreaseAllowanceFuncCall objects describing the invocations of this function.

func (*IALCBDecreaseAllowanceFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the DecreaseAllowance method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBDecreaseAllowanceFunc) PushReturn added in v0.0.8

func (f *IALCBDecreaseAllowanceFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBDecreaseAllowanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCBDecreaseAllowanceFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DecreaseAllowance method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBDecreaseAllowanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBDecreaseAllowanceFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBDecreaseAllowanceFuncCall added in v0.0.8

type IALCBDecreaseAllowanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBDecreaseAllowanceFuncCall is an object that describes an invocation of method DecreaseAllowance on an instance of MockIALCB.

func (IALCBDecreaseAllowanceFuncCall) Args added in v0.0.8

func (c IALCBDecreaseAllowanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBDecreaseAllowanceFuncCall) Results added in v0.0.8

func (c IALCBDecreaseAllowanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBDepositFunc added in v0.0.8

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

IALCBDepositFunc describes the behavior when the Deposit method of the parent MockIALCB instance is invoked.

func (*IALCBDepositFunc) History added in v0.0.8

func (f *IALCBDepositFunc) History() []IALCBDepositFuncCall

History returns a sequence of IALCBDepositFuncCall objects describing the invocations of this function.

func (*IALCBDepositFunc) PushHook added in v0.0.8

func (f *IALCBDepositFunc) PushHook(hook func(*bind.TransactOpts, uint8, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Deposit method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBDepositFunc) PushReturn added in v0.0.8

func (f *IALCBDepositFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBDepositFunc) SetDefaultHook added in v0.0.8

func (f *IALCBDepositFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Deposit method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBDepositFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBDepositFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBDepositFuncCall added in v0.0.8

type IALCBDepositFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBDepositFuncCall is an object that describes an invocation of method Deposit on an instance of MockIALCB.

func (IALCBDepositFuncCall) Args added in v0.0.8

func (c IALCBDepositFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBDepositFuncCall) Results added in v0.0.8

func (c IALCBDepositFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBDepositTokensOnBridgesFunc added in v0.0.8

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

IALCBDepositTokensOnBridgesFunc describes the behavior when the DepositTokensOnBridges method of the parent MockIALCB instance is invoked.

func (*IALCBDepositTokensOnBridgesFunc) History added in v0.0.8

History returns a sequence of IALCBDepositTokensOnBridgesFuncCall objects describing the invocations of this function.

func (*IALCBDepositTokensOnBridgesFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the DepositTokensOnBridges method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBDepositTokensOnBridgesFunc) PushReturn added in v0.0.8

func (f *IALCBDepositTokensOnBridgesFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBDepositTokensOnBridgesFunc) SetDefaultHook added in v0.0.8

func (f *IALCBDepositTokensOnBridgesFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DepositTokensOnBridges method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBDepositTokensOnBridgesFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBDepositTokensOnBridgesFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBDepositTokensOnBridgesFuncCall added in v0.0.8

type IALCBDepositTokensOnBridgesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBDepositTokensOnBridgesFuncCall is an object that describes an invocation of method DepositTokensOnBridges on an instance of MockIALCB.

func (IALCBDepositTokensOnBridgesFuncCall) Args added in v0.0.8

func (c IALCBDepositTokensOnBridgesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBDepositTokensOnBridgesFuncCall) Results added in v0.0.8

func (c IALCBDepositTokensOnBridgesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBDestroyTokensFunc added in v0.0.8

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

IALCBDestroyTokensFunc describes the behavior when the DestroyTokens method of the parent MockIALCB instance is invoked.

func (*IALCBDestroyTokensFunc) History added in v0.0.8

History returns a sequence of IALCBDestroyTokensFuncCall objects describing the invocations of this function.

func (*IALCBDestroyTokensFunc) PushHook added in v0.0.8

func (f *IALCBDestroyTokensFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the DestroyTokens method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBDestroyTokensFunc) PushReturn added in v0.0.8

func (f *IALCBDestroyTokensFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBDestroyTokensFunc) SetDefaultHook added in v0.0.8

func (f *IALCBDestroyTokensFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DestroyTokens method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBDestroyTokensFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBDestroyTokensFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBDestroyTokensFuncCall added in v0.0.8

type IALCBDestroyTokensFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBDestroyTokensFuncCall is an object that describes an invocation of method DestroyTokens on an instance of MockIALCB.

func (IALCBDestroyTokensFuncCall) Args added in v0.0.8

func (c IALCBDestroyTokensFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBDestroyTokensFuncCall) Results added in v0.0.8

func (c IALCBDestroyTokensFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBDistributeFunc added in v0.0.8

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

IALCBDistributeFunc describes the behavior when the Distribute method of the parent MockIALCB instance is invoked.

func (*IALCBDistributeFunc) History added in v0.0.8

History returns a sequence of IALCBDistributeFuncCall objects describing the invocations of this function.

func (*IALCBDistributeFunc) PushHook added in v0.0.8

func (f *IALCBDistributeFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Distribute method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBDistributeFunc) PushReturn added in v0.0.8

func (f *IALCBDistributeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBDistributeFunc) SetDefaultHook added in v0.0.8

func (f *IALCBDistributeFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Distribute method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBDistributeFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBDistributeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBDistributeFuncCall added in v0.0.8

type IALCBDistributeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBDistributeFuncCall is an object that describes an invocation of method Distribute on an instance of MockIALCB.

func (IALCBDistributeFuncCall) Args added in v0.0.8

func (c IALCBDistributeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBDistributeFuncCall) Results added in v0.0.8

func (c IALCBDistributeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBFilterApprovalFunc added in v0.0.8

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

IALCBFilterApprovalFunc describes the behavior when the FilterApproval method of the parent MockIALCB instance is invoked.

func (*IALCBFilterApprovalFunc) History added in v0.0.8

History returns a sequence of IALCBFilterApprovalFuncCall objects describing the invocations of this function.

func (*IALCBFilterApprovalFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the FilterApproval method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBFilterApprovalFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBFilterApprovalFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the FilterApproval method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBFilterApprovalFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBFilterApprovalFunc) SetDefaultReturn(r0 *bindings.ALCBApprovalIterator, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBFilterApprovalFuncCall added in v0.0.8

type IALCBFilterApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCBApprovalIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBFilterApprovalFuncCall is an object that describes an invocation of method FilterApproval on an instance of MockIALCB.

func (IALCBFilterApprovalFuncCall) Args added in v0.0.8

func (c IALCBFilterApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBFilterApprovalFuncCall) Results added in v0.0.8

func (c IALCBFilterApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBFilterDepositReceivedFunc added in v0.0.8

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

IALCBFilterDepositReceivedFunc describes the behavior when the FilterDepositReceived method of the parent MockIALCB instance is invoked.

func (*IALCBFilterDepositReceivedFunc) History added in v0.0.8

History returns a sequence of IALCBFilterDepositReceivedFuncCall objects describing the invocations of this function.

func (*IALCBFilterDepositReceivedFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the FilterDepositReceived method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBFilterDepositReceivedFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBFilterDepositReceivedFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the FilterDepositReceived method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBFilterDepositReceivedFunc) SetDefaultReturn added in v0.0.8

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBFilterDepositReceivedFuncCall added in v0.0.8

type IALCBFilterDepositReceivedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []*big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []uint8
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCBDepositReceivedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBFilterDepositReceivedFuncCall is an object that describes an invocation of method FilterDepositReceived on an instance of MockIALCB.

func (IALCBFilterDepositReceivedFuncCall) Args added in v0.0.8

func (c IALCBFilterDepositReceivedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBFilterDepositReceivedFuncCall) Results added in v0.0.8

func (c IALCBFilterDepositReceivedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBFilterTransferFunc added in v0.0.8

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

IALCBFilterTransferFunc describes the behavior when the FilterTransfer method of the parent MockIALCB instance is invoked.

func (*IALCBFilterTransferFunc) History added in v0.0.8

History returns a sequence of IALCBFilterTransferFuncCall objects describing the invocations of this function.

func (*IALCBFilterTransferFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the FilterTransfer method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBFilterTransferFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBFilterTransferFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the FilterTransfer method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBFilterTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBFilterTransferFunc) SetDefaultReturn(r0 *bindings.ALCBTransferIterator, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBFilterTransferFuncCall added in v0.0.8

type IALCBFilterTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCBTransferIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBFilterTransferFuncCall is an object that describes an invocation of method FilterTransfer on an instance of MockIALCB.

func (IALCBFilterTransferFuncCall) Args added in v0.0.8

func (c IALCBFilterTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBFilterTransferFuncCall) Results added in v0.0.8

func (c IALCBFilterTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetCentralBridgeRouterAddressFunc added in v0.0.8

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

IALCBGetCentralBridgeRouterAddressFunc describes the behavior when the GetCentralBridgeRouterAddress method of the parent MockIALCB instance is invoked.

func (*IALCBGetCentralBridgeRouterAddressFunc) History added in v0.0.8

History returns a sequence of IALCBGetCentralBridgeRouterAddressFuncCall objects describing the invocations of this function.

func (*IALCBGetCentralBridgeRouterAddressFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the GetCentralBridgeRouterAddress method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetCentralBridgeRouterAddressFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetCentralBridgeRouterAddressFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetCentralBridgeRouterAddressFunc) SetDefaultHook(hook func(*bind.CallOpts) (common.Address, error))

SetDefaultHook sets function that is called when the GetCentralBridgeRouterAddress method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetCentralBridgeRouterAddressFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetCentralBridgeRouterAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetCentralBridgeRouterAddressFuncCall added in v0.0.8

type IALCBGetCentralBridgeRouterAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetCentralBridgeRouterAddressFuncCall is an object that describes an invocation of method GetCentralBridgeRouterAddress on an instance of MockIALCB.

func (IALCBGetCentralBridgeRouterAddressFuncCall) Args added in v0.0.8

func (c IALCBGetCentralBridgeRouterAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetCentralBridgeRouterAddressFuncCall) Results added in v0.0.8

func (c IALCBGetCentralBridgeRouterAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetDepositFunc added in v0.0.8

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

IALCBGetDepositFunc describes the behavior when the GetDeposit method of the parent MockIALCB instance is invoked.

func (*IALCBGetDepositFunc) History added in v0.0.8

History returns a sequence of IALCBGetDepositFuncCall objects describing the invocations of this function.

func (*IALCBGetDepositFunc) PushHook added in v0.0.8

func (f *IALCBGetDepositFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (bindings.Deposit, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetDeposit method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetDepositFunc) PushReturn added in v0.0.8

func (f *IALCBGetDepositFunc) PushReturn(r0 bindings.Deposit, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetDepositFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetDepositFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (bindings.Deposit, error))

SetDefaultHook sets function that is called when the GetDeposit method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetDepositFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetDepositFunc) SetDefaultReturn(r0 bindings.Deposit, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetDepositFuncCall added in v0.0.8

type IALCBGetDepositFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.Deposit
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetDepositFuncCall is an object that describes an invocation of method GetDeposit on an instance of MockIALCB.

func (IALCBGetDepositFuncCall) Args added in v0.0.8

func (c IALCBGetDepositFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetDepositFuncCall) Results added in v0.0.8

func (c IALCBGetDepositFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetDepositIDFunc added in v0.0.8

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

IALCBGetDepositIDFunc describes the behavior when the GetDepositID method of the parent MockIALCB instance is invoked.

func (*IALCBGetDepositIDFunc) History added in v0.0.8

History returns a sequence of IALCBGetDepositIDFuncCall objects describing the invocations of this function.

func (*IALCBGetDepositIDFunc) PushHook added in v0.0.8

func (f *IALCBGetDepositIDFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetDepositID method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetDepositIDFunc) PushReturn added in v0.0.8

func (f *IALCBGetDepositIDFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetDepositIDFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetDepositIDFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetDepositID method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetDepositIDFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetDepositIDFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetDepositIDFuncCall added in v0.0.8

type IALCBGetDepositIDFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetDepositIDFuncCall is an object that describes an invocation of method GetDepositID on an instance of MockIALCB.

func (IALCBGetDepositIDFuncCall) Args added in v0.0.8

func (c IALCBGetDepositIDFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetDepositIDFuncCall) Results added in v0.0.8

func (c IALCBGetDepositIDFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetEthFromTokensBurnFunc added in v0.0.8

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

IALCBGetEthFromTokensBurnFunc describes the behavior when the GetEthFromTokensBurn method of the parent MockIALCB instance is invoked.

func (*IALCBGetEthFromTokensBurnFunc) History added in v0.0.8

History returns a sequence of IALCBGetEthFromTokensBurnFuncCall objects describing the invocations of this function.

func (*IALCBGetEthFromTokensBurnFunc) PushHook added in v0.0.8

func (f *IALCBGetEthFromTokensBurnFunc) PushHook(hook func(*bind.CallOpts, *big.Int, *big.Int, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEthFromTokensBurn method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetEthFromTokensBurnFunc) PushReturn added in v0.0.8

func (f *IALCBGetEthFromTokensBurnFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetEthFromTokensBurnFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetEthFromTokensBurnFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int, *big.Int, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetEthFromTokensBurn method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetEthFromTokensBurnFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetEthFromTokensBurnFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetEthFromTokensBurnFuncCall added in v0.0.8

type IALCBGetEthFromTokensBurnFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetEthFromTokensBurnFuncCall is an object that describes an invocation of method GetEthFromTokensBurn on an instance of MockIALCB.

func (IALCBGetEthFromTokensBurnFuncCall) Args added in v0.0.8

func (c IALCBGetEthFromTokensBurnFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetEthFromTokensBurnFuncCall) Results added in v0.0.8

func (c IALCBGetEthFromTokensBurnFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetEthToMintTokensFunc added in v0.0.8

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

IALCBGetEthToMintTokensFunc describes the behavior when the GetEthToMintTokens method of the parent MockIALCB instance is invoked.

func (*IALCBGetEthToMintTokensFunc) History added in v0.0.8

History returns a sequence of IALCBGetEthToMintTokensFuncCall objects describing the invocations of this function.

func (*IALCBGetEthToMintTokensFunc) PushHook added in v0.0.8

func (f *IALCBGetEthToMintTokensFunc) PushHook(hook func(*bind.CallOpts, *big.Int, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEthToMintTokens method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetEthToMintTokensFunc) PushReturn added in v0.0.8

func (f *IALCBGetEthToMintTokensFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetEthToMintTokensFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetEthToMintTokensFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetEthToMintTokens method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetEthToMintTokensFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetEthToMintTokensFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetEthToMintTokensFuncCall added in v0.0.8

type IALCBGetEthToMintTokensFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetEthToMintTokensFuncCall is an object that describes an invocation of method GetEthToMintTokens on an instance of MockIALCB.

func (IALCBGetEthToMintTokensFuncCall) Args added in v0.0.8

func (c IALCBGetEthToMintTokensFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetEthToMintTokensFuncCall) Results added in v0.0.8

func (c IALCBGetEthToMintTokensFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetLatestEthFromTokensBurnFunc added in v0.0.8

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

IALCBGetLatestEthFromTokensBurnFunc describes the behavior when the GetLatestEthFromTokensBurn method of the parent MockIALCB instance is invoked.

func (*IALCBGetLatestEthFromTokensBurnFunc) History added in v0.0.8

History returns a sequence of IALCBGetLatestEthFromTokensBurnFuncCall objects describing the invocations of this function.

func (*IALCBGetLatestEthFromTokensBurnFunc) PushHook added in v0.0.8

func (f *IALCBGetLatestEthFromTokensBurnFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestEthFromTokensBurn method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetLatestEthFromTokensBurnFunc) PushReturn added in v0.0.8

func (f *IALCBGetLatestEthFromTokensBurnFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetLatestEthFromTokensBurnFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetLatestEthFromTokensBurnFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetLatestEthFromTokensBurn method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetLatestEthFromTokensBurnFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetLatestEthFromTokensBurnFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetLatestEthFromTokensBurnFuncCall added in v0.0.8

type IALCBGetLatestEthFromTokensBurnFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetLatestEthFromTokensBurnFuncCall is an object that describes an invocation of method GetLatestEthFromTokensBurn on an instance of MockIALCB.

func (IALCBGetLatestEthFromTokensBurnFuncCall) Args added in v0.0.8

func (c IALCBGetLatestEthFromTokensBurnFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetLatestEthFromTokensBurnFuncCall) Results added in v0.0.8

func (c IALCBGetLatestEthFromTokensBurnFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetLatestEthToMintTokensFunc added in v0.0.8

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

IALCBGetLatestEthToMintTokensFunc describes the behavior when the GetLatestEthToMintTokens method of the parent MockIALCB instance is invoked.

func (*IALCBGetLatestEthToMintTokensFunc) History added in v0.0.8

History returns a sequence of IALCBGetLatestEthToMintTokensFuncCall objects describing the invocations of this function.

func (*IALCBGetLatestEthToMintTokensFunc) PushHook added in v0.0.8

func (f *IALCBGetLatestEthToMintTokensFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestEthToMintTokens method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetLatestEthToMintTokensFunc) PushReturn added in v0.0.8

func (f *IALCBGetLatestEthToMintTokensFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetLatestEthToMintTokensFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetLatestEthToMintTokensFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetLatestEthToMintTokens method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetLatestEthToMintTokensFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetLatestEthToMintTokensFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetLatestEthToMintTokensFuncCall added in v0.0.8

type IALCBGetLatestEthToMintTokensFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetLatestEthToMintTokensFuncCall is an object that describes an invocation of method GetLatestEthToMintTokens on an instance of MockIALCB.

func (IALCBGetLatestEthToMintTokensFuncCall) Args added in v0.0.8

func (c IALCBGetLatestEthToMintTokensFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetLatestEthToMintTokensFuncCall) Results added in v0.0.8

func (c IALCBGetLatestEthToMintTokensFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetLatestMintedTokensFromEthFunc added in v0.0.8

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

IALCBGetLatestMintedTokensFromEthFunc describes the behavior when the GetLatestMintedTokensFromEth method of the parent MockIALCB instance is invoked.

func (*IALCBGetLatestMintedTokensFromEthFunc) History added in v0.0.8

History returns a sequence of IALCBGetLatestMintedTokensFromEthFuncCall objects describing the invocations of this function.

func (*IALCBGetLatestMintedTokensFromEthFunc) PushHook added in v0.0.8

func (f *IALCBGetLatestMintedTokensFromEthFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestMintedTokensFromEth method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetLatestMintedTokensFromEthFunc) PushReturn added in v0.0.8

func (f *IALCBGetLatestMintedTokensFromEthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetLatestMintedTokensFromEthFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetLatestMintedTokensFromEthFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetLatestMintedTokensFromEth method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetLatestMintedTokensFromEthFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetLatestMintedTokensFromEthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetLatestMintedTokensFromEthFuncCall added in v0.0.8

type IALCBGetLatestMintedTokensFromEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetLatestMintedTokensFromEthFuncCall is an object that describes an invocation of method GetLatestMintedTokensFromEth on an instance of MockIALCB.

func (IALCBGetLatestMintedTokensFromEthFuncCall) Args added in v0.0.8

func (c IALCBGetLatestMintedTokensFromEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetLatestMintedTokensFromEthFuncCall) Results added in v0.0.8

func (c IALCBGetLatestMintedTokensFromEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetMarketSpreadFunc added in v0.0.8

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

IALCBGetMarketSpreadFunc describes the behavior when the GetMarketSpread method of the parent MockIALCB instance is invoked.

func (*IALCBGetMarketSpreadFunc) History added in v0.0.8

History returns a sequence of IALCBGetMarketSpreadFuncCall objects describing the invocations of this function.

func (*IALCBGetMarketSpreadFunc) PushHook added in v0.0.8

func (f *IALCBGetMarketSpreadFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMarketSpread method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetMarketSpreadFunc) PushReturn added in v0.0.8

func (f *IALCBGetMarketSpreadFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetMarketSpreadFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetMarketSpreadFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMarketSpread method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetMarketSpreadFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetMarketSpreadFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetMarketSpreadFuncCall added in v0.0.8

type IALCBGetMarketSpreadFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetMarketSpreadFuncCall is an object that describes an invocation of method GetMarketSpread on an instance of MockIALCB.

func (IALCBGetMarketSpreadFuncCall) Args added in v0.0.8

func (c IALCBGetMarketSpreadFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetMarketSpreadFuncCall) Results added in v0.0.8

func (c IALCBGetMarketSpreadFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetMetamorphicContractAddressFunc added in v0.0.8

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

IALCBGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIALCB instance is invoked.

func (*IALCBGetMetamorphicContractAddressFunc) History added in v0.0.8

History returns a sequence of IALCBGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IALCBGetMetamorphicContractAddressFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetMetamorphicContractAddressFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetMetamorphicContractAddressFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetMetamorphicContractAddressFunc) SetDefaultHook(hook func(*bind.CallOpts, [32]byte, common.Address) (common.Address, error))

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetMetamorphicContractAddressFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetMetamorphicContractAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetMetamorphicContractAddressFuncCall added in v0.0.8

type IALCBGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIALCB.

func (IALCBGetMetamorphicContractAddressFuncCall) Args added in v0.0.8

func (c IALCBGetMetamorphicContractAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetMetamorphicContractAddressFuncCall) Results added in v0.0.8

func (c IALCBGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetMintedTokensFromEthFunc added in v0.0.8

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

IALCBGetMintedTokensFromEthFunc describes the behavior when the GetMintedTokensFromEth method of the parent MockIALCB instance is invoked.

func (*IALCBGetMintedTokensFromEthFunc) History added in v0.0.8

History returns a sequence of IALCBGetMintedTokensFromEthFuncCall objects describing the invocations of this function.

func (*IALCBGetMintedTokensFromEthFunc) PushHook added in v0.0.8

func (f *IALCBGetMintedTokensFromEthFunc) PushHook(hook func(*bind.CallOpts, *big.Int, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMintedTokensFromEth method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetMintedTokensFromEthFunc) PushReturn added in v0.0.8

func (f *IALCBGetMintedTokensFromEthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetMintedTokensFromEthFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetMintedTokensFromEthFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMintedTokensFromEth method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetMintedTokensFromEthFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetMintedTokensFromEthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetMintedTokensFromEthFuncCall added in v0.0.8

type IALCBGetMintedTokensFromEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetMintedTokensFromEthFuncCall is an object that describes an invocation of method GetMintedTokensFromEth on an instance of MockIALCB.

func (IALCBGetMintedTokensFromEthFuncCall) Args added in v0.0.8

func (c IALCBGetMintedTokensFromEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetMintedTokensFromEthFuncCall) Results added in v0.0.8

func (c IALCBGetMintedTokensFromEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetPoolBalanceFunc added in v0.0.8

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

IALCBGetPoolBalanceFunc describes the behavior when the GetPoolBalance method of the parent MockIALCB instance is invoked.

func (*IALCBGetPoolBalanceFunc) History added in v0.0.8

History returns a sequence of IALCBGetPoolBalanceFuncCall objects describing the invocations of this function.

func (*IALCBGetPoolBalanceFunc) PushHook added in v0.0.8

func (f *IALCBGetPoolBalanceFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPoolBalance method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetPoolBalanceFunc) PushReturn added in v0.0.8

func (f *IALCBGetPoolBalanceFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetPoolBalanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetPoolBalanceFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetPoolBalance method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetPoolBalanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetPoolBalanceFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetPoolBalanceFuncCall added in v0.0.8

type IALCBGetPoolBalanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetPoolBalanceFuncCall is an object that describes an invocation of method GetPoolBalance on an instance of MockIALCB.

func (IALCBGetPoolBalanceFuncCall) Args added in v0.0.8

func (c IALCBGetPoolBalanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetPoolBalanceFuncCall) Results added in v0.0.8

func (c IALCBGetPoolBalanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetTotalTokensDepositedFunc added in v0.0.8

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

IALCBGetTotalTokensDepositedFunc describes the behavior when the GetTotalTokensDeposited method of the parent MockIALCB instance is invoked.

func (*IALCBGetTotalTokensDepositedFunc) History added in v0.0.8

History returns a sequence of IALCBGetTotalTokensDepositedFuncCall objects describing the invocations of this function.

func (*IALCBGetTotalTokensDepositedFunc) PushHook added in v0.0.8

func (f *IALCBGetTotalTokensDepositedFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalTokensDeposited method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetTotalTokensDepositedFunc) PushReturn added in v0.0.8

func (f *IALCBGetTotalTokensDepositedFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetTotalTokensDepositedFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetTotalTokensDepositedFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalTokensDeposited method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetTotalTokensDepositedFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetTotalTokensDepositedFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetTotalTokensDepositedFuncCall added in v0.0.8

type IALCBGetTotalTokensDepositedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetTotalTokensDepositedFuncCall is an object that describes an invocation of method GetTotalTokensDeposited on an instance of MockIALCB.

func (IALCBGetTotalTokensDepositedFuncCall) Args added in v0.0.8

func (c IALCBGetTotalTokensDepositedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetTotalTokensDepositedFuncCall) Results added in v0.0.8

func (c IALCBGetTotalTokensDepositedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBGetYieldFunc added in v0.0.8

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

IALCBGetYieldFunc describes the behavior when the GetYield method of the parent MockIALCB instance is invoked.

func (*IALCBGetYieldFunc) History added in v0.0.8

History returns a sequence of IALCBGetYieldFuncCall objects describing the invocations of this function.

func (*IALCBGetYieldFunc) PushHook added in v0.0.8

func (f *IALCBGetYieldFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetYield method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBGetYieldFunc) PushReturn added in v0.0.8

func (f *IALCBGetYieldFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBGetYieldFunc) SetDefaultHook added in v0.0.8

func (f *IALCBGetYieldFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetYield method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBGetYieldFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBGetYieldFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBGetYieldFuncCall added in v0.0.8

type IALCBGetYieldFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBGetYieldFuncCall is an object that describes an invocation of method GetYield on an instance of MockIALCB.

func (IALCBGetYieldFuncCall) Args added in v0.0.8

func (c IALCBGetYieldFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBGetYieldFuncCall) Results added in v0.0.8

func (c IALCBGetYieldFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBIncreaseAllowanceFunc added in v0.0.8

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

IALCBIncreaseAllowanceFunc describes the behavior when the IncreaseAllowance method of the parent MockIALCB instance is invoked.

func (*IALCBIncreaseAllowanceFunc) History added in v0.0.8

History returns a sequence of IALCBIncreaseAllowanceFuncCall objects describing the invocations of this function.

func (*IALCBIncreaseAllowanceFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the IncreaseAllowance method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBIncreaseAllowanceFunc) PushReturn added in v0.0.8

func (f *IALCBIncreaseAllowanceFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBIncreaseAllowanceFunc) SetDefaultHook added in v0.0.8

func (f *IALCBIncreaseAllowanceFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the IncreaseAllowance method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBIncreaseAllowanceFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBIncreaseAllowanceFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBIncreaseAllowanceFuncCall added in v0.0.8

type IALCBIncreaseAllowanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBIncreaseAllowanceFuncCall is an object that describes an invocation of method IncreaseAllowance on an instance of MockIALCB.

func (IALCBIncreaseAllowanceFuncCall) Args added in v0.0.8

func (c IALCBIncreaseAllowanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBIncreaseAllowanceFuncCall) Results added in v0.0.8

func (c IALCBIncreaseAllowanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBMintDepositFunc added in v0.0.8

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

IALCBMintDepositFunc describes the behavior when the MintDeposit method of the parent MockIALCB instance is invoked.

func (*IALCBMintDepositFunc) History added in v0.0.8

History returns a sequence of IALCBMintDepositFuncCall objects describing the invocations of this function.

func (*IALCBMintDepositFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the MintDeposit method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBMintDepositFunc) PushReturn added in v0.0.8

func (f *IALCBMintDepositFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBMintDepositFunc) SetDefaultHook added in v0.0.8

func (f *IALCBMintDepositFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MintDeposit method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBMintDepositFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBMintDepositFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBMintDepositFuncCall added in v0.0.8

type IALCBMintDepositFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBMintDepositFuncCall is an object that describes an invocation of method MintDeposit on an instance of MockIALCB.

func (IALCBMintDepositFuncCall) Args added in v0.0.8

func (c IALCBMintDepositFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBMintDepositFuncCall) Results added in v0.0.8

func (c IALCBMintDepositFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBMintFunc added in v0.0.8

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

IALCBMintFunc describes the behavior when the Mint method of the parent MockIALCB instance is invoked.

func (*IALCBMintFunc) History added in v0.0.8

func (f *IALCBMintFunc) History() []IALCBMintFuncCall

History returns a sequence of IALCBMintFuncCall objects describing the invocations of this function.

func (*IALCBMintFunc) PushHook added in v0.0.8

func (f *IALCBMintFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Mint method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBMintFunc) PushReturn added in v0.0.8

func (f *IALCBMintFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBMintFunc) SetDefaultHook added in v0.0.8

func (f *IALCBMintFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Mint method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBMintFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBMintFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBMintFuncCall added in v0.0.8

type IALCBMintFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBMintFuncCall is an object that describes an invocation of method Mint on an instance of MockIALCB.

func (IALCBMintFuncCall) Args added in v0.0.8

func (c IALCBMintFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBMintFuncCall) Results added in v0.0.8

func (c IALCBMintFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBMintToFunc added in v0.0.8

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

IALCBMintToFunc describes the behavior when the MintTo method of the parent MockIALCB instance is invoked.

func (*IALCBMintToFunc) History added in v0.0.8

func (f *IALCBMintToFunc) History() []IALCBMintToFuncCall

History returns a sequence of IALCBMintToFuncCall objects describing the invocations of this function.

func (*IALCBMintToFunc) PushHook added in v0.0.8

func (f *IALCBMintToFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the MintTo method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBMintToFunc) PushReturn added in v0.0.8

func (f *IALCBMintToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBMintToFunc) SetDefaultHook added in v0.0.8

func (f *IALCBMintToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MintTo method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBMintToFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBMintToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBMintToFuncCall added in v0.0.8

type IALCBMintToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBMintToFuncCall is an object that describes an invocation of method MintTo on an instance of MockIALCB.

func (IALCBMintToFuncCall) Args added in v0.0.8

func (c IALCBMintToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBMintToFuncCall) Results added in v0.0.8

func (c IALCBMintToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBNameFunc added in v0.0.8

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

IALCBNameFunc describes the behavior when the Name method of the parent MockIALCB instance is invoked.

func (*IALCBNameFunc) History added in v0.0.8

func (f *IALCBNameFunc) History() []IALCBNameFuncCall

History returns a sequence of IALCBNameFuncCall objects describing the invocations of this function.

func (*IALCBNameFunc) PushHook added in v0.0.8

func (f *IALCBNameFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Name method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBNameFunc) PushReturn added in v0.0.8

func (f *IALCBNameFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBNameFunc) SetDefaultHook added in v0.0.8

func (f *IALCBNameFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Name method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBNameFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBNameFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBNameFuncCall added in v0.0.8

type IALCBNameFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBNameFuncCall is an object that describes an invocation of method Name on an instance of MockIALCB.

func (IALCBNameFuncCall) Args added in v0.0.8

func (c IALCBNameFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBNameFuncCall) Results added in v0.0.8

func (c IALCBNameFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBParseApprovalFunc added in v0.0.8

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

IALCBParseApprovalFunc describes the behavior when the ParseApproval method of the parent MockIALCB instance is invoked.

func (*IALCBParseApprovalFunc) History added in v0.0.8

History returns a sequence of IALCBParseApprovalFuncCall objects describing the invocations of this function.

func (*IALCBParseApprovalFunc) PushHook added in v0.0.8

func (f *IALCBParseApprovalFunc) PushHook(hook func(types.Log) (*bindings.ALCBApproval, error))

PushHook adds a function to the end of hook queue. Each invocation of the ParseApproval method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBParseApprovalFunc) PushReturn added in v0.0.8

func (f *IALCBParseApprovalFunc) PushReturn(r0 *bindings.ALCBApproval, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBParseApprovalFunc) SetDefaultHook added in v0.0.8

func (f *IALCBParseApprovalFunc) SetDefaultHook(hook func(types.Log) (*bindings.ALCBApproval, error))

SetDefaultHook sets function that is called when the ParseApproval method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBParseApprovalFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBParseApprovalFunc) SetDefaultReturn(r0 *bindings.ALCBApproval, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBParseApprovalFuncCall added in v0.0.8

type IALCBParseApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCBApproval
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBParseApprovalFuncCall is an object that describes an invocation of method ParseApproval on an instance of MockIALCB.

func (IALCBParseApprovalFuncCall) Args added in v0.0.8

func (c IALCBParseApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBParseApprovalFuncCall) Results added in v0.0.8

func (c IALCBParseApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBParseDepositReceivedFunc added in v0.0.8

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

IALCBParseDepositReceivedFunc describes the behavior when the ParseDepositReceived method of the parent MockIALCB instance is invoked.

func (*IALCBParseDepositReceivedFunc) History added in v0.0.8

History returns a sequence of IALCBParseDepositReceivedFuncCall objects describing the invocations of this function.

func (*IALCBParseDepositReceivedFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the ParseDepositReceived method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBParseDepositReceivedFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBParseDepositReceivedFunc) SetDefaultHook added in v0.0.8

func (f *IALCBParseDepositReceivedFunc) SetDefaultHook(hook func(types.Log) (*bindings.ALCBDepositReceived, error))

SetDefaultHook sets function that is called when the ParseDepositReceived method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBParseDepositReceivedFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBParseDepositReceivedFunc) SetDefaultReturn(r0 *bindings.ALCBDepositReceived, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBParseDepositReceivedFuncCall added in v0.0.8

type IALCBParseDepositReceivedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCBDepositReceived
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBParseDepositReceivedFuncCall is an object that describes an invocation of method ParseDepositReceived on an instance of MockIALCB.

func (IALCBParseDepositReceivedFuncCall) Args added in v0.0.8

func (c IALCBParseDepositReceivedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBParseDepositReceivedFuncCall) Results added in v0.0.8

func (c IALCBParseDepositReceivedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBParseTransferFunc added in v0.0.8

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

IALCBParseTransferFunc describes the behavior when the ParseTransfer method of the parent MockIALCB instance is invoked.

func (*IALCBParseTransferFunc) History added in v0.0.8

History returns a sequence of IALCBParseTransferFuncCall objects describing the invocations of this function.

func (*IALCBParseTransferFunc) PushHook added in v0.0.8

func (f *IALCBParseTransferFunc) PushHook(hook func(types.Log) (*bindings.ALCBTransfer, error))

PushHook adds a function to the end of hook queue. Each invocation of the ParseTransfer method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBParseTransferFunc) PushReturn added in v0.0.8

func (f *IALCBParseTransferFunc) PushReturn(r0 *bindings.ALCBTransfer, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBParseTransferFunc) SetDefaultHook added in v0.0.8

func (f *IALCBParseTransferFunc) SetDefaultHook(hook func(types.Log) (*bindings.ALCBTransfer, error))

SetDefaultHook sets function that is called when the ParseTransfer method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBParseTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBParseTransferFunc) SetDefaultReturn(r0 *bindings.ALCBTransfer, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBParseTransferFuncCall added in v0.0.8

type IALCBParseTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ALCBTransfer
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBParseTransferFuncCall is an object that describes an invocation of method ParseTransfer on an instance of MockIALCB.

func (IALCBParseTransferFuncCall) Args added in v0.0.8

func (c IALCBParseTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBParseTransferFuncCall) Results added in v0.0.8

func (c IALCBParseTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBSetAccountTypeFunc added in v0.0.8

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

IALCBSetAccountTypeFunc describes the behavior when the SetAccountType method of the parent MockIALCB instance is invoked.

func (*IALCBSetAccountTypeFunc) History added in v0.0.8

History returns a sequence of IALCBSetAccountTypeFuncCall objects describing the invocations of this function.

func (*IALCBSetAccountTypeFunc) PushHook added in v0.0.8

func (f *IALCBSetAccountTypeFunc) PushHook(hook func(*bind.TransactOpts, uint8, bool) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the SetAccountType method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBSetAccountTypeFunc) PushReturn added in v0.0.8

func (f *IALCBSetAccountTypeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBSetAccountTypeFunc) SetDefaultHook added in v0.0.8

func (f *IALCBSetAccountTypeFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8, bool) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetAccountType method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBSetAccountTypeFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBSetAccountTypeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBSetAccountTypeFuncCall added in v0.0.8

type IALCBSetAccountTypeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 bool
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBSetAccountTypeFuncCall is an object that describes an invocation of method SetAccountType on an instance of MockIALCB.

func (IALCBSetAccountTypeFuncCall) Args added in v0.0.8

func (c IALCBSetAccountTypeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBSetAccountTypeFuncCall) Results added in v0.0.8

func (c IALCBSetAccountTypeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBSymbolFunc added in v0.0.8

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

IALCBSymbolFunc describes the behavior when the Symbol method of the parent MockIALCB instance is invoked.

func (*IALCBSymbolFunc) History added in v0.0.8

func (f *IALCBSymbolFunc) History() []IALCBSymbolFuncCall

History returns a sequence of IALCBSymbolFuncCall objects describing the invocations of this function.

func (*IALCBSymbolFunc) PushHook added in v0.0.8

func (f *IALCBSymbolFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Symbol method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBSymbolFunc) PushReturn added in v0.0.8

func (f *IALCBSymbolFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBSymbolFunc) SetDefaultHook added in v0.0.8

func (f *IALCBSymbolFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Symbol method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBSymbolFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBSymbolFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBSymbolFuncCall added in v0.0.8

type IALCBSymbolFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBSymbolFuncCall is an object that describes an invocation of method Symbol on an instance of MockIALCB.

func (IALCBSymbolFuncCall) Args added in v0.0.8

func (c IALCBSymbolFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBSymbolFuncCall) Results added in v0.0.8

func (c IALCBSymbolFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBTotalSupplyFunc added in v0.0.8

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

IALCBTotalSupplyFunc describes the behavior when the TotalSupply method of the parent MockIALCB instance is invoked.

func (*IALCBTotalSupplyFunc) History added in v0.0.8

History returns a sequence of IALCBTotalSupplyFuncCall objects describing the invocations of this function.

func (*IALCBTotalSupplyFunc) PushHook added in v0.0.8

func (f *IALCBTotalSupplyFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the TotalSupply method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBTotalSupplyFunc) PushReturn added in v0.0.8

func (f *IALCBTotalSupplyFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBTotalSupplyFunc) SetDefaultHook added in v0.0.8

func (f *IALCBTotalSupplyFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the TotalSupply method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBTotalSupplyFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBTotalSupplyFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBTotalSupplyFuncCall added in v0.0.8

type IALCBTotalSupplyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBTotalSupplyFuncCall is an object that describes an invocation of method TotalSupply on an instance of MockIALCB.

func (IALCBTotalSupplyFuncCall) Args added in v0.0.8

func (c IALCBTotalSupplyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBTotalSupplyFuncCall) Results added in v0.0.8

func (c IALCBTotalSupplyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBTransferFromFunc added in v0.0.8

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

IALCBTransferFromFunc describes the behavior when the TransferFrom method of the parent MockIALCB instance is invoked.

func (*IALCBTransferFromFunc) History added in v0.0.8

History returns a sequence of IALCBTransferFromFuncCall objects describing the invocations of this function.

func (*IALCBTransferFromFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the TransferFrom method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBTransferFromFunc) PushReturn added in v0.0.8

func (f *IALCBTransferFromFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBTransferFromFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the TransferFrom method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBTransferFromFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBTransferFromFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBTransferFromFuncCall added in v0.0.8

type IALCBTransferFromFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBTransferFromFuncCall is an object that describes an invocation of method TransferFrom on an instance of MockIALCB.

func (IALCBTransferFromFuncCall) Args added in v0.0.8

func (c IALCBTransferFromFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBTransferFromFuncCall) Results added in v0.0.8

func (c IALCBTransferFromFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBTransferFunc added in v0.0.8

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

IALCBTransferFunc describes the behavior when the Transfer method of the parent MockIALCB instance is invoked.

func (*IALCBTransferFunc) History added in v0.0.8

History returns a sequence of IALCBTransferFuncCall objects describing the invocations of this function.

func (*IALCBTransferFunc) PushHook added in v0.0.8

func (f *IALCBTransferFunc) PushHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Transfer method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBTransferFunc) PushReturn added in v0.0.8

func (f *IALCBTransferFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBTransferFunc) SetDefaultHook added in v0.0.8

func (f *IALCBTransferFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Transfer method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBTransferFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBTransferFuncCall added in v0.0.8

type IALCBTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBTransferFuncCall is an object that describes an invocation of method Transfer on an instance of MockIALCB.

func (IALCBTransferFuncCall) Args added in v0.0.8

func (c IALCBTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBTransferFuncCall) Results added in v0.0.8

func (c IALCBTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBVirtualMintDepositFunc added in v0.0.8

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

IALCBVirtualMintDepositFunc describes the behavior when the VirtualMintDeposit method of the parent MockIALCB instance is invoked.

func (*IALCBVirtualMintDepositFunc) History added in v0.0.8

History returns a sequence of IALCBVirtualMintDepositFuncCall objects describing the invocations of this function.

func (*IALCBVirtualMintDepositFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the VirtualMintDeposit method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBVirtualMintDepositFunc) PushReturn added in v0.0.8

func (f *IALCBVirtualMintDepositFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBVirtualMintDepositFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the VirtualMintDeposit method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBVirtualMintDepositFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBVirtualMintDepositFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBVirtualMintDepositFuncCall added in v0.0.8

type IALCBVirtualMintDepositFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBVirtualMintDepositFuncCall is an object that describes an invocation of method VirtualMintDeposit on an instance of MockIALCB.

func (IALCBVirtualMintDepositFuncCall) Args added in v0.0.8

func (c IALCBVirtualMintDepositFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBVirtualMintDepositFuncCall) Results added in v0.0.8

func (c IALCBVirtualMintDepositFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBWatchApprovalFunc added in v0.0.8

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

IALCBWatchApprovalFunc describes the behavior when the WatchApproval method of the parent MockIALCB instance is invoked.

func (*IALCBWatchApprovalFunc) History added in v0.0.8

History returns a sequence of IALCBWatchApprovalFuncCall objects describing the invocations of this function.

func (*IALCBWatchApprovalFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the WatchApproval method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBWatchApprovalFunc) PushReturn added in v0.0.8

func (f *IALCBWatchApprovalFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBWatchApprovalFunc) SetDefaultHook added in v0.0.8

func (f *IALCBWatchApprovalFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.ALCBApproval, []common.Address, []common.Address) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchApproval method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBWatchApprovalFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBWatchApprovalFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBWatchApprovalFuncCall added in v0.0.8

type IALCBWatchApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ALCBApproval
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBWatchApprovalFuncCall is an object that describes an invocation of method WatchApproval on an instance of MockIALCB.

func (IALCBWatchApprovalFuncCall) Args added in v0.0.8

func (c IALCBWatchApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBWatchApprovalFuncCall) Results added in v0.0.8

func (c IALCBWatchApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBWatchDepositReceivedFunc added in v0.0.8

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

IALCBWatchDepositReceivedFunc describes the behavior when the WatchDepositReceived method of the parent MockIALCB instance is invoked.

func (*IALCBWatchDepositReceivedFunc) History added in v0.0.8

History returns a sequence of IALCBWatchDepositReceivedFuncCall objects describing the invocations of this function.

func (*IALCBWatchDepositReceivedFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the WatchDepositReceived method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBWatchDepositReceivedFunc) PushReturn added in v0.0.8

func (f *IALCBWatchDepositReceivedFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBWatchDepositReceivedFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the WatchDepositReceived method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBWatchDepositReceivedFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBWatchDepositReceivedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBWatchDepositReceivedFuncCall added in v0.0.8

type IALCBWatchDepositReceivedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ALCBDepositReceived
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []uint8
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBWatchDepositReceivedFuncCall is an object that describes an invocation of method WatchDepositReceived on an instance of MockIALCB.

func (IALCBWatchDepositReceivedFuncCall) Args added in v0.0.8

func (c IALCBWatchDepositReceivedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBWatchDepositReceivedFuncCall) Results added in v0.0.8

func (c IALCBWatchDepositReceivedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IALCBWatchTransferFunc added in v0.0.8

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

IALCBWatchTransferFunc describes the behavior when the WatchTransfer method of the parent MockIALCB instance is invoked.

func (*IALCBWatchTransferFunc) History added in v0.0.8

History returns a sequence of IALCBWatchTransferFuncCall objects describing the invocations of this function.

func (*IALCBWatchTransferFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the WatchTransfer method of the parent MockIALCB instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IALCBWatchTransferFunc) PushReturn added in v0.0.8

func (f *IALCBWatchTransferFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IALCBWatchTransferFunc) SetDefaultHook added in v0.0.8

func (f *IALCBWatchTransferFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.ALCBTransfer, []common.Address, []common.Address) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchTransfer method of the parent MockIALCB instance is invoked and the hook queue is empty.

func (*IALCBWatchTransferFunc) SetDefaultReturn added in v0.0.8

func (f *IALCBWatchTransferFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IALCBWatchTransferFuncCall added in v0.0.8

type IALCBWatchTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ALCBTransfer
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IALCBWatchTransferFuncCall is an object that describes an invocation of method WatchTransfer on an instance of MockIALCB.

func (IALCBWatchTransferFuncCall) Args added in v0.0.8

func (c IALCBWatchTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IALCBWatchTransferFuncCall) Results added in v0.0.8

func (c IALCBWatchTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryAddNewExternalContractFunc added in v0.0.7

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

IAliceNetFactoryAddNewExternalContractFunc describes the behavior when the AddNewExternalContract method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryAddNewExternalContractFunc) History added in v0.0.7

History returns a sequence of IAliceNetFactoryAddNewExternalContractFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryAddNewExternalContractFunc) PushHook added in v0.0.7

PushHook adds a function to the end of hook queue. Each invocation of the AddNewExternalContract method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryAddNewExternalContractFunc) PushReturn added in v0.0.7

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryAddNewExternalContractFunc) SetDefaultHook added in v0.0.7

SetDefaultHook sets function that is called when the AddNewExternalContract method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryAddNewExternalContractFunc) SetDefaultReturn added in v0.0.7

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryAddNewExternalContractFuncCall added in v0.0.7

type IAliceNetFactoryAddNewExternalContractFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryAddNewExternalContractFuncCall is an object that describes an invocation of method AddNewExternalContract on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryAddNewExternalContractFuncCall) Args added in v0.0.7

func (c IAliceNetFactoryAddNewExternalContractFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryAddNewExternalContractFuncCall) Results added in v0.0.7

func (c IAliceNetFactoryAddNewExternalContractFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryCallAnyFunc

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

IAliceNetFactoryCallAnyFunc describes the behavior when the CallAny method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryCallAnyFunc) History

History returns a sequence of IAliceNetFactoryCallAnyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryCallAnyFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CallAny method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryCallAnyFunc) PushReturn

func (f *IAliceNetFactoryCallAnyFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryCallAnyFunc) SetDefaultHook

func (f *IAliceNetFactoryCallAnyFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CallAny method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryCallAnyFunc) SetDefaultReturn

func (f *IAliceNetFactoryCallAnyFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryCallAnyFuncCall

type IAliceNetFactoryCallAnyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryCallAnyFuncCall is an object that describes an invocation of method CallAny on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryCallAnyFuncCall) Args

func (c IAliceNetFactoryCallAnyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryCallAnyFuncCall) Results

func (c IAliceNetFactoryCallAnyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryContractsFunc

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

IAliceNetFactoryContractsFunc describes the behavior when the Contracts method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryContractsFunc) History

History returns a sequence of IAliceNetFactoryContractsFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryContractsFunc) PushHook

func (f *IAliceNetFactoryContractsFunc) PushHook(hook func(*bind.CallOpts) ([][32]byte, error))

PushHook adds a function to the end of hook queue. Each invocation of the Contracts method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryContractsFunc) PushReturn

func (f *IAliceNetFactoryContractsFunc) PushReturn(r0 [][32]byte, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryContractsFunc) SetDefaultHook

func (f *IAliceNetFactoryContractsFunc) SetDefaultHook(hook func(*bind.CallOpts) ([][32]byte, error))

SetDefaultHook sets function that is called when the Contracts method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryContractsFunc) SetDefaultReturn

func (f *IAliceNetFactoryContractsFunc) SetDefaultReturn(r0 [][32]byte, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryContractsFuncCall

type IAliceNetFactoryContractsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 [][32]byte
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryContractsFuncCall is an object that describes an invocation of method Contracts on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryContractsFuncCall) Args

func (c IAliceNetFactoryContractsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryContractsFuncCall) Results

func (c IAliceNetFactoryContractsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryDeployCreate2Func

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

IAliceNetFactoryDeployCreate2Func describes the behavior when the DeployCreate2 method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryDeployCreate2Func) History

History returns a sequence of IAliceNetFactoryDeployCreate2FuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryDeployCreate2Func) PushHook

func (f *IAliceNetFactoryDeployCreate2Func) PushHook(hook func(*bind.TransactOpts, *big.Int, [32]byte, []byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the DeployCreate2 method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryDeployCreate2Func) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryDeployCreate2Func) SetDefaultHook

func (f *IAliceNetFactoryDeployCreate2Func) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, [32]byte, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DeployCreate2 method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryDeployCreate2Func) SetDefaultReturn

func (f *IAliceNetFactoryDeployCreate2Func) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryDeployCreate2FuncCall

type IAliceNetFactoryDeployCreate2FuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 [32]byte
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryDeployCreate2FuncCall is an object that describes an invocation of method DeployCreate2 on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryDeployCreate2FuncCall) Args

func (c IAliceNetFactoryDeployCreate2FuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryDeployCreate2FuncCall) Results

func (c IAliceNetFactoryDeployCreate2FuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryDeployCreateAndRegisterFunc added in v0.0.8

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

IAliceNetFactoryDeployCreateAndRegisterFunc describes the behavior when the DeployCreateAndRegister method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryDeployCreateAndRegisterFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryDeployCreateAndRegisterFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryDeployCreateAndRegisterFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the DeployCreateAndRegister method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryDeployCreateAndRegisterFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryDeployCreateAndRegisterFunc) SetDefaultHook added in v0.0.8

func (f *IAliceNetFactoryDeployCreateAndRegisterFunc) SetDefaultHook(hook func(*bind.TransactOpts, []byte, [32]byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DeployCreateAndRegister method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryDeployCreateAndRegisterFunc) SetDefaultReturn added in v0.0.8

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryDeployCreateAndRegisterFuncCall added in v0.0.8

type IAliceNetFactoryDeployCreateAndRegisterFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryDeployCreateAndRegisterFuncCall is an object that describes an invocation of method DeployCreateAndRegister on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryDeployCreateAndRegisterFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryDeployCreateAndRegisterFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryDeployCreateAndRegisterFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryDeployCreateAndRegisterFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryDeployCreateFunc

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

IAliceNetFactoryDeployCreateFunc describes the behavior when the DeployCreate method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryDeployCreateFunc) History

History returns a sequence of IAliceNetFactoryDeployCreateFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryDeployCreateFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the DeployCreate method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryDeployCreateFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryDeployCreateFunc) SetDefaultHook

func (f *IAliceNetFactoryDeployCreateFunc) SetDefaultHook(hook func(*bind.TransactOpts, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DeployCreate method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryDeployCreateFunc) SetDefaultReturn

func (f *IAliceNetFactoryDeployCreateFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryDeployCreateFuncCall

type IAliceNetFactoryDeployCreateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryDeployCreateFuncCall is an object that describes an invocation of method DeployCreate on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryDeployCreateFuncCall) Args

func (c IAliceNetFactoryDeployCreateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryDeployCreateFuncCall) Results

func (c IAliceNetFactoryDeployCreateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryDeployProxyFunc

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

IAliceNetFactoryDeployProxyFunc describes the behavior when the DeployProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryDeployProxyFunc) History

History returns a sequence of IAliceNetFactoryDeployProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryDeployProxyFunc) PushHook

func (f *IAliceNetFactoryDeployProxyFunc) PushHook(hook func(*bind.TransactOpts, [32]byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the DeployProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryDeployProxyFunc) PushReturn

func (f *IAliceNetFactoryDeployProxyFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryDeployProxyFunc) SetDefaultHook

func (f *IAliceNetFactoryDeployProxyFunc) SetDefaultHook(hook func(*bind.TransactOpts, [32]byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DeployProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryDeployProxyFunc) SetDefaultReturn

func (f *IAliceNetFactoryDeployProxyFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryDeployProxyFuncCall

type IAliceNetFactoryDeployProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryDeployProxyFuncCall is an object that describes an invocation of method DeployProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryDeployProxyFuncCall) Args

func (c IAliceNetFactoryDeployProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryDeployProxyFuncCall) Results

func (c IAliceNetFactoryDeployProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFallbackFunc

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

IAliceNetFactoryFallbackFunc describes the behavior when the Fallback method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFallbackFunc) History

History returns a sequence of IAliceNetFactoryFallbackFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFallbackFunc) PushHook

func (f *IAliceNetFactoryFallbackFunc) PushHook(hook func(*bind.TransactOpts, []byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Fallback method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFallbackFunc) PushReturn

func (f *IAliceNetFactoryFallbackFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFallbackFunc) SetDefaultHook

func (f *IAliceNetFactoryFallbackFunc) SetDefaultHook(hook func(*bind.TransactOpts, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Fallback method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFallbackFunc) SetDefaultReturn

func (f *IAliceNetFactoryFallbackFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFallbackFuncCall

type IAliceNetFactoryFallbackFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFallbackFuncCall is an object that describes an invocation of method Fallback on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFallbackFuncCall) Args

func (c IAliceNetFactoryFallbackFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFallbackFuncCall) Results

func (c IAliceNetFactoryFallbackFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFilterDeployedFunc

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

IAliceNetFactoryFilterDeployedFunc describes the behavior when the FilterDeployed method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFilterDeployedFunc) History

History returns a sequence of IAliceNetFactoryFilterDeployedFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFilterDeployedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterDeployed method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFilterDeployedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFilterDeployedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterDeployed method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFilterDeployedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFilterDeployedFuncCall

type IAliceNetFactoryFilterDeployedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFilterDeployedFuncCall is an object that describes an invocation of method FilterDeployed on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFilterDeployedFuncCall) Args

func (c IAliceNetFactoryFilterDeployedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFilterDeployedFuncCall) Results

func (c IAliceNetFactoryFilterDeployedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFilterDeployedProxyFunc

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

IAliceNetFactoryFilterDeployedProxyFunc describes the behavior when the FilterDeployedProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFilterDeployedProxyFunc) History

History returns a sequence of IAliceNetFactoryFilterDeployedProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFilterDeployedProxyFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterDeployedProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFilterDeployedProxyFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFilterDeployedProxyFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterDeployedProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFilterDeployedProxyFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFilterDeployedProxyFuncCall

type IAliceNetFactoryFilterDeployedProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedProxyIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFilterDeployedProxyFuncCall is an object that describes an invocation of method FilterDeployedProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFilterDeployedProxyFuncCall) Args

func (c IAliceNetFactoryFilterDeployedProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFilterDeployedProxyFuncCall) Results

func (c IAliceNetFactoryFilterDeployedProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFilterDeployedRawFunc

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

IAliceNetFactoryFilterDeployedRawFunc describes the behavior when the FilterDeployedRaw method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFilterDeployedRawFunc) History

History returns a sequence of IAliceNetFactoryFilterDeployedRawFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFilterDeployedRawFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterDeployedRaw method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFilterDeployedRawFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFilterDeployedRawFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterDeployedRaw method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFilterDeployedRawFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFilterDeployedRawFuncCall

type IAliceNetFactoryFilterDeployedRawFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedRawIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFilterDeployedRawFuncCall is an object that describes an invocation of method FilterDeployedRaw on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFilterDeployedRawFuncCall) Args

func (c IAliceNetFactoryFilterDeployedRawFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFilterDeployedRawFuncCall) Results

func (c IAliceNetFactoryFilterDeployedRawFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFilterDeployedStaticFunc

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

IAliceNetFactoryFilterDeployedStaticFunc describes the behavior when the FilterDeployedStatic method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFilterDeployedStaticFunc) History

History returns a sequence of IAliceNetFactoryFilterDeployedStaticFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFilterDeployedStaticFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterDeployedStatic method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFilterDeployedStaticFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFilterDeployedStaticFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterDeployedStatic method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFilterDeployedStaticFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFilterDeployedStaticFuncCall

type IAliceNetFactoryFilterDeployedStaticFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedStaticIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFilterDeployedStaticFuncCall is an object that describes an invocation of method FilterDeployedStatic on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFilterDeployedStaticFuncCall) Args

func (c IAliceNetFactoryFilterDeployedStaticFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFilterDeployedStaticFuncCall) Results

func (c IAliceNetFactoryFilterDeployedStaticFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFilterDeployedTemplateFunc

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

IAliceNetFactoryFilterDeployedTemplateFunc describes the behavior when the FilterDeployedTemplate method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFilterDeployedTemplateFunc) History

History returns a sequence of IAliceNetFactoryFilterDeployedTemplateFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFilterDeployedTemplateFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterDeployedTemplate method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFilterDeployedTemplateFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFilterDeployedTemplateFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterDeployedTemplate method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFilterDeployedTemplateFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFilterDeployedTemplateFuncCall

type IAliceNetFactoryFilterDeployedTemplateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedTemplateIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFilterDeployedTemplateFuncCall is an object that describes an invocation of method FilterDeployedTemplate on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFilterDeployedTemplateFuncCall) Args

func (c IAliceNetFactoryFilterDeployedTemplateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFilterDeployedTemplateFuncCall) Results

func (c IAliceNetFactoryFilterDeployedTemplateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryFilterUpgradedProxyFunc added in v0.0.8

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

IAliceNetFactoryFilterUpgradedProxyFunc describes the behavior when the FilterUpgradedProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryFilterUpgradedProxyFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryFilterUpgradedProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryFilterUpgradedProxyFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the FilterUpgradedProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryFilterUpgradedProxyFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryFilterUpgradedProxyFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the FilterUpgradedProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryFilterUpgradedProxyFunc) SetDefaultReturn added in v0.0.8

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryFilterUpgradedProxyFuncCall added in v0.0.8

type IAliceNetFactoryFilterUpgradedProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryUpgradedProxyIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryFilterUpgradedProxyFuncCall is an object that describes an invocation of method FilterUpgradedProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryFilterUpgradedProxyFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryFilterUpgradedProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryFilterUpgradedProxyFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryFilterUpgradedProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryGetALCAAddressFunc added in v0.0.8

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

IAliceNetFactoryGetALCAAddressFunc describes the behavior when the GetALCAAddress method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryGetALCAAddressFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryGetALCAAddressFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryGetALCAAddressFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the GetALCAAddress method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryGetALCAAddressFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryGetALCAAddressFunc) SetDefaultHook added in v0.0.8

func (f *IAliceNetFactoryGetALCAAddressFunc) SetDefaultHook(hook func(*bind.CallOpts) (common.Address, error))

SetDefaultHook sets function that is called when the GetALCAAddress method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryGetALCAAddressFunc) SetDefaultReturn added in v0.0.8

func (f *IAliceNetFactoryGetALCAAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryGetALCAAddressFuncCall added in v0.0.8

type IAliceNetFactoryGetALCAAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryGetALCAAddressFuncCall is an object that describes an invocation of method GetALCAAddress on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryGetALCAAddressFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryGetALCAAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryGetALCAAddressFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryGetALCAAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryGetALCACreationCodeHashFunc added in v0.0.8

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

IAliceNetFactoryGetALCACreationCodeHashFunc describes the behavior when the GetALCACreationCodeHash method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryGetALCACreationCodeHashFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryGetALCACreationCodeHashFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryGetALCACreationCodeHashFunc) PushHook added in v0.0.8

func (f *IAliceNetFactoryGetALCACreationCodeHashFunc) PushHook(hook func(*bind.CallOpts) ([32]byte, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetALCACreationCodeHash method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryGetALCACreationCodeHashFunc) PushReturn added in v0.0.8

func (f *IAliceNetFactoryGetALCACreationCodeHashFunc) PushReturn(r0 [32]byte, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryGetALCACreationCodeHashFunc) SetDefaultHook added in v0.0.8

func (f *IAliceNetFactoryGetALCACreationCodeHashFunc) SetDefaultHook(hook func(*bind.CallOpts) ([32]byte, error))

SetDefaultHook sets function that is called when the GetALCACreationCodeHash method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryGetALCACreationCodeHashFunc) SetDefaultReturn added in v0.0.8

func (f *IAliceNetFactoryGetALCACreationCodeHashFunc) SetDefaultReturn(r0 [32]byte, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryGetALCACreationCodeHashFuncCall added in v0.0.8

type IAliceNetFactoryGetALCACreationCodeHashFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 [32]byte
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryGetALCACreationCodeHashFuncCall is an object that describes an invocation of method GetALCACreationCodeHash on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryGetALCACreationCodeHashFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryGetALCACreationCodeHashFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryGetALCACreationCodeHashFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryGetALCACreationCodeHashFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryGetImplementationFunc

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

IAliceNetFactoryGetImplementationFunc describes the behavior when the GetImplementation method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryGetImplementationFunc) History

History returns a sequence of IAliceNetFactoryGetImplementationFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryGetImplementationFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetImplementation method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryGetImplementationFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryGetImplementationFunc) SetDefaultHook

func (f *IAliceNetFactoryGetImplementationFunc) SetDefaultHook(hook func(*bind.CallOpts) (common.Address, error))

SetDefaultHook sets function that is called when the GetImplementation method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryGetImplementationFunc) SetDefaultReturn

func (f *IAliceNetFactoryGetImplementationFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryGetImplementationFuncCall

type IAliceNetFactoryGetImplementationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryGetImplementationFuncCall is an object that describes an invocation of method GetImplementation on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryGetImplementationFuncCall) Args

func (c IAliceNetFactoryGetImplementationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryGetImplementationFuncCall) Results

func (c IAliceNetFactoryGetImplementationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryGetMetamorphicContractAddressFunc

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

IAliceNetFactoryGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryGetMetamorphicContractAddressFunc) History

History returns a sequence of IAliceNetFactoryGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryGetMetamorphicContractAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryGetMetamorphicContractAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryGetMetamorphicContractAddressFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryGetMetamorphicContractAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryGetMetamorphicContractAddressFuncCall

type IAliceNetFactoryGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryGetMetamorphicContractAddressFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryGetMetamorphicContractAddressFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryGetNumContractsFunc

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

IAliceNetFactoryGetNumContractsFunc describes the behavior when the GetNumContracts method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryGetNumContractsFunc) History

History returns a sequence of IAliceNetFactoryGetNumContractsFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryGetNumContractsFunc) PushHook

func (f *IAliceNetFactoryGetNumContractsFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetNumContracts method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryGetNumContractsFunc) PushReturn

func (f *IAliceNetFactoryGetNumContractsFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryGetNumContractsFunc) SetDefaultHook

func (f *IAliceNetFactoryGetNumContractsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetNumContracts method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryGetNumContractsFunc) SetDefaultReturn

func (f *IAliceNetFactoryGetNumContractsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryGetNumContractsFuncCall

type IAliceNetFactoryGetNumContractsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryGetNumContractsFuncCall is an object that describes an invocation of method GetNumContracts on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryGetNumContractsFuncCall) Args

func (c IAliceNetFactoryGetNumContractsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryGetNumContractsFuncCall) Results

func (c IAliceNetFactoryGetNumContractsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryGetProxyImplementationFunc added in v0.0.8

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

IAliceNetFactoryGetProxyImplementationFunc describes the behavior when the GetProxyImplementation method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryGetProxyImplementationFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryGetProxyImplementationFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryGetProxyImplementationFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the GetProxyImplementation method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryGetProxyImplementationFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryGetProxyImplementationFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the GetProxyImplementation method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryGetProxyImplementationFunc) SetDefaultReturn added in v0.0.8

func (f *IAliceNetFactoryGetProxyImplementationFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryGetProxyImplementationFuncCall added in v0.0.8

type IAliceNetFactoryGetProxyImplementationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryGetProxyImplementationFuncCall is an object that describes an invocation of method GetProxyImplementation on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryGetProxyImplementationFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryGetProxyImplementationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryGetProxyImplementationFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryGetProxyImplementationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryInitializeContractFunc

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

IAliceNetFactoryInitializeContractFunc describes the behavior when the InitializeContract method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryInitializeContractFunc) History

History returns a sequence of IAliceNetFactoryInitializeContractFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryInitializeContractFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the InitializeContract method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryInitializeContractFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryInitializeContractFunc) SetDefaultHook

SetDefaultHook sets function that is called when the InitializeContract method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryInitializeContractFunc) SetDefaultReturn

func (f *IAliceNetFactoryInitializeContractFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryInitializeContractFuncCall

type IAliceNetFactoryInitializeContractFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryInitializeContractFuncCall is an object that describes an invocation of method InitializeContract on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryInitializeContractFuncCall) Args

func (c IAliceNetFactoryInitializeContractFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryInitializeContractFuncCall) Results

func (c IAliceNetFactoryInitializeContractFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryLookupFunc

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

IAliceNetFactoryLookupFunc describes the behavior when the Lookup method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryLookupFunc) History

History returns a sequence of IAliceNetFactoryLookupFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryLookupFunc) PushHook

func (f *IAliceNetFactoryLookupFunc) PushHook(hook func(*bind.CallOpts, [32]byte) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the Lookup method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryLookupFunc) PushReturn

func (f *IAliceNetFactoryLookupFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryLookupFunc) SetDefaultHook

func (f *IAliceNetFactoryLookupFunc) SetDefaultHook(hook func(*bind.CallOpts, [32]byte) (common.Address, error))

SetDefaultHook sets function that is called when the Lookup method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryLookupFunc) SetDefaultReturn

func (f *IAliceNetFactoryLookupFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryLookupFuncCall

type IAliceNetFactoryLookupFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryLookupFuncCall is an object that describes an invocation of method Lookup on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryLookupFuncCall) Args

func (c IAliceNetFactoryLookupFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryLookupFuncCall) Results

func (c IAliceNetFactoryLookupFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryMultiCallFunc

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

IAliceNetFactoryMultiCallFunc describes the behavior when the MultiCall method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryMultiCallFunc) History

History returns a sequence of IAliceNetFactoryMultiCallFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryMultiCallFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the MultiCall method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryMultiCallFunc) PushReturn

func (f *IAliceNetFactoryMultiCallFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryMultiCallFunc) SetDefaultHook

SetDefaultHook sets function that is called when the MultiCall method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryMultiCallFunc) SetDefaultReturn

func (f *IAliceNetFactoryMultiCallFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryMultiCallFuncCall

type IAliceNetFactoryMultiCallFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []bindings.AliceNetFactoryBaseMultiCallArgs
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryMultiCallFuncCall is an object that describes an invocation of method MultiCall on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryMultiCallFuncCall) Args

func (c IAliceNetFactoryMultiCallFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryMultiCallFuncCall) Results

func (c IAliceNetFactoryMultiCallFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryOwnerFunc

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

IAliceNetFactoryOwnerFunc describes the behavior when the Owner method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryOwnerFunc) History

History returns a sequence of IAliceNetFactoryOwnerFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryOwnerFunc) PushHook

func (f *IAliceNetFactoryOwnerFunc) PushHook(hook func(*bind.CallOpts) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the Owner method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryOwnerFunc) PushReturn

func (f *IAliceNetFactoryOwnerFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryOwnerFunc) SetDefaultHook

func (f *IAliceNetFactoryOwnerFunc) SetDefaultHook(hook func(*bind.CallOpts) (common.Address, error))

SetDefaultHook sets function that is called when the Owner method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryOwnerFunc) SetDefaultReturn

func (f *IAliceNetFactoryOwnerFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryOwnerFuncCall

type IAliceNetFactoryOwnerFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryOwnerFuncCall is an object that describes an invocation of method Owner on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryOwnerFuncCall) Args

func (c IAliceNetFactoryOwnerFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryOwnerFuncCall) Results

func (c IAliceNetFactoryOwnerFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryParseDeployedFunc

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

IAliceNetFactoryParseDeployedFunc describes the behavior when the ParseDeployed method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryParseDeployedFunc) History

History returns a sequence of IAliceNetFactoryParseDeployedFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryParseDeployedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseDeployed method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryParseDeployedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryParseDeployedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseDeployed method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryParseDeployedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryParseDeployedFuncCall

type IAliceNetFactoryParseDeployedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployed
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryParseDeployedFuncCall is an object that describes an invocation of method ParseDeployed on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryParseDeployedFuncCall) Args

func (c IAliceNetFactoryParseDeployedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryParseDeployedFuncCall) Results

func (c IAliceNetFactoryParseDeployedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryParseDeployedProxyFunc

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

IAliceNetFactoryParseDeployedProxyFunc describes the behavior when the ParseDeployedProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryParseDeployedProxyFunc) History

History returns a sequence of IAliceNetFactoryParseDeployedProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryParseDeployedProxyFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseDeployedProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryParseDeployedProxyFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryParseDeployedProxyFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseDeployedProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryParseDeployedProxyFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryParseDeployedProxyFuncCall

type IAliceNetFactoryParseDeployedProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedProxy
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryParseDeployedProxyFuncCall is an object that describes an invocation of method ParseDeployedProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryParseDeployedProxyFuncCall) Args

func (c IAliceNetFactoryParseDeployedProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryParseDeployedProxyFuncCall) Results

func (c IAliceNetFactoryParseDeployedProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryParseDeployedRawFunc

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

IAliceNetFactoryParseDeployedRawFunc describes the behavior when the ParseDeployedRaw method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryParseDeployedRawFunc) History

History returns a sequence of IAliceNetFactoryParseDeployedRawFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryParseDeployedRawFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseDeployedRaw method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryParseDeployedRawFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryParseDeployedRawFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseDeployedRaw method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryParseDeployedRawFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryParseDeployedRawFuncCall

type IAliceNetFactoryParseDeployedRawFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedRaw
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryParseDeployedRawFuncCall is an object that describes an invocation of method ParseDeployedRaw on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryParseDeployedRawFuncCall) Args

func (c IAliceNetFactoryParseDeployedRawFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryParseDeployedRawFuncCall) Results

func (c IAliceNetFactoryParseDeployedRawFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryParseDeployedStaticFunc

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

IAliceNetFactoryParseDeployedStaticFunc describes the behavior when the ParseDeployedStatic method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryParseDeployedStaticFunc) History

History returns a sequence of IAliceNetFactoryParseDeployedStaticFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryParseDeployedStaticFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseDeployedStatic method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryParseDeployedStaticFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryParseDeployedStaticFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseDeployedStatic method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryParseDeployedStaticFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryParseDeployedStaticFuncCall

type IAliceNetFactoryParseDeployedStaticFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedStatic
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryParseDeployedStaticFuncCall is an object that describes an invocation of method ParseDeployedStatic on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryParseDeployedStaticFuncCall) Args

func (c IAliceNetFactoryParseDeployedStaticFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryParseDeployedStaticFuncCall) Results

func (c IAliceNetFactoryParseDeployedStaticFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryParseDeployedTemplateFunc

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

IAliceNetFactoryParseDeployedTemplateFunc describes the behavior when the ParseDeployedTemplate method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryParseDeployedTemplateFunc) History

History returns a sequence of IAliceNetFactoryParseDeployedTemplateFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryParseDeployedTemplateFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseDeployedTemplate method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryParseDeployedTemplateFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryParseDeployedTemplateFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseDeployedTemplate method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryParseDeployedTemplateFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryParseDeployedTemplateFuncCall

type IAliceNetFactoryParseDeployedTemplateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryDeployedTemplate
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryParseDeployedTemplateFuncCall is an object that describes an invocation of method ParseDeployedTemplate on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryParseDeployedTemplateFuncCall) Args

func (c IAliceNetFactoryParseDeployedTemplateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryParseDeployedTemplateFuncCall) Results

func (c IAliceNetFactoryParseDeployedTemplateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryParseUpgradedProxyFunc added in v0.0.8

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

IAliceNetFactoryParseUpgradedProxyFunc describes the behavior when the ParseUpgradedProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryParseUpgradedProxyFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryParseUpgradedProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryParseUpgradedProxyFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the ParseUpgradedProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryParseUpgradedProxyFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryParseUpgradedProxyFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the ParseUpgradedProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryParseUpgradedProxyFunc) SetDefaultReturn added in v0.0.8

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryParseUpgradedProxyFuncCall added in v0.0.8

type IAliceNetFactoryParseUpgradedProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.AliceNetFactoryUpgradedProxy
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryParseUpgradedProxyFuncCall is an object that describes an invocation of method ParseUpgradedProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryParseUpgradedProxyFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryParseUpgradedProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryParseUpgradedProxyFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryParseUpgradedProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactorySetOwnerFunc

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

IAliceNetFactorySetOwnerFunc describes the behavior when the SetOwner method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactorySetOwnerFunc) History

History returns a sequence of IAliceNetFactorySetOwnerFuncCall objects describing the invocations of this function.

func (*IAliceNetFactorySetOwnerFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetOwner method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactorySetOwnerFunc) PushReturn

func (f *IAliceNetFactorySetOwnerFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactorySetOwnerFunc) SetDefaultHook

func (f *IAliceNetFactorySetOwnerFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetOwner method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactorySetOwnerFunc) SetDefaultReturn

func (f *IAliceNetFactorySetOwnerFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactorySetOwnerFuncCall

type IAliceNetFactorySetOwnerFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactorySetOwnerFuncCall is an object that describes an invocation of method SetOwner on an instance of MockIAliceNetFactory.

func (IAliceNetFactorySetOwnerFuncCall) Args

func (c IAliceNetFactorySetOwnerFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactorySetOwnerFuncCall) Results

func (c IAliceNetFactorySetOwnerFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryUpgradeProxyFunc

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

IAliceNetFactoryUpgradeProxyFunc describes the behavior when the UpgradeProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryUpgradeProxyFunc) History

History returns a sequence of IAliceNetFactoryUpgradeProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryUpgradeProxyFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the UpgradeProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryUpgradeProxyFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryUpgradeProxyFunc) SetDefaultHook

func (f *IAliceNetFactoryUpgradeProxyFunc) SetDefaultHook(hook func(*bind.TransactOpts, [32]byte, common.Address, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the UpgradeProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryUpgradeProxyFunc) SetDefaultReturn

func (f *IAliceNetFactoryUpgradeProxyFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryUpgradeProxyFuncCall

type IAliceNetFactoryUpgradeProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryUpgradeProxyFuncCall is an object that describes an invocation of method UpgradeProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryUpgradeProxyFuncCall) Args

func (c IAliceNetFactoryUpgradeProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryUpgradeProxyFuncCall) Results

func (c IAliceNetFactoryUpgradeProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryWatchDeployedFunc

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

IAliceNetFactoryWatchDeployedFunc describes the behavior when the WatchDeployed method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryWatchDeployedFunc) History

History returns a sequence of IAliceNetFactoryWatchDeployedFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryWatchDeployedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchDeployed method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryWatchDeployedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryWatchDeployedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchDeployed method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryWatchDeployedFunc) SetDefaultReturn

func (f *IAliceNetFactoryWatchDeployedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryWatchDeployedFuncCall

type IAliceNetFactoryWatchDeployedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.AliceNetFactoryDeployed
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryWatchDeployedFuncCall is an object that describes an invocation of method WatchDeployed on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryWatchDeployedFuncCall) Args

func (c IAliceNetFactoryWatchDeployedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryWatchDeployedFuncCall) Results

func (c IAliceNetFactoryWatchDeployedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryWatchDeployedProxyFunc

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

IAliceNetFactoryWatchDeployedProxyFunc describes the behavior when the WatchDeployedProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryWatchDeployedProxyFunc) History

History returns a sequence of IAliceNetFactoryWatchDeployedProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryWatchDeployedProxyFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchDeployedProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryWatchDeployedProxyFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryWatchDeployedProxyFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchDeployedProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryWatchDeployedProxyFunc) SetDefaultReturn

func (f *IAliceNetFactoryWatchDeployedProxyFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryWatchDeployedProxyFuncCall

type IAliceNetFactoryWatchDeployedProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.AliceNetFactoryDeployedProxy
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryWatchDeployedProxyFuncCall is an object that describes an invocation of method WatchDeployedProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryWatchDeployedProxyFuncCall) Args

func (c IAliceNetFactoryWatchDeployedProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryWatchDeployedProxyFuncCall) Results

func (c IAliceNetFactoryWatchDeployedProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryWatchDeployedRawFunc

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

IAliceNetFactoryWatchDeployedRawFunc describes the behavior when the WatchDeployedRaw method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryWatchDeployedRawFunc) History

History returns a sequence of IAliceNetFactoryWatchDeployedRawFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryWatchDeployedRawFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchDeployedRaw method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryWatchDeployedRawFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryWatchDeployedRawFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchDeployedRaw method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryWatchDeployedRawFunc) SetDefaultReturn

func (f *IAliceNetFactoryWatchDeployedRawFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryWatchDeployedRawFuncCall

type IAliceNetFactoryWatchDeployedRawFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.AliceNetFactoryDeployedRaw
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryWatchDeployedRawFuncCall is an object that describes an invocation of method WatchDeployedRaw on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryWatchDeployedRawFuncCall) Args

func (c IAliceNetFactoryWatchDeployedRawFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryWatchDeployedRawFuncCall) Results

func (c IAliceNetFactoryWatchDeployedRawFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryWatchDeployedStaticFunc

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

IAliceNetFactoryWatchDeployedStaticFunc describes the behavior when the WatchDeployedStatic method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryWatchDeployedStaticFunc) History

History returns a sequence of IAliceNetFactoryWatchDeployedStaticFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryWatchDeployedStaticFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchDeployedStatic method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryWatchDeployedStaticFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryWatchDeployedStaticFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchDeployedStatic method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryWatchDeployedStaticFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryWatchDeployedStaticFuncCall

type IAliceNetFactoryWatchDeployedStaticFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.AliceNetFactoryDeployedStatic
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryWatchDeployedStaticFuncCall is an object that describes an invocation of method WatchDeployedStatic on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryWatchDeployedStaticFuncCall) Args

func (c IAliceNetFactoryWatchDeployedStaticFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryWatchDeployedStaticFuncCall) Results

func (c IAliceNetFactoryWatchDeployedStaticFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryWatchDeployedTemplateFunc

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

IAliceNetFactoryWatchDeployedTemplateFunc describes the behavior when the WatchDeployedTemplate method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryWatchDeployedTemplateFunc) History

History returns a sequence of IAliceNetFactoryWatchDeployedTemplateFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryWatchDeployedTemplateFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchDeployedTemplate method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryWatchDeployedTemplateFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryWatchDeployedTemplateFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchDeployedTemplate method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryWatchDeployedTemplateFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryWatchDeployedTemplateFuncCall

type IAliceNetFactoryWatchDeployedTemplateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.AliceNetFactoryDeployedTemplate
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryWatchDeployedTemplateFuncCall is an object that describes an invocation of method WatchDeployedTemplate on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryWatchDeployedTemplateFuncCall) Args

func (c IAliceNetFactoryWatchDeployedTemplateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryWatchDeployedTemplateFuncCall) Results

func (c IAliceNetFactoryWatchDeployedTemplateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IAliceNetFactoryWatchUpgradedProxyFunc added in v0.0.8

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

IAliceNetFactoryWatchUpgradedProxyFunc describes the behavior when the WatchUpgradedProxy method of the parent MockIAliceNetFactory instance is invoked.

func (*IAliceNetFactoryWatchUpgradedProxyFunc) History added in v0.0.8

History returns a sequence of IAliceNetFactoryWatchUpgradedProxyFuncCall objects describing the invocations of this function.

func (*IAliceNetFactoryWatchUpgradedProxyFunc) PushHook added in v0.0.8

PushHook adds a function to the end of hook queue. Each invocation of the WatchUpgradedProxy method of the parent MockIAliceNetFactory instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IAliceNetFactoryWatchUpgradedProxyFunc) PushReturn added in v0.0.8

PushReturn calls PushHook with a function that returns the given values.

func (*IAliceNetFactoryWatchUpgradedProxyFunc) SetDefaultHook added in v0.0.8

SetDefaultHook sets function that is called when the WatchUpgradedProxy method of the parent MockIAliceNetFactory instance is invoked and the hook queue is empty.

func (*IAliceNetFactoryWatchUpgradedProxyFunc) SetDefaultReturn added in v0.0.8

func (f *IAliceNetFactoryWatchUpgradedProxyFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IAliceNetFactoryWatchUpgradedProxyFuncCall added in v0.0.8

type IAliceNetFactoryWatchUpgradedProxyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.AliceNetFactoryUpgradedProxy
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IAliceNetFactoryWatchUpgradedProxyFuncCall is an object that describes an invocation of method WatchUpgradedProxy on an instance of MockIAliceNetFactory.

func (IAliceNetFactoryWatchUpgradedProxyFuncCall) Args added in v0.0.8

func (c IAliceNetFactoryWatchUpgradedProxyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IAliceNetFactoryWatchUpgradedProxyFuncCall) Results added in v0.0.8

func (c IAliceNetFactoryWatchUpgradedProxyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsChangeDynamicValuesFunc added in v0.0.5

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

IDynamicsChangeDynamicValuesFunc describes the behavior when the ChangeDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsChangeDynamicValuesFunc) History added in v0.0.5

History returns a sequence of IDynamicsChangeDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsChangeDynamicValuesFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ChangeDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsChangeDynamicValuesFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsChangeDynamicValuesFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the ChangeDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsChangeDynamicValuesFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsChangeDynamicValuesFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsChangeDynamicValuesFuncCall added in v0.0.5

type IDynamicsChangeDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 bindings.DynamicValues
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsChangeDynamicValuesFuncCall is an object that describes an invocation of method ChangeDynamicValues on an instance of MockIDynamics.

func (IDynamicsChangeDynamicValuesFuncCall) Args added in v0.0.5

func (c IDynamicsChangeDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsChangeDynamicValuesFuncCall) Results added in v0.0.5

func (c IDynamicsChangeDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsDecodeDynamicValuesFunc added in v0.0.5

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

IDynamicsDecodeDynamicValuesFunc describes the behavior when the DecodeDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsDecodeDynamicValuesFunc) History added in v0.0.5

History returns a sequence of IDynamicsDecodeDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsDecodeDynamicValuesFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the DecodeDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsDecodeDynamicValuesFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsDecodeDynamicValuesFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the DecodeDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsDecodeDynamicValuesFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsDecodeDynamicValuesFunc) SetDefaultReturn(r0 bindings.DynamicValues, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsDecodeDynamicValuesFuncCall added in v0.0.5

type IDynamicsDecodeDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.DynamicValues
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsDecodeDynamicValuesFuncCall is an object that describes an invocation of method DecodeDynamicValues on an instance of MockIDynamics.

func (IDynamicsDecodeDynamicValuesFuncCall) Args added in v0.0.5

func (c IDynamicsDecodeDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsDecodeDynamicValuesFuncCall) Results added in v0.0.5

func (c IDynamicsDecodeDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsDeployStorageFunc added in v0.0.5

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

IDynamicsDeployStorageFunc describes the behavior when the DeployStorage method of the parent MockIDynamics instance is invoked.

func (*IDynamicsDeployStorageFunc) History added in v0.0.5

History returns a sequence of IDynamicsDeployStorageFuncCall objects describing the invocations of this function.

func (*IDynamicsDeployStorageFunc) PushHook added in v0.0.5

func (f *IDynamicsDeployStorageFunc) PushHook(hook func(*bind.TransactOpts, []byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the DeployStorage method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsDeployStorageFunc) PushReturn added in v0.0.5

func (f *IDynamicsDeployStorageFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsDeployStorageFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsDeployStorageFunc) SetDefaultHook(hook func(*bind.TransactOpts, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DeployStorage method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsDeployStorageFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsDeployStorageFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsDeployStorageFuncCall added in v0.0.5

type IDynamicsDeployStorageFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsDeployStorageFuncCall is an object that describes an invocation of method DeployStorage on an instance of MockIDynamics.

func (IDynamicsDeployStorageFuncCall) Args added in v0.0.5

func (c IDynamicsDeployStorageFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsDeployStorageFuncCall) Results added in v0.0.5

func (c IDynamicsDeployStorageFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsEncodeDynamicValuesFunc added in v0.0.5

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

IDynamicsEncodeDynamicValuesFunc describes the behavior when the EncodeDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsEncodeDynamicValuesFunc) History added in v0.0.5

History returns a sequence of IDynamicsEncodeDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsEncodeDynamicValuesFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the EncodeDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsEncodeDynamicValuesFunc) PushReturn added in v0.0.5

func (f *IDynamicsEncodeDynamicValuesFunc) PushReturn(r0 []byte, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsEncodeDynamicValuesFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsEncodeDynamicValuesFunc) SetDefaultHook(hook func(*bind.CallOpts, bindings.DynamicValues) ([]byte, error))

SetDefaultHook sets function that is called when the EncodeDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsEncodeDynamicValuesFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsEncodeDynamicValuesFunc) SetDefaultReturn(r0 []byte, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsEncodeDynamicValuesFuncCall added in v0.0.5

type IDynamicsEncodeDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 bindings.DynamicValues
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []byte
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsEncodeDynamicValuesFuncCall is an object that describes an invocation of method EncodeDynamicValues on an instance of MockIDynamics.

func (IDynamicsEncodeDynamicValuesFuncCall) Args added in v0.0.5

func (c IDynamicsEncodeDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsEncodeDynamicValuesFuncCall) Results added in v0.0.5

func (c IDynamicsEncodeDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsFilterDeployedStorageContractFunc added in v0.0.5

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

IDynamicsFilterDeployedStorageContractFunc describes the behavior when the FilterDeployedStorageContract method of the parent MockIDynamics instance is invoked.

func (*IDynamicsFilterDeployedStorageContractFunc) History added in v0.0.5

History returns a sequence of IDynamicsFilterDeployedStorageContractFuncCall objects describing the invocations of this function.

func (*IDynamicsFilterDeployedStorageContractFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the FilterDeployedStorageContract method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsFilterDeployedStorageContractFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsFilterDeployedStorageContractFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the FilterDeployedStorageContract method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsFilterDeployedStorageContractFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsFilterDeployedStorageContractFuncCall added in v0.0.5

type IDynamicsFilterDeployedStorageContractFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsDeployedStorageContractIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsFilterDeployedStorageContractFuncCall is an object that describes an invocation of method FilterDeployedStorageContract on an instance of MockIDynamics.

func (IDynamicsFilterDeployedStorageContractFuncCall) Args added in v0.0.5

func (c IDynamicsFilterDeployedStorageContractFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsFilterDeployedStorageContractFuncCall) Results added in v0.0.5

func (c IDynamicsFilterDeployedStorageContractFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsFilterDynamicValueChangedFunc added in v0.0.5

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

IDynamicsFilterDynamicValueChangedFunc describes the behavior when the FilterDynamicValueChanged method of the parent MockIDynamics instance is invoked.

func (*IDynamicsFilterDynamicValueChangedFunc) History added in v0.0.5

History returns a sequence of IDynamicsFilterDynamicValueChangedFuncCall objects describing the invocations of this function.

func (*IDynamicsFilterDynamicValueChangedFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the FilterDynamicValueChanged method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsFilterDynamicValueChangedFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsFilterDynamicValueChangedFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the FilterDynamicValueChanged method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsFilterDynamicValueChangedFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsFilterDynamicValueChangedFuncCall added in v0.0.5

type IDynamicsFilterDynamicValueChangedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsDynamicValueChangedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsFilterDynamicValueChangedFuncCall is an object that describes an invocation of method FilterDynamicValueChanged on an instance of MockIDynamics.

func (IDynamicsFilterDynamicValueChangedFuncCall) Args added in v0.0.5

func (c IDynamicsFilterDynamicValueChangedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsFilterDynamicValueChangedFuncCall) Results added in v0.0.5

func (c IDynamicsFilterDynamicValueChangedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsFilterInitializedFunc added in v0.0.5

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

IDynamicsFilterInitializedFunc describes the behavior when the FilterInitialized method of the parent MockIDynamics instance is invoked.

func (*IDynamicsFilterInitializedFunc) History added in v0.0.5

History returns a sequence of IDynamicsFilterInitializedFuncCall objects describing the invocations of this function.

func (*IDynamicsFilterInitializedFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the FilterInitialized method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsFilterInitializedFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsFilterInitializedFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the FilterInitialized method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsFilterInitializedFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsFilterInitializedFuncCall added in v0.0.5

type IDynamicsFilterInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsInitializedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsFilterInitializedFuncCall is an object that describes an invocation of method FilterInitialized on an instance of MockIDynamics.

func (IDynamicsFilterInitializedFuncCall) Args added in v0.0.5

func (c IDynamicsFilterInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsFilterInitializedFuncCall) Results added in v0.0.5

func (c IDynamicsFilterInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsFilterNewAliceNetNodeVersionAvailableFunc added in v0.0.5

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

IDynamicsFilterNewAliceNetNodeVersionAvailableFunc describes the behavior when the FilterNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance is invoked.

func (*IDynamicsFilterNewAliceNetNodeVersionAvailableFunc) History added in v0.0.5

History returns a sequence of IDynamicsFilterNewAliceNetNodeVersionAvailableFuncCall objects describing the invocations of this function.

func (*IDynamicsFilterNewAliceNetNodeVersionAvailableFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the FilterNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsFilterNewAliceNetNodeVersionAvailableFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsFilterNewAliceNetNodeVersionAvailableFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the FilterNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsFilterNewAliceNetNodeVersionAvailableFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsFilterNewAliceNetNodeVersionAvailableFuncCall added in v0.0.5

type IDynamicsFilterNewAliceNetNodeVersionAvailableFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsNewAliceNetNodeVersionAvailableIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsFilterNewAliceNetNodeVersionAvailableFuncCall is an object that describes an invocation of method FilterNewAliceNetNodeVersionAvailable on an instance of MockIDynamics.

func (IDynamicsFilterNewAliceNetNodeVersionAvailableFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsFilterNewAliceNetNodeVersionAvailableFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc added in v0.0.5

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

IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc describes the behavior when the FilterNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance is invoked.

func (*IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc) History added in v0.0.5

History returns a sequence of IDynamicsFilterNewCanonicalAliceNetNodeVersionFuncCall objects describing the invocations of this function.

func (*IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the FilterNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the FilterNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsFilterNewCanonicalAliceNetNodeVersionFuncCall added in v0.0.5

type IDynamicsFilterNewCanonicalAliceNetNodeVersionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsNewCanonicalAliceNetNodeVersionIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsFilterNewCanonicalAliceNetNodeVersionFuncCall is an object that describes an invocation of method FilterNewCanonicalAliceNetNodeVersion on an instance of MockIDynamics.

func (IDynamicsFilterNewCanonicalAliceNetNodeVersionFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsFilterNewCanonicalAliceNetNodeVersionFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetAllDynamicValuesFunc added in v0.0.9

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

IDynamicsGetAllDynamicValuesFunc describes the behavior when the GetAllDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetAllDynamicValuesFunc) History added in v0.0.9

History returns a sequence of IDynamicsGetAllDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsGetAllDynamicValuesFunc) PushHook added in v0.0.9

PushHook adds a function to the end of hook queue. Each invocation of the GetAllDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetAllDynamicValuesFunc) PushReturn added in v0.0.9

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetAllDynamicValuesFunc) SetDefaultHook added in v0.0.9

func (f *IDynamicsGetAllDynamicValuesFunc) SetDefaultHook(hook func(*bind.CallOpts) ([]bindings.DynamicValues, error))

SetDefaultHook sets function that is called when the GetAllDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetAllDynamicValuesFunc) SetDefaultReturn added in v0.0.9

func (f *IDynamicsGetAllDynamicValuesFunc) SetDefaultReturn(r0 []bindings.DynamicValues, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetAllDynamicValuesFuncCall added in v0.0.9

type IDynamicsGetAllDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []bindings.DynamicValues
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetAllDynamicValuesFuncCall is an object that describes an invocation of method GetAllDynamicValues on an instance of MockIDynamics.

func (IDynamicsGetAllDynamicValuesFuncCall) Args added in v0.0.9

func (c IDynamicsGetAllDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetAllDynamicValuesFuncCall) Results added in v0.0.9

func (c IDynamicsGetAllDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetConfigurationFunc added in v0.0.5

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

IDynamicsGetConfigurationFunc describes the behavior when the GetConfiguration method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetConfigurationFunc) History added in v0.0.5

History returns a sequence of IDynamicsGetConfigurationFuncCall objects describing the invocations of this function.

func (*IDynamicsGetConfigurationFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetConfiguration method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetConfigurationFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetConfigurationFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsGetConfigurationFunc) SetDefaultHook(hook func(*bind.CallOpts) (bindings.Configuration, error))

SetDefaultHook sets function that is called when the GetConfiguration method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetConfigurationFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsGetConfigurationFunc) SetDefaultReturn(r0 bindings.Configuration, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetConfigurationFuncCall added in v0.0.5

type IDynamicsGetConfigurationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.Configuration
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetConfigurationFuncCall is an object that describes an invocation of method GetConfiguration on an instance of MockIDynamics.

func (IDynamicsGetConfigurationFuncCall) Args added in v0.0.5

func (c IDynamicsGetConfigurationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetConfigurationFuncCall) Results added in v0.0.5

func (c IDynamicsGetConfigurationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetEncodingVersionFunc added in v0.0.5

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

IDynamicsGetEncodingVersionFunc describes the behavior when the GetEncodingVersion method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetEncodingVersionFunc) History added in v0.0.5

History returns a sequence of IDynamicsGetEncodingVersionFuncCall objects describing the invocations of this function.

func (*IDynamicsGetEncodingVersionFunc) PushHook added in v0.0.5

func (f *IDynamicsGetEncodingVersionFunc) PushHook(hook func(*bind.CallOpts) (uint8, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEncodingVersion method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetEncodingVersionFunc) PushReturn added in v0.0.5

func (f *IDynamicsGetEncodingVersionFunc) PushReturn(r0 uint8, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetEncodingVersionFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsGetEncodingVersionFunc) SetDefaultHook(hook func(*bind.CallOpts) (uint8, error))

SetDefaultHook sets function that is called when the GetEncodingVersion method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetEncodingVersionFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsGetEncodingVersionFunc) SetDefaultReturn(r0 uint8, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetEncodingVersionFuncCall added in v0.0.5

type IDynamicsGetEncodingVersionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint8
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetEncodingVersionFuncCall is an object that describes an invocation of method GetEncodingVersion on an instance of MockIDynamics.

func (IDynamicsGetEncodingVersionFuncCall) Args added in v0.0.5

func (c IDynamicsGetEncodingVersionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetEncodingVersionFuncCall) Results added in v0.0.5

func (c IDynamicsGetEncodingVersionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetFurthestDynamicValuesFunc added in v0.0.9

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

IDynamicsGetFurthestDynamicValuesFunc describes the behavior when the GetFurthestDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetFurthestDynamicValuesFunc) History added in v0.0.9

History returns a sequence of IDynamicsGetFurthestDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsGetFurthestDynamicValuesFunc) PushHook added in v0.0.9

PushHook adds a function to the end of hook queue. Each invocation of the GetFurthestDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetFurthestDynamicValuesFunc) PushReturn added in v0.0.9

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetFurthestDynamicValuesFunc) SetDefaultHook added in v0.0.9

SetDefaultHook sets function that is called when the GetFurthestDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetFurthestDynamicValuesFunc) SetDefaultReturn added in v0.0.9

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetFurthestDynamicValuesFuncCall added in v0.0.9

type IDynamicsGetFurthestDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.DynamicValues
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetFurthestDynamicValuesFuncCall is an object that describes an invocation of method GetFurthestDynamicValues on an instance of MockIDynamics.

func (IDynamicsGetFurthestDynamicValuesFuncCall) Args added in v0.0.9

func (c IDynamicsGetFurthestDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetFurthestDynamicValuesFuncCall) Results added in v0.0.9

func (c IDynamicsGetFurthestDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetLatestAliceNetVersionFunc added in v0.0.5

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

IDynamicsGetLatestAliceNetVersionFunc describes the behavior when the GetLatestAliceNetVersion method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetLatestAliceNetVersionFunc) History added in v0.0.5

History returns a sequence of IDynamicsGetLatestAliceNetVersionFuncCall objects describing the invocations of this function.

func (*IDynamicsGetLatestAliceNetVersionFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestAliceNetVersion method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetLatestAliceNetVersionFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetLatestAliceNetVersionFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the GetLatestAliceNetVersion method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetLatestAliceNetVersionFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetLatestAliceNetVersionFuncCall added in v0.0.5

type IDynamicsGetLatestAliceNetVersionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.CanonicalVersion
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetLatestAliceNetVersionFuncCall is an object that describes an invocation of method GetLatestAliceNetVersion on an instance of MockIDynamics.

func (IDynamicsGetLatestAliceNetVersionFuncCall) Args added in v0.0.5

func (c IDynamicsGetLatestAliceNetVersionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetLatestAliceNetVersionFuncCall) Results added in v0.0.5

func (c IDynamicsGetLatestAliceNetVersionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetLatestDynamicValuesFunc added in v0.0.5

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

IDynamicsGetLatestDynamicValuesFunc describes the behavior when the GetLatestDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetLatestDynamicValuesFunc) History added in v0.0.5

History returns a sequence of IDynamicsGetLatestDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsGetLatestDynamicValuesFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetLatestDynamicValuesFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetLatestDynamicValuesFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the GetLatestDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetLatestDynamicValuesFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetLatestDynamicValuesFuncCall added in v0.0.5

type IDynamicsGetLatestDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.DynamicValues
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetLatestDynamicValuesFuncCall is an object that describes an invocation of method GetLatestDynamicValues on an instance of MockIDynamics.

func (IDynamicsGetLatestDynamicValuesFuncCall) Args added in v0.0.5

func (c IDynamicsGetLatestDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetLatestDynamicValuesFuncCall) Results added in v0.0.5

func (c IDynamicsGetLatestDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetMetamorphicContractAddressFunc added in v0.0.5

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

IDynamicsGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetMetamorphicContractAddressFunc) History added in v0.0.5

History returns a sequence of IDynamicsGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IDynamicsGetMetamorphicContractAddressFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetMetamorphicContractAddressFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetMetamorphicContractAddressFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetMetamorphicContractAddressFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsGetMetamorphicContractAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetMetamorphicContractAddressFuncCall added in v0.0.5

type IDynamicsGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIDynamics.

func (IDynamicsGetMetamorphicContractAddressFuncCall) Args added in v0.0.5

func (c IDynamicsGetMetamorphicContractAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetMetamorphicContractAddressFuncCall) Results added in v0.0.5

func (c IDynamicsGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsGetPreviousDynamicValuesFunc added in v0.0.5

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

IDynamicsGetPreviousDynamicValuesFunc describes the behavior when the GetPreviousDynamicValues method of the parent MockIDynamics instance is invoked.

func (*IDynamicsGetPreviousDynamicValuesFunc) History added in v0.0.5

History returns a sequence of IDynamicsGetPreviousDynamicValuesFuncCall objects describing the invocations of this function.

func (*IDynamicsGetPreviousDynamicValuesFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetPreviousDynamicValues method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsGetPreviousDynamicValuesFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsGetPreviousDynamicValuesFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the GetPreviousDynamicValues method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsGetPreviousDynamicValuesFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsGetPreviousDynamicValuesFuncCall added in v0.0.5

type IDynamicsGetPreviousDynamicValuesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.DynamicValues
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsGetPreviousDynamicValuesFuncCall is an object that describes an invocation of method GetPreviousDynamicValues on an instance of MockIDynamics.

func (IDynamicsGetPreviousDynamicValuesFuncCall) Args added in v0.0.5

func (c IDynamicsGetPreviousDynamicValuesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsGetPreviousDynamicValuesFuncCall) Results added in v0.0.5

func (c IDynamicsGetPreviousDynamicValuesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsInitializeFunc added in v0.0.5

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

IDynamicsInitializeFunc describes the behavior when the Initialize method of the parent MockIDynamics instance is invoked.

func (*IDynamicsInitializeFunc) History added in v0.0.5

History returns a sequence of IDynamicsInitializeFuncCall objects describing the invocations of this function.

func (*IDynamicsInitializeFunc) PushHook added in v0.0.5

func (f *IDynamicsInitializeFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Initialize method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsInitializeFunc) PushReturn added in v0.0.5

func (f *IDynamicsInitializeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsInitializeFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsInitializeFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Initialize method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsInitializeFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsInitializeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsInitializeFuncCall added in v0.0.5

type IDynamicsInitializeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsInitializeFuncCall is an object that describes an invocation of method Initialize on an instance of MockIDynamics.

func (IDynamicsInitializeFuncCall) Args added in v0.0.5

func (c IDynamicsInitializeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsInitializeFuncCall) Results added in v0.0.5

func (c IDynamicsInitializeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsParseDeployedStorageContractFunc added in v0.0.5

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

IDynamicsParseDeployedStorageContractFunc describes the behavior when the ParseDeployedStorageContract method of the parent MockIDynamics instance is invoked.

func (*IDynamicsParseDeployedStorageContractFunc) History added in v0.0.5

History returns a sequence of IDynamicsParseDeployedStorageContractFuncCall objects describing the invocations of this function.

func (*IDynamicsParseDeployedStorageContractFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ParseDeployedStorageContract method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsParseDeployedStorageContractFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsParseDeployedStorageContractFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the ParseDeployedStorageContract method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsParseDeployedStorageContractFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsParseDeployedStorageContractFuncCall added in v0.0.5

type IDynamicsParseDeployedStorageContractFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsDeployedStorageContract
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsParseDeployedStorageContractFuncCall is an object that describes an invocation of method ParseDeployedStorageContract on an instance of MockIDynamics.

func (IDynamicsParseDeployedStorageContractFuncCall) Args added in v0.0.5

func (c IDynamicsParseDeployedStorageContractFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsParseDeployedStorageContractFuncCall) Results added in v0.0.5

func (c IDynamicsParseDeployedStorageContractFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsParseDynamicValueChangedFunc added in v0.0.5

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

IDynamicsParseDynamicValueChangedFunc describes the behavior when the ParseDynamicValueChanged method of the parent MockIDynamics instance is invoked.

func (*IDynamicsParseDynamicValueChangedFunc) History added in v0.0.5

History returns a sequence of IDynamicsParseDynamicValueChangedFuncCall objects describing the invocations of this function.

func (*IDynamicsParseDynamicValueChangedFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ParseDynamicValueChanged method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsParseDynamicValueChangedFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsParseDynamicValueChangedFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the ParseDynamicValueChanged method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsParseDynamicValueChangedFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsParseDynamicValueChangedFuncCall added in v0.0.5

type IDynamicsParseDynamicValueChangedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsDynamicValueChanged
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsParseDynamicValueChangedFuncCall is an object that describes an invocation of method ParseDynamicValueChanged on an instance of MockIDynamics.

func (IDynamicsParseDynamicValueChangedFuncCall) Args added in v0.0.5

func (c IDynamicsParseDynamicValueChangedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsParseDynamicValueChangedFuncCall) Results added in v0.0.5

func (c IDynamicsParseDynamicValueChangedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsParseInitializedFunc added in v0.0.5

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

IDynamicsParseInitializedFunc describes the behavior when the ParseInitialized method of the parent MockIDynamics instance is invoked.

func (*IDynamicsParseInitializedFunc) History added in v0.0.5

History returns a sequence of IDynamicsParseInitializedFuncCall objects describing the invocations of this function.

func (*IDynamicsParseInitializedFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ParseInitialized method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsParseInitializedFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsParseInitializedFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsParseInitializedFunc) SetDefaultHook(hook func(types.Log) (*bindings.DynamicsInitialized, error))

SetDefaultHook sets function that is called when the ParseInitialized method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsParseInitializedFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsParseInitializedFunc) SetDefaultReturn(r0 *bindings.DynamicsInitialized, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsParseInitializedFuncCall added in v0.0.5

type IDynamicsParseInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsInitialized
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsParseInitializedFuncCall is an object that describes an invocation of method ParseInitialized on an instance of MockIDynamics.

func (IDynamicsParseInitializedFuncCall) Args added in v0.0.5

func (c IDynamicsParseInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsParseInitializedFuncCall) Results added in v0.0.5

func (c IDynamicsParseInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsParseNewAliceNetNodeVersionAvailableFunc added in v0.0.5

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

IDynamicsParseNewAliceNetNodeVersionAvailableFunc describes the behavior when the ParseNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance is invoked.

func (*IDynamicsParseNewAliceNetNodeVersionAvailableFunc) History added in v0.0.5

History returns a sequence of IDynamicsParseNewAliceNetNodeVersionAvailableFuncCall objects describing the invocations of this function.

func (*IDynamicsParseNewAliceNetNodeVersionAvailableFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ParseNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsParseNewAliceNetNodeVersionAvailableFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsParseNewAliceNetNodeVersionAvailableFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the ParseNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsParseNewAliceNetNodeVersionAvailableFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsParseNewAliceNetNodeVersionAvailableFuncCall added in v0.0.5

type IDynamicsParseNewAliceNetNodeVersionAvailableFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsNewAliceNetNodeVersionAvailable
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsParseNewAliceNetNodeVersionAvailableFuncCall is an object that describes an invocation of method ParseNewAliceNetNodeVersionAvailable on an instance of MockIDynamics.

func (IDynamicsParseNewAliceNetNodeVersionAvailableFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsParseNewAliceNetNodeVersionAvailableFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type IDynamicsParseNewCanonicalAliceNetNodeVersionFunc added in v0.0.5

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

IDynamicsParseNewCanonicalAliceNetNodeVersionFunc describes the behavior when the ParseNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance is invoked.

func (*IDynamicsParseNewCanonicalAliceNetNodeVersionFunc) History added in v0.0.5

History returns a sequence of IDynamicsParseNewCanonicalAliceNetNodeVersionFuncCall objects describing the invocations of this function.

func (*IDynamicsParseNewCanonicalAliceNetNodeVersionFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ParseNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsParseNewCanonicalAliceNetNodeVersionFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsParseNewCanonicalAliceNetNodeVersionFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the ParseNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsParseNewCanonicalAliceNetNodeVersionFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsParseNewCanonicalAliceNetNodeVersionFuncCall added in v0.0.5

type IDynamicsParseNewCanonicalAliceNetNodeVersionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.DynamicsNewCanonicalAliceNetNodeVersion
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsParseNewCanonicalAliceNetNodeVersionFuncCall is an object that describes an invocation of method ParseNewCanonicalAliceNetNodeVersion on an instance of MockIDynamics.

func (IDynamicsParseNewCanonicalAliceNetNodeVersionFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsParseNewCanonicalAliceNetNodeVersionFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type IDynamicsSetConfigurationFunc added in v0.0.5

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

IDynamicsSetConfigurationFunc describes the behavior when the SetConfiguration method of the parent MockIDynamics instance is invoked.

func (*IDynamicsSetConfigurationFunc) History added in v0.0.5

History returns a sequence of IDynamicsSetConfigurationFuncCall objects describing the invocations of this function.

func (*IDynamicsSetConfigurationFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the SetConfiguration method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsSetConfigurationFunc) PushReturn added in v0.0.5

func (f *IDynamicsSetConfigurationFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsSetConfigurationFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the SetConfiguration method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsSetConfigurationFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsSetConfigurationFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsSetConfigurationFuncCall added in v0.0.5

type IDynamicsSetConfigurationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 bindings.Configuration
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsSetConfigurationFuncCall is an object that describes an invocation of method SetConfiguration on an instance of MockIDynamics.

func (IDynamicsSetConfigurationFuncCall) Args added in v0.0.5

func (c IDynamicsSetConfigurationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsSetConfigurationFuncCall) Results added in v0.0.5

func (c IDynamicsSetConfigurationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsUpdateAliceNetNodeVersionFunc added in v0.0.5

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

IDynamicsUpdateAliceNetNodeVersionFunc describes the behavior when the UpdateAliceNetNodeVersion method of the parent MockIDynamics instance is invoked.

func (*IDynamicsUpdateAliceNetNodeVersionFunc) History added in v0.0.5

History returns a sequence of IDynamicsUpdateAliceNetNodeVersionFuncCall objects describing the invocations of this function.

func (*IDynamicsUpdateAliceNetNodeVersionFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the UpdateAliceNetNodeVersion method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsUpdateAliceNetNodeVersionFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsUpdateAliceNetNodeVersionFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the UpdateAliceNetNodeVersion method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsUpdateAliceNetNodeVersionFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsUpdateAliceNetNodeVersionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsUpdateAliceNetNodeVersionFuncCall added in v0.0.5

type IDynamicsUpdateAliceNetNodeVersionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 uint32
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 uint32
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 uint32
	// Arg5 is the value of the 6th argument passed to this method
	// invocation.
	Arg5 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsUpdateAliceNetNodeVersionFuncCall is an object that describes an invocation of method UpdateAliceNetNodeVersion on an instance of MockIDynamics.

func (IDynamicsUpdateAliceNetNodeVersionFuncCall) Args added in v0.0.5

func (c IDynamicsUpdateAliceNetNodeVersionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsUpdateAliceNetNodeVersionFuncCall) Results added in v0.0.5

func (c IDynamicsUpdateAliceNetNodeVersionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsUpdateHeadFunc added in v0.0.5

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

IDynamicsUpdateHeadFunc describes the behavior when the UpdateHead method of the parent MockIDynamics instance is invoked.

func (*IDynamicsUpdateHeadFunc) History added in v0.0.5

History returns a sequence of IDynamicsUpdateHeadFuncCall objects describing the invocations of this function.

func (*IDynamicsUpdateHeadFunc) PushHook added in v0.0.5

func (f *IDynamicsUpdateHeadFunc) PushHook(hook func(*bind.TransactOpts, uint32) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the UpdateHead method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsUpdateHeadFunc) PushReturn added in v0.0.5

func (f *IDynamicsUpdateHeadFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsUpdateHeadFunc) SetDefaultHook added in v0.0.5

func (f *IDynamicsUpdateHeadFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint32) (*types.Transaction, error))

SetDefaultHook sets function that is called when the UpdateHead method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsUpdateHeadFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsUpdateHeadFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsUpdateHeadFuncCall added in v0.0.5

type IDynamicsUpdateHeadFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsUpdateHeadFuncCall is an object that describes an invocation of method UpdateHead on an instance of MockIDynamics.

func (IDynamicsUpdateHeadFuncCall) Args added in v0.0.5

func (c IDynamicsUpdateHeadFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsUpdateHeadFuncCall) Results added in v0.0.5

func (c IDynamicsUpdateHeadFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsWatchDeployedStorageContractFunc added in v0.0.5

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

IDynamicsWatchDeployedStorageContractFunc describes the behavior when the WatchDeployedStorageContract method of the parent MockIDynamics instance is invoked.

func (*IDynamicsWatchDeployedStorageContractFunc) History added in v0.0.5

History returns a sequence of IDynamicsWatchDeployedStorageContractFuncCall objects describing the invocations of this function.

func (*IDynamicsWatchDeployedStorageContractFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the WatchDeployedStorageContract method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsWatchDeployedStorageContractFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsWatchDeployedStorageContractFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the WatchDeployedStorageContract method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsWatchDeployedStorageContractFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsWatchDeployedStorageContractFuncCall added in v0.0.5

type IDynamicsWatchDeployedStorageContractFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.DynamicsDeployedStorageContract
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsWatchDeployedStorageContractFuncCall is an object that describes an invocation of method WatchDeployedStorageContract on an instance of MockIDynamics.

func (IDynamicsWatchDeployedStorageContractFuncCall) Args added in v0.0.5

func (c IDynamicsWatchDeployedStorageContractFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsWatchDeployedStorageContractFuncCall) Results added in v0.0.5

func (c IDynamicsWatchDeployedStorageContractFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsWatchDynamicValueChangedFunc added in v0.0.5

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

IDynamicsWatchDynamicValueChangedFunc describes the behavior when the WatchDynamicValueChanged method of the parent MockIDynamics instance is invoked.

func (*IDynamicsWatchDynamicValueChangedFunc) History added in v0.0.5

History returns a sequence of IDynamicsWatchDynamicValueChangedFuncCall objects describing the invocations of this function.

func (*IDynamicsWatchDynamicValueChangedFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the WatchDynamicValueChanged method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsWatchDynamicValueChangedFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsWatchDynamicValueChangedFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the WatchDynamicValueChanged method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsWatchDynamicValueChangedFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsWatchDynamicValueChangedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsWatchDynamicValueChangedFuncCall added in v0.0.5

type IDynamicsWatchDynamicValueChangedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.DynamicsDynamicValueChanged
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsWatchDynamicValueChangedFuncCall is an object that describes an invocation of method WatchDynamicValueChanged on an instance of MockIDynamics.

func (IDynamicsWatchDynamicValueChangedFuncCall) Args added in v0.0.5

func (c IDynamicsWatchDynamicValueChangedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsWatchDynamicValueChangedFuncCall) Results added in v0.0.5

func (c IDynamicsWatchDynamicValueChangedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsWatchInitializedFunc added in v0.0.5

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

IDynamicsWatchInitializedFunc describes the behavior when the WatchInitialized method of the parent MockIDynamics instance is invoked.

func (*IDynamicsWatchInitializedFunc) History added in v0.0.5

History returns a sequence of IDynamicsWatchInitializedFuncCall objects describing the invocations of this function.

func (*IDynamicsWatchInitializedFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the WatchInitialized method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsWatchInitializedFunc) PushReturn added in v0.0.5

func (f *IDynamicsWatchInitializedFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsWatchInitializedFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the WatchInitialized method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsWatchInitializedFunc) SetDefaultReturn added in v0.0.5

func (f *IDynamicsWatchInitializedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsWatchInitializedFuncCall added in v0.0.5

type IDynamicsWatchInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.DynamicsInitialized
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsWatchInitializedFuncCall is an object that describes an invocation of method WatchInitialized on an instance of MockIDynamics.

func (IDynamicsWatchInitializedFuncCall) Args added in v0.0.5

func (c IDynamicsWatchInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsWatchInitializedFuncCall) Results added in v0.0.5

func (c IDynamicsWatchInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IDynamicsWatchNewAliceNetNodeVersionAvailableFunc added in v0.0.5

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

IDynamicsWatchNewAliceNetNodeVersionAvailableFunc describes the behavior when the WatchNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance is invoked.

func (*IDynamicsWatchNewAliceNetNodeVersionAvailableFunc) History added in v0.0.5

History returns a sequence of IDynamicsWatchNewAliceNetNodeVersionAvailableFuncCall objects describing the invocations of this function.

func (*IDynamicsWatchNewAliceNetNodeVersionAvailableFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the WatchNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsWatchNewAliceNetNodeVersionAvailableFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsWatchNewAliceNetNodeVersionAvailableFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the WatchNewAliceNetNodeVersionAvailable method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsWatchNewAliceNetNodeVersionAvailableFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsWatchNewAliceNetNodeVersionAvailableFuncCall added in v0.0.5

type IDynamicsWatchNewAliceNetNodeVersionAvailableFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.DynamicsNewAliceNetNodeVersionAvailable
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsWatchNewAliceNetNodeVersionAvailableFuncCall is an object that describes an invocation of method WatchNewAliceNetNodeVersionAvailable on an instance of MockIDynamics.

func (IDynamicsWatchNewAliceNetNodeVersionAvailableFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsWatchNewAliceNetNodeVersionAvailableFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc added in v0.0.5

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

IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc describes the behavior when the WatchNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance is invoked.

func (*IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc) History added in v0.0.5

History returns a sequence of IDynamicsWatchNewCanonicalAliceNetNodeVersionFuncCall objects describing the invocations of this function.

func (*IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the WatchNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the WatchNewCanonicalAliceNetNodeVersion method of the parent MockIDynamics instance is invoked and the hook queue is empty.

func (*IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IDynamicsWatchNewCanonicalAliceNetNodeVersionFuncCall added in v0.0.5

type IDynamicsWatchNewCanonicalAliceNetNodeVersionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.DynamicsNewCanonicalAliceNetNodeVersion
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IDynamicsWatchNewCanonicalAliceNetNodeVersionFuncCall is an object that describes an invocation of method WatchNewCanonicalAliceNetNodeVersion on an instance of MockIDynamics.

func (IDynamicsWatchNewCanonicalAliceNetNodeVersionFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IDynamicsWatchNewCanonicalAliceNetNodeVersionFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type IETHDKGAccuseParticipantDidNotDistributeSharesFunc

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

IETHDKGAccuseParticipantDidNotDistributeSharesFunc describes the behavior when the AccuseParticipantDidNotDistributeShares method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGAccuseParticipantDidNotDistributeSharesFunc) History

History returns a sequence of IETHDKGAccuseParticipantDidNotDistributeSharesFuncCall objects describing the invocations of this function.

func (*IETHDKGAccuseParticipantDidNotDistributeSharesFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the AccuseParticipantDidNotDistributeShares method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGAccuseParticipantDidNotDistributeSharesFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGAccuseParticipantDidNotDistributeSharesFunc) SetDefaultHook

SetDefaultHook sets function that is called when the AccuseParticipantDidNotDistributeShares method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGAccuseParticipantDidNotDistributeSharesFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGAccuseParticipantDidNotDistributeSharesFuncCall

type IETHDKGAccuseParticipantDidNotDistributeSharesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGAccuseParticipantDidNotDistributeSharesFuncCall is an object that describes an invocation of method AccuseParticipantDidNotDistributeShares on an instance of MockIETHDKG.

func (IETHDKGAccuseParticipantDidNotDistributeSharesFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGAccuseParticipantDidNotDistributeSharesFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type IETHDKGAccuseParticipantDidNotSubmitGPKJFunc

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

IETHDKGAccuseParticipantDidNotSubmitGPKJFunc describes the behavior when the AccuseParticipantDidNotSubmitGPKJ method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGAccuseParticipantDidNotSubmitGPKJFunc) History

History returns a sequence of IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall objects describing the invocations of this function.

func (*IETHDKGAccuseParticipantDidNotSubmitGPKJFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the AccuseParticipantDidNotSubmitGPKJ method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGAccuseParticipantDidNotSubmitGPKJFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGAccuseParticipantDidNotSubmitGPKJFunc) SetDefaultHook

SetDefaultHook sets function that is called when the AccuseParticipantDidNotSubmitGPKJ method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGAccuseParticipantDidNotSubmitGPKJFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall

type IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall is an object that describes an invocation of method AccuseParticipantDidNotSubmitGPKJ on an instance of MockIETHDKG.

func (IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall) Args

func (c IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall) Results

func (c IETHDKGAccuseParticipantDidNotSubmitGPKJFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc

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

IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc describes the behavior when the AccuseParticipantDidNotSubmitKeyShares method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc) History

History returns a sequence of IETHDKGAccuseParticipantDidNotSubmitKeySharesFuncCall objects describing the invocations of this function.

func (*IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the AccuseParticipantDidNotSubmitKeyShares method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc) SetDefaultHook

SetDefaultHook sets function that is called when the AccuseParticipantDidNotSubmitKeyShares method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGAccuseParticipantDidNotSubmitKeySharesFuncCall

type IETHDKGAccuseParticipantDidNotSubmitKeySharesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGAccuseParticipantDidNotSubmitKeySharesFuncCall is an object that describes an invocation of method AccuseParticipantDidNotSubmitKeyShares on an instance of MockIETHDKG.

func (IETHDKGAccuseParticipantDidNotSubmitKeySharesFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGAccuseParticipantDidNotSubmitKeySharesFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type IETHDKGAccuseParticipantDistributedBadSharesFunc

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

IETHDKGAccuseParticipantDistributedBadSharesFunc describes the behavior when the AccuseParticipantDistributedBadShares method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGAccuseParticipantDistributedBadSharesFunc) History

History returns a sequence of IETHDKGAccuseParticipantDistributedBadSharesFuncCall objects describing the invocations of this function.

func (*IETHDKGAccuseParticipantDistributedBadSharesFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the AccuseParticipantDistributedBadShares method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGAccuseParticipantDistributedBadSharesFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGAccuseParticipantDistributedBadSharesFunc) SetDefaultHook

SetDefaultHook sets function that is called when the AccuseParticipantDistributedBadShares method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGAccuseParticipantDistributedBadSharesFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGAccuseParticipantDistributedBadSharesFuncCall

type IETHDKGAccuseParticipantDistributedBadSharesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [][2]*big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 [2]*big.Int
	// Arg5 is the value of the 6th argument passed to this method
	// invocation.
	Arg5 [2]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGAccuseParticipantDistributedBadSharesFuncCall is an object that describes an invocation of method AccuseParticipantDistributedBadShares on an instance of MockIETHDKG.

func (IETHDKGAccuseParticipantDistributedBadSharesFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGAccuseParticipantDistributedBadSharesFuncCall) Results

func (c IETHDKGAccuseParticipantDistributedBadSharesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGAccuseParticipantNotRegisteredFunc

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

IETHDKGAccuseParticipantNotRegisteredFunc describes the behavior when the AccuseParticipantNotRegistered method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGAccuseParticipantNotRegisteredFunc) History

History returns a sequence of IETHDKGAccuseParticipantNotRegisteredFuncCall objects describing the invocations of this function.

func (*IETHDKGAccuseParticipantNotRegisteredFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the AccuseParticipantNotRegistered method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGAccuseParticipantNotRegisteredFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGAccuseParticipantNotRegisteredFunc) SetDefaultHook

SetDefaultHook sets function that is called when the AccuseParticipantNotRegistered method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGAccuseParticipantNotRegisteredFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGAccuseParticipantNotRegisteredFuncCall

type IETHDKGAccuseParticipantNotRegisteredFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGAccuseParticipantNotRegisteredFuncCall is an object that describes an invocation of method AccuseParticipantNotRegistered on an instance of MockIETHDKG.

func (IETHDKGAccuseParticipantNotRegisteredFuncCall) Args

func (c IETHDKGAccuseParticipantNotRegisteredFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGAccuseParticipantNotRegisteredFuncCall) Results

func (c IETHDKGAccuseParticipantNotRegisteredFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGAccuseParticipantSubmittedBadGPKJFunc

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

IETHDKGAccuseParticipantSubmittedBadGPKJFunc describes the behavior when the AccuseParticipantSubmittedBadGPKJ method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGAccuseParticipantSubmittedBadGPKJFunc) History

History returns a sequence of IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall objects describing the invocations of this function.

func (*IETHDKGAccuseParticipantSubmittedBadGPKJFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the AccuseParticipantSubmittedBadGPKJ method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGAccuseParticipantSubmittedBadGPKJFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGAccuseParticipantSubmittedBadGPKJFunc) SetDefaultHook

SetDefaultHook sets function that is called when the AccuseParticipantSubmittedBadGPKJ method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGAccuseParticipantSubmittedBadGPKJFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall

type IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 [][32]byte
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [][][2]*big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall is an object that describes an invocation of method AccuseParticipantSubmittedBadGPKJ on an instance of MockIETHDKG.

func (IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall) Args

func (c IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall) Results

func (c IETHDKGAccuseParticipantSubmittedBadGPKJFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGCompleteFunc

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

IETHDKGCompleteFunc describes the behavior when the Complete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGCompleteFunc) History

History returns a sequence of IETHDKGCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGCompleteFunc) PushHook

func (f *IETHDKGCompleteFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Complete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGCompleteFunc) PushReturn

func (f *IETHDKGCompleteFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGCompleteFunc) SetDefaultHook

func (f *IETHDKGCompleteFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Complete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGCompleteFunc) SetDefaultReturn

func (f *IETHDKGCompleteFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGCompleteFuncCall

type IETHDKGCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGCompleteFuncCall is an object that describes an invocation of method Complete on an instance of MockIETHDKG.

func (IETHDKGCompleteFuncCall) Args

func (c IETHDKGCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGCompleteFuncCall) Results

func (c IETHDKGCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGDistributeSharesFunc

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

IETHDKGDistributeSharesFunc describes the behavior when the DistributeShares method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGDistributeSharesFunc) History

History returns a sequence of IETHDKGDistributeSharesFuncCall objects describing the invocations of this function.

func (*IETHDKGDistributeSharesFunc) PushHook

func (f *IETHDKGDistributeSharesFunc) PushHook(hook func(*bind.TransactOpts, []*big.Int, [][2]*big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the DistributeShares method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGDistributeSharesFunc) PushReturn

func (f *IETHDKGDistributeSharesFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGDistributeSharesFunc) SetDefaultHook

func (f *IETHDKGDistributeSharesFunc) SetDefaultHook(hook func(*bind.TransactOpts, []*big.Int, [][2]*big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DistributeShares method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGDistributeSharesFunc) SetDefaultReturn

func (f *IETHDKGDistributeSharesFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGDistributeSharesFuncCall

type IETHDKGDistributeSharesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []*big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 [][2]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGDistributeSharesFuncCall is an object that describes an invocation of method DistributeShares on an instance of MockIETHDKG.

func (IETHDKGDistributeSharesFuncCall) Args

func (c IETHDKGDistributeSharesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGDistributeSharesFuncCall) Results

func (c IETHDKGDistributeSharesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterAddressRegisteredFunc

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

IETHDKGFilterAddressRegisteredFunc describes the behavior when the FilterAddressRegistered method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterAddressRegisteredFunc) History

History returns a sequence of IETHDKGFilterAddressRegisteredFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterAddressRegisteredFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterAddressRegistered method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterAddressRegisteredFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterAddressRegisteredFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterAddressRegistered method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterAddressRegisteredFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterAddressRegisteredFuncCall

type IETHDKGFilterAddressRegisteredFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGAddressRegisteredIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterAddressRegisteredFuncCall is an object that describes an invocation of method FilterAddressRegistered on an instance of MockIETHDKG.

func (IETHDKGFilterAddressRegisteredFuncCall) Args

func (c IETHDKGFilterAddressRegisteredFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterAddressRegisteredFuncCall) Results

func (c IETHDKGFilterAddressRegisteredFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterGPKJSubmissionCompleteFunc

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

IETHDKGFilterGPKJSubmissionCompleteFunc describes the behavior when the FilterGPKJSubmissionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterGPKJSubmissionCompleteFunc) History

History returns a sequence of IETHDKGFilterGPKJSubmissionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterGPKJSubmissionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterGPKJSubmissionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterGPKJSubmissionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterGPKJSubmissionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterGPKJSubmissionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterGPKJSubmissionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterGPKJSubmissionCompleteFuncCall

type IETHDKGFilterGPKJSubmissionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGGPKJSubmissionCompleteIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterGPKJSubmissionCompleteFuncCall is an object that describes an invocation of method FilterGPKJSubmissionComplete on an instance of MockIETHDKG.

func (IETHDKGFilterGPKJSubmissionCompleteFuncCall) Args

func (c IETHDKGFilterGPKJSubmissionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterGPKJSubmissionCompleteFuncCall) Results

func (c IETHDKGFilterGPKJSubmissionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterInitializedFunc added in v0.0.2

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

IETHDKGFilterInitializedFunc describes the behavior when the FilterInitialized method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterInitializedFunc) History added in v0.0.2

History returns a sequence of IETHDKGFilterInitializedFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the FilterInitialized method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the FilterInitialized method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterInitializedFuncCall added in v0.0.2

type IETHDKGFilterInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGInitializedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterInitializedFuncCall is an object that describes an invocation of method FilterInitialized on an instance of MockIETHDKG.

func (IETHDKGFilterInitializedFuncCall) Args added in v0.0.2

func (c IETHDKGFilterInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterInitializedFuncCall) Results added in v0.0.2

func (c IETHDKGFilterInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterKeyShareSubmissionCompleteFunc

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

IETHDKGFilterKeyShareSubmissionCompleteFunc describes the behavior when the FilterKeyShareSubmissionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterKeyShareSubmissionCompleteFunc) History

History returns a sequence of IETHDKGFilterKeyShareSubmissionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterKeyShareSubmissionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterKeyShareSubmissionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterKeyShareSubmissionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterKeyShareSubmissionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterKeyShareSubmissionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterKeyShareSubmissionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterKeyShareSubmissionCompleteFuncCall

type IETHDKGFilterKeyShareSubmissionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGKeyShareSubmissionCompleteIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterKeyShareSubmissionCompleteFuncCall is an object that describes an invocation of method FilterKeyShareSubmissionComplete on an instance of MockIETHDKG.

func (IETHDKGFilterKeyShareSubmissionCompleteFuncCall) Args

func (c IETHDKGFilterKeyShareSubmissionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterKeyShareSubmissionCompleteFuncCall) Results

func (c IETHDKGFilterKeyShareSubmissionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterKeyShareSubmittedFunc

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

IETHDKGFilterKeyShareSubmittedFunc describes the behavior when the FilterKeyShareSubmitted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterKeyShareSubmittedFunc) History

History returns a sequence of IETHDKGFilterKeyShareSubmittedFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterKeyShareSubmittedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterKeyShareSubmitted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterKeyShareSubmittedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterKeyShareSubmittedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterKeyShareSubmitted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterKeyShareSubmittedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterKeyShareSubmittedFuncCall

type IETHDKGFilterKeyShareSubmittedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGKeyShareSubmittedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterKeyShareSubmittedFuncCall is an object that describes an invocation of method FilterKeyShareSubmitted on an instance of MockIETHDKG.

func (IETHDKGFilterKeyShareSubmittedFuncCall) Args

func (c IETHDKGFilterKeyShareSubmittedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterKeyShareSubmittedFuncCall) Results

func (c IETHDKGFilterKeyShareSubmittedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterMPKSetFunc

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

IETHDKGFilterMPKSetFunc describes the behavior when the FilterMPKSet method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterMPKSetFunc) History

History returns a sequence of IETHDKGFilterMPKSetFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterMPKSetFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterMPKSet method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterMPKSetFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterMPKSetFunc) SetDefaultHook

func (f *IETHDKGFilterMPKSetFunc) SetDefaultHook(hook func(*bind.FilterOpts) (*bindings.ETHDKGMPKSetIterator, error))

SetDefaultHook sets function that is called when the FilterMPKSet method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterMPKSetFunc) SetDefaultReturn

func (f *IETHDKGFilterMPKSetFunc) SetDefaultReturn(r0 *bindings.ETHDKGMPKSetIterator, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterMPKSetFuncCall

type IETHDKGFilterMPKSetFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGMPKSetIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterMPKSetFuncCall is an object that describes an invocation of method FilterMPKSet on an instance of MockIETHDKG.

func (IETHDKGFilterMPKSetFuncCall) Args

func (c IETHDKGFilterMPKSetFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterMPKSetFuncCall) Results

func (c IETHDKGFilterMPKSetFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterRegistrationCompleteFunc

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

IETHDKGFilterRegistrationCompleteFunc describes the behavior when the FilterRegistrationComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterRegistrationCompleteFunc) History

History returns a sequence of IETHDKGFilterRegistrationCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterRegistrationCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterRegistrationComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterRegistrationCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterRegistrationCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterRegistrationComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterRegistrationCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterRegistrationCompleteFuncCall

type IETHDKGFilterRegistrationCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGRegistrationCompleteIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterRegistrationCompleteFuncCall is an object that describes an invocation of method FilterRegistrationComplete on an instance of MockIETHDKG.

func (IETHDKGFilterRegistrationCompleteFuncCall) Args

func (c IETHDKGFilterRegistrationCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterRegistrationCompleteFuncCall) Results

func (c IETHDKGFilterRegistrationCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterRegistrationOpenedFunc

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

IETHDKGFilterRegistrationOpenedFunc describes the behavior when the FilterRegistrationOpened method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterRegistrationOpenedFunc) History

History returns a sequence of IETHDKGFilterRegistrationOpenedFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterRegistrationOpenedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterRegistrationOpened method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterRegistrationOpenedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterRegistrationOpenedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterRegistrationOpened method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterRegistrationOpenedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterRegistrationOpenedFuncCall

type IETHDKGFilterRegistrationOpenedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGRegistrationOpenedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterRegistrationOpenedFuncCall is an object that describes an invocation of method FilterRegistrationOpened on an instance of MockIETHDKG.

func (IETHDKGFilterRegistrationOpenedFuncCall) Args

func (c IETHDKGFilterRegistrationOpenedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterRegistrationOpenedFuncCall) Results

func (c IETHDKGFilterRegistrationOpenedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterShareDistributionCompleteFunc

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

IETHDKGFilterShareDistributionCompleteFunc describes the behavior when the FilterShareDistributionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterShareDistributionCompleteFunc) History

History returns a sequence of IETHDKGFilterShareDistributionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterShareDistributionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterShareDistributionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterShareDistributionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterShareDistributionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterShareDistributionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterShareDistributionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterShareDistributionCompleteFuncCall

type IETHDKGFilterShareDistributionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGShareDistributionCompleteIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterShareDistributionCompleteFuncCall is an object that describes an invocation of method FilterShareDistributionComplete on an instance of MockIETHDKG.

func (IETHDKGFilterShareDistributionCompleteFuncCall) Args

func (c IETHDKGFilterShareDistributionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterShareDistributionCompleteFuncCall) Results

func (c IETHDKGFilterShareDistributionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterSharesDistributedFunc

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

IETHDKGFilterSharesDistributedFunc describes the behavior when the FilterSharesDistributed method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterSharesDistributedFunc) History

History returns a sequence of IETHDKGFilterSharesDistributedFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterSharesDistributedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterSharesDistributed method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterSharesDistributedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterSharesDistributedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterSharesDistributed method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterSharesDistributedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterSharesDistributedFuncCall

type IETHDKGFilterSharesDistributedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGSharesDistributedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterSharesDistributedFuncCall is an object that describes an invocation of method FilterSharesDistributed on an instance of MockIETHDKG.

func (IETHDKGFilterSharesDistributedFuncCall) Args

func (c IETHDKGFilterSharesDistributedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterSharesDistributedFuncCall) Results

func (c IETHDKGFilterSharesDistributedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterValidatorMemberAddedFunc

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

IETHDKGFilterValidatorMemberAddedFunc describes the behavior when the FilterValidatorMemberAdded method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterValidatorMemberAddedFunc) History

History returns a sequence of IETHDKGFilterValidatorMemberAddedFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterValidatorMemberAddedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValidatorMemberAdded method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterValidatorMemberAddedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterValidatorMemberAddedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValidatorMemberAdded method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterValidatorMemberAddedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterValidatorMemberAddedFuncCall

type IETHDKGFilterValidatorMemberAddedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGValidatorMemberAddedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterValidatorMemberAddedFuncCall is an object that describes an invocation of method FilterValidatorMemberAdded on an instance of MockIETHDKG.

func (IETHDKGFilterValidatorMemberAddedFuncCall) Args

func (c IETHDKGFilterValidatorMemberAddedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterValidatorMemberAddedFuncCall) Results

func (c IETHDKGFilterValidatorMemberAddedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGFilterValidatorSetCompletedFunc

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

IETHDKGFilterValidatorSetCompletedFunc describes the behavior when the FilterValidatorSetCompleted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGFilterValidatorSetCompletedFunc) History

History returns a sequence of IETHDKGFilterValidatorSetCompletedFuncCall objects describing the invocations of this function.

func (*IETHDKGFilterValidatorSetCompletedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValidatorSetCompleted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGFilterValidatorSetCompletedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGFilterValidatorSetCompletedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValidatorSetCompleted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGFilterValidatorSetCompletedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGFilterValidatorSetCompletedFuncCall

type IETHDKGFilterValidatorSetCompletedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGValidatorSetCompletedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGFilterValidatorSetCompletedFuncCall is an object that describes an invocation of method FilterValidatorSetCompleted on an instance of MockIETHDKG.

func (IETHDKGFilterValidatorSetCompletedFuncCall) Args

func (c IETHDKGFilterValidatorSetCompletedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGFilterValidatorSetCompletedFuncCall) Results

func (c IETHDKGFilterValidatorSetCompletedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetBadParticipantsFunc

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

IETHDKGGetBadParticipantsFunc describes the behavior when the GetBadParticipants method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetBadParticipantsFunc) History

History returns a sequence of IETHDKGGetBadParticipantsFuncCall objects describing the invocations of this function.

func (*IETHDKGGetBadParticipantsFunc) PushHook

func (f *IETHDKGGetBadParticipantsFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetBadParticipants method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetBadParticipantsFunc) PushReturn

func (f *IETHDKGGetBadParticipantsFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetBadParticipantsFunc) SetDefaultHook

func (f *IETHDKGGetBadParticipantsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetBadParticipants method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetBadParticipantsFunc) SetDefaultReturn

func (f *IETHDKGGetBadParticipantsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetBadParticipantsFuncCall

type IETHDKGGetBadParticipantsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetBadParticipantsFuncCall is an object that describes an invocation of method GetBadParticipants on an instance of MockIETHDKG.

func (IETHDKGGetBadParticipantsFuncCall) Args

func (c IETHDKGGetBadParticipantsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetBadParticipantsFuncCall) Results

func (c IETHDKGGetBadParticipantsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetConfirmationLengthFunc

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

IETHDKGGetConfirmationLengthFunc describes the behavior when the GetConfirmationLength method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetConfirmationLengthFunc) History

History returns a sequence of IETHDKGGetConfirmationLengthFuncCall objects describing the invocations of this function.

func (*IETHDKGGetConfirmationLengthFunc) PushHook

func (f *IETHDKGGetConfirmationLengthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetConfirmationLength method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetConfirmationLengthFunc) PushReturn

func (f *IETHDKGGetConfirmationLengthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetConfirmationLengthFunc) SetDefaultHook

func (f *IETHDKGGetConfirmationLengthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetConfirmationLength method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetConfirmationLengthFunc) SetDefaultReturn

func (f *IETHDKGGetConfirmationLengthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetConfirmationLengthFuncCall

type IETHDKGGetConfirmationLengthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetConfirmationLengthFuncCall is an object that describes an invocation of method GetConfirmationLength on an instance of MockIETHDKG.

func (IETHDKGGetConfirmationLengthFuncCall) Args

func (c IETHDKGGetConfirmationLengthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetConfirmationLengthFuncCall) Results

func (c IETHDKGGetConfirmationLengthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetETHDKGPhaseFunc

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

IETHDKGGetETHDKGPhaseFunc describes the behavior when the GetETHDKGPhase method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetETHDKGPhaseFunc) History

History returns a sequence of IETHDKGGetETHDKGPhaseFuncCall objects describing the invocations of this function.

func (*IETHDKGGetETHDKGPhaseFunc) PushHook

func (f *IETHDKGGetETHDKGPhaseFunc) PushHook(hook func(*bind.CallOpts) (uint8, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetETHDKGPhase method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetETHDKGPhaseFunc) PushReturn

func (f *IETHDKGGetETHDKGPhaseFunc) PushReturn(r0 uint8, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetETHDKGPhaseFunc) SetDefaultHook

func (f *IETHDKGGetETHDKGPhaseFunc) SetDefaultHook(hook func(*bind.CallOpts) (uint8, error))

SetDefaultHook sets function that is called when the GetETHDKGPhase method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetETHDKGPhaseFunc) SetDefaultReturn

func (f *IETHDKGGetETHDKGPhaseFunc) SetDefaultReturn(r0 uint8, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetETHDKGPhaseFuncCall

type IETHDKGGetETHDKGPhaseFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 uint8
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetETHDKGPhaseFuncCall is an object that describes an invocation of method GetETHDKGPhase on an instance of MockIETHDKG.

func (IETHDKGGetETHDKGPhaseFuncCall) Args

func (c IETHDKGGetETHDKGPhaseFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetETHDKGPhaseFuncCall) Results

func (c IETHDKGGetETHDKGPhaseFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetLastRoundParticipantIndexFunc added in v0.0.5

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

IETHDKGGetLastRoundParticipantIndexFunc describes the behavior when the GetLastRoundParticipantIndex method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetLastRoundParticipantIndexFunc) History added in v0.0.5

History returns a sequence of IETHDKGGetLastRoundParticipantIndexFuncCall objects describing the invocations of this function.

func (*IETHDKGGetLastRoundParticipantIndexFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetLastRoundParticipantIndex method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetLastRoundParticipantIndexFunc) PushReturn added in v0.0.5

func (f *IETHDKGGetLastRoundParticipantIndexFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetLastRoundParticipantIndexFunc) SetDefaultHook added in v0.0.5

func (f *IETHDKGGetLastRoundParticipantIndexFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the GetLastRoundParticipantIndex method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetLastRoundParticipantIndexFunc) SetDefaultReturn added in v0.0.5

func (f *IETHDKGGetLastRoundParticipantIndexFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetLastRoundParticipantIndexFuncCall added in v0.0.5

type IETHDKGGetLastRoundParticipantIndexFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetLastRoundParticipantIndexFuncCall is an object that describes an invocation of method GetLastRoundParticipantIndex on an instance of MockIETHDKG.

func (IETHDKGGetLastRoundParticipantIndexFuncCall) Args added in v0.0.5

func (c IETHDKGGetLastRoundParticipantIndexFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetLastRoundParticipantIndexFuncCall) Results added in v0.0.5

func (c IETHDKGGetLastRoundParticipantIndexFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetMasterPublicKeyFunc

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

IETHDKGGetMasterPublicKeyFunc describes the behavior when the GetMasterPublicKey method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetMasterPublicKeyFunc) History

History returns a sequence of IETHDKGGetMasterPublicKeyFuncCall objects describing the invocations of this function.

func (*IETHDKGGetMasterPublicKeyFunc) PushHook

func (f *IETHDKGGetMasterPublicKeyFunc) PushHook(hook func(*bind.CallOpts) ([4]*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMasterPublicKey method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetMasterPublicKeyFunc) PushReturn

func (f *IETHDKGGetMasterPublicKeyFunc) PushReturn(r0 [4]*big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetMasterPublicKeyFunc) SetDefaultHook

func (f *IETHDKGGetMasterPublicKeyFunc) SetDefaultHook(hook func(*bind.CallOpts) ([4]*big.Int, error))

SetDefaultHook sets function that is called when the GetMasterPublicKey method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetMasterPublicKeyFunc) SetDefaultReturn

func (f *IETHDKGGetMasterPublicKeyFunc) SetDefaultReturn(r0 [4]*big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetMasterPublicKeyFuncCall

type IETHDKGGetMasterPublicKeyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 [4]*big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetMasterPublicKeyFuncCall is an object that describes an invocation of method GetMasterPublicKey on an instance of MockIETHDKG.

func (IETHDKGGetMasterPublicKeyFuncCall) Args

func (c IETHDKGGetMasterPublicKeyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetMasterPublicKeyFuncCall) Results

func (c IETHDKGGetMasterPublicKeyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetMasterPublicKeyHashFunc

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

IETHDKGGetMasterPublicKeyHashFunc describes the behavior when the GetMasterPublicKeyHash method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetMasterPublicKeyHashFunc) History

History returns a sequence of IETHDKGGetMasterPublicKeyHashFuncCall objects describing the invocations of this function.

func (*IETHDKGGetMasterPublicKeyHashFunc) PushHook

func (f *IETHDKGGetMasterPublicKeyHashFunc) PushHook(hook func(*bind.CallOpts) ([32]byte, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMasterPublicKeyHash method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetMasterPublicKeyHashFunc) PushReturn

func (f *IETHDKGGetMasterPublicKeyHashFunc) PushReturn(r0 [32]byte, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetMasterPublicKeyHashFunc) SetDefaultHook

func (f *IETHDKGGetMasterPublicKeyHashFunc) SetDefaultHook(hook func(*bind.CallOpts) ([32]byte, error))

SetDefaultHook sets function that is called when the GetMasterPublicKeyHash method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetMasterPublicKeyHashFunc) SetDefaultReturn

func (f *IETHDKGGetMasterPublicKeyHashFunc) SetDefaultReturn(r0 [32]byte, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetMasterPublicKeyHashFuncCall

type IETHDKGGetMasterPublicKeyHashFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 [32]byte
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetMasterPublicKeyHashFuncCall is an object that describes an invocation of method GetMasterPublicKeyHash on an instance of MockIETHDKG.

func (IETHDKGGetMasterPublicKeyHashFuncCall) Args

func (c IETHDKGGetMasterPublicKeyHashFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetMasterPublicKeyHashFuncCall) Results

func (c IETHDKGGetMasterPublicKeyHashFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetMetamorphicContractAddressFunc

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

IETHDKGGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetMetamorphicContractAddressFunc) History

History returns a sequence of IETHDKGGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IETHDKGGetMetamorphicContractAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetMetamorphicContractAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetMetamorphicContractAddressFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetMetamorphicContractAddressFunc) SetDefaultReturn

func (f *IETHDKGGetMetamorphicContractAddressFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetMetamorphicContractAddressFuncCall

type IETHDKGGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIETHDKG.

func (IETHDKGGetMetamorphicContractAddressFuncCall) Args

func (c IETHDKGGetMetamorphicContractAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetMetamorphicContractAddressFuncCall) Results

func (c IETHDKGGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetMinValidatorsFunc

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

IETHDKGGetMinValidatorsFunc describes the behavior when the GetMinValidators method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetMinValidatorsFunc) History

History returns a sequence of IETHDKGGetMinValidatorsFuncCall objects describing the invocations of this function.

func (*IETHDKGGetMinValidatorsFunc) PushHook

func (f *IETHDKGGetMinValidatorsFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMinValidators method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetMinValidatorsFunc) PushReturn

func (f *IETHDKGGetMinValidatorsFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetMinValidatorsFunc) SetDefaultHook

func (f *IETHDKGGetMinValidatorsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMinValidators method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetMinValidatorsFunc) SetDefaultReturn

func (f *IETHDKGGetMinValidatorsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetMinValidatorsFuncCall

type IETHDKGGetMinValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetMinValidatorsFuncCall is an object that describes an invocation of method GetMinValidators on an instance of MockIETHDKG.

func (IETHDKGGetMinValidatorsFuncCall) Args

func (c IETHDKGGetMinValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetMinValidatorsFuncCall) Results

func (c IETHDKGGetMinValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetNonceFunc

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

IETHDKGGetNonceFunc describes the behavior when the GetNonce method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetNonceFunc) History

History returns a sequence of IETHDKGGetNonceFuncCall objects describing the invocations of this function.

func (*IETHDKGGetNonceFunc) PushHook

func (f *IETHDKGGetNonceFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetNonce method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetNonceFunc) PushReturn

func (f *IETHDKGGetNonceFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetNonceFunc) SetDefaultHook

func (f *IETHDKGGetNonceFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetNonce method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetNonceFunc) SetDefaultReturn

func (f *IETHDKGGetNonceFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetNonceFuncCall

type IETHDKGGetNonceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetNonceFuncCall is an object that describes an invocation of method GetNonce on an instance of MockIETHDKG.

func (IETHDKGGetNonceFuncCall) Args

func (c IETHDKGGetNonceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetNonceFuncCall) Results

func (c IETHDKGGetNonceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetNumParticipantsFunc

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

IETHDKGGetNumParticipantsFunc describes the behavior when the GetNumParticipants method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetNumParticipantsFunc) History

History returns a sequence of IETHDKGGetNumParticipantsFuncCall objects describing the invocations of this function.

func (*IETHDKGGetNumParticipantsFunc) PushHook

func (f *IETHDKGGetNumParticipantsFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetNumParticipants method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetNumParticipantsFunc) PushReturn

func (f *IETHDKGGetNumParticipantsFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetNumParticipantsFunc) SetDefaultHook

func (f *IETHDKGGetNumParticipantsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetNumParticipants method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetNumParticipantsFunc) SetDefaultReturn

func (f *IETHDKGGetNumParticipantsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetNumParticipantsFuncCall

type IETHDKGGetNumParticipantsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetNumParticipantsFuncCall is an object that describes an invocation of method GetNumParticipants on an instance of MockIETHDKG.

func (IETHDKGGetNumParticipantsFuncCall) Args

func (c IETHDKGGetNumParticipantsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetNumParticipantsFuncCall) Results

func (c IETHDKGGetNumParticipantsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetParticipantInternalStateFunc

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

IETHDKGGetParticipantInternalStateFunc describes the behavior when the GetParticipantInternalState method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetParticipantInternalStateFunc) History

History returns a sequence of IETHDKGGetParticipantInternalStateFuncCall objects describing the invocations of this function.

func (*IETHDKGGetParticipantInternalStateFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetParticipantInternalState method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetParticipantInternalStateFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetParticipantInternalStateFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetParticipantInternalState method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetParticipantInternalStateFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetParticipantInternalStateFuncCall

type IETHDKGGetParticipantInternalStateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.Participant
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetParticipantInternalStateFuncCall is an object that describes an invocation of method GetParticipantInternalState on an instance of MockIETHDKG.

func (IETHDKGGetParticipantInternalStateFuncCall) Args

func (c IETHDKGGetParticipantInternalStateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetParticipantInternalStateFuncCall) Results

func (c IETHDKGGetParticipantInternalStateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetParticipantsInternalStateFunc

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

IETHDKGGetParticipantsInternalStateFunc describes the behavior when the GetParticipantsInternalState method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetParticipantsInternalStateFunc) History

History returns a sequence of IETHDKGGetParticipantsInternalStateFuncCall objects describing the invocations of this function.

func (*IETHDKGGetParticipantsInternalStateFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetParticipantsInternalState method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetParticipantsInternalStateFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetParticipantsInternalStateFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetParticipantsInternalState method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetParticipantsInternalStateFunc) SetDefaultReturn

func (f *IETHDKGGetParticipantsInternalStateFunc) SetDefaultReturn(r0 []bindings.Participant, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetParticipantsInternalStateFuncCall

type IETHDKGGetParticipantsInternalStateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []bindings.Participant
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetParticipantsInternalStateFuncCall is an object that describes an invocation of method GetParticipantsInternalState on an instance of MockIETHDKG.

func (IETHDKGGetParticipantsInternalStateFuncCall) Args

func (c IETHDKGGetParticipantsInternalStateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetParticipantsInternalStateFuncCall) Results

func (c IETHDKGGetParticipantsInternalStateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetPhaseLengthFunc

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

IETHDKGGetPhaseLengthFunc describes the behavior when the GetPhaseLength method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetPhaseLengthFunc) History

History returns a sequence of IETHDKGGetPhaseLengthFuncCall objects describing the invocations of this function.

func (*IETHDKGGetPhaseLengthFunc) PushHook

func (f *IETHDKGGetPhaseLengthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPhaseLength method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetPhaseLengthFunc) PushReturn

func (f *IETHDKGGetPhaseLengthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetPhaseLengthFunc) SetDefaultHook

func (f *IETHDKGGetPhaseLengthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetPhaseLength method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetPhaseLengthFunc) SetDefaultReturn

func (f *IETHDKGGetPhaseLengthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetPhaseLengthFuncCall

type IETHDKGGetPhaseLengthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetPhaseLengthFuncCall is an object that describes an invocation of method GetPhaseLength on an instance of MockIETHDKG.

func (IETHDKGGetPhaseLengthFuncCall) Args

func (c IETHDKGGetPhaseLengthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetPhaseLengthFuncCall) Results

func (c IETHDKGGetPhaseLengthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGGetPhaseStartBlockFunc

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

IETHDKGGetPhaseStartBlockFunc describes the behavior when the GetPhaseStartBlock method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGGetPhaseStartBlockFunc) History

History returns a sequence of IETHDKGGetPhaseStartBlockFuncCall objects describing the invocations of this function.

func (*IETHDKGGetPhaseStartBlockFunc) PushHook

func (f *IETHDKGGetPhaseStartBlockFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPhaseStartBlock method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGGetPhaseStartBlockFunc) PushReturn

func (f *IETHDKGGetPhaseStartBlockFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGGetPhaseStartBlockFunc) SetDefaultHook

func (f *IETHDKGGetPhaseStartBlockFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetPhaseStartBlock method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGGetPhaseStartBlockFunc) SetDefaultReturn

func (f *IETHDKGGetPhaseStartBlockFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGGetPhaseStartBlockFuncCall

type IETHDKGGetPhaseStartBlockFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGGetPhaseStartBlockFuncCall is an object that describes an invocation of method GetPhaseStartBlock on an instance of MockIETHDKG.

func (IETHDKGGetPhaseStartBlockFuncCall) Args

func (c IETHDKGGetPhaseStartBlockFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGGetPhaseStartBlockFuncCall) Results

func (c IETHDKGGetPhaseStartBlockFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGInitializeETHDKGFunc

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

IETHDKGInitializeETHDKGFunc describes the behavior when the InitializeETHDKG method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGInitializeETHDKGFunc) History

History returns a sequence of IETHDKGInitializeETHDKGFuncCall objects describing the invocations of this function.

func (*IETHDKGInitializeETHDKGFunc) PushHook

func (f *IETHDKGInitializeETHDKGFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the InitializeETHDKG method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGInitializeETHDKGFunc) PushReturn

func (f *IETHDKGInitializeETHDKGFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGInitializeETHDKGFunc) SetDefaultHook

func (f *IETHDKGInitializeETHDKGFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the InitializeETHDKG method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGInitializeETHDKGFunc) SetDefaultReturn

func (f *IETHDKGInitializeETHDKGFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGInitializeETHDKGFuncCall

type IETHDKGInitializeETHDKGFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGInitializeETHDKGFuncCall is an object that describes an invocation of method InitializeETHDKG on an instance of MockIETHDKG.

func (IETHDKGInitializeETHDKGFuncCall) Args

func (c IETHDKGInitializeETHDKGFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGInitializeETHDKGFuncCall) Results

func (c IETHDKGInitializeETHDKGFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGInitializeFunc

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

IETHDKGInitializeFunc describes the behavior when the Initialize method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGInitializeFunc) History

History returns a sequence of IETHDKGInitializeFuncCall objects describing the invocations of this function.

func (*IETHDKGInitializeFunc) PushHook

func (f *IETHDKGInitializeFunc) PushHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Initialize method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGInitializeFunc) PushReturn

func (f *IETHDKGInitializeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGInitializeFunc) SetDefaultHook

func (f *IETHDKGInitializeFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Initialize method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGInitializeFunc) SetDefaultReturn

func (f *IETHDKGInitializeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGInitializeFuncCall

type IETHDKGInitializeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGInitializeFuncCall is an object that describes an invocation of method Initialize on an instance of MockIETHDKG.

func (IETHDKGInitializeFuncCall) Args

func (c IETHDKGInitializeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGInitializeFuncCall) Results

func (c IETHDKGInitializeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGIsETHDKGCompletedFunc

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

IETHDKGIsETHDKGCompletedFunc describes the behavior when the IsETHDKGCompleted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGIsETHDKGCompletedFunc) History

History returns a sequence of IETHDKGIsETHDKGCompletedFuncCall objects describing the invocations of this function.

func (*IETHDKGIsETHDKGCompletedFunc) PushHook

func (f *IETHDKGIsETHDKGCompletedFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsETHDKGCompleted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGIsETHDKGCompletedFunc) PushReturn

func (f *IETHDKGIsETHDKGCompletedFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGIsETHDKGCompletedFunc) SetDefaultHook

func (f *IETHDKGIsETHDKGCompletedFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsETHDKGCompleted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGIsETHDKGCompletedFunc) SetDefaultReturn

func (f *IETHDKGIsETHDKGCompletedFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGIsETHDKGCompletedFuncCall

type IETHDKGIsETHDKGCompletedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGIsETHDKGCompletedFuncCall is an object that describes an invocation of method IsETHDKGCompleted on an instance of MockIETHDKG.

func (IETHDKGIsETHDKGCompletedFuncCall) Args

func (c IETHDKGIsETHDKGCompletedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGIsETHDKGCompletedFuncCall) Results

func (c IETHDKGIsETHDKGCompletedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGIsETHDKGHaltedFunc

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

IETHDKGIsETHDKGHaltedFunc describes the behavior when the IsETHDKGHalted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGIsETHDKGHaltedFunc) History

History returns a sequence of IETHDKGIsETHDKGHaltedFuncCall objects describing the invocations of this function.

func (*IETHDKGIsETHDKGHaltedFunc) PushHook

func (f *IETHDKGIsETHDKGHaltedFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsETHDKGHalted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGIsETHDKGHaltedFunc) PushReturn

func (f *IETHDKGIsETHDKGHaltedFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGIsETHDKGHaltedFunc) SetDefaultHook

func (f *IETHDKGIsETHDKGHaltedFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsETHDKGHalted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGIsETHDKGHaltedFunc) SetDefaultReturn

func (f *IETHDKGIsETHDKGHaltedFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGIsETHDKGHaltedFuncCall

type IETHDKGIsETHDKGHaltedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGIsETHDKGHaltedFuncCall is an object that describes an invocation of method IsETHDKGHalted on an instance of MockIETHDKG.

func (IETHDKGIsETHDKGHaltedFuncCall) Args

func (c IETHDKGIsETHDKGHaltedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGIsETHDKGHaltedFuncCall) Results

func (c IETHDKGIsETHDKGHaltedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGIsETHDKGRunningFunc

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

IETHDKGIsETHDKGRunningFunc describes the behavior when the IsETHDKGRunning method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGIsETHDKGRunningFunc) History

History returns a sequence of IETHDKGIsETHDKGRunningFuncCall objects describing the invocations of this function.

func (*IETHDKGIsETHDKGRunningFunc) PushHook

func (f *IETHDKGIsETHDKGRunningFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsETHDKGRunning method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGIsETHDKGRunningFunc) PushReturn

func (f *IETHDKGIsETHDKGRunningFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGIsETHDKGRunningFunc) SetDefaultHook

func (f *IETHDKGIsETHDKGRunningFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsETHDKGRunning method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGIsETHDKGRunningFunc) SetDefaultReturn

func (f *IETHDKGIsETHDKGRunningFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGIsETHDKGRunningFuncCall

type IETHDKGIsETHDKGRunningFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGIsETHDKGRunningFuncCall is an object that describes an invocation of method IsETHDKGRunning on an instance of MockIETHDKG.

func (IETHDKGIsETHDKGRunningFuncCall) Args

func (c IETHDKGIsETHDKGRunningFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGIsETHDKGRunningFuncCall) Results

func (c IETHDKGIsETHDKGRunningFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGIsMasterPublicKeySetFunc

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

IETHDKGIsMasterPublicKeySetFunc describes the behavior when the IsMasterPublicKeySet method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGIsMasterPublicKeySetFunc) History

History returns a sequence of IETHDKGIsMasterPublicKeySetFuncCall objects describing the invocations of this function.

func (*IETHDKGIsMasterPublicKeySetFunc) PushHook

func (f *IETHDKGIsMasterPublicKeySetFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsMasterPublicKeySet method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGIsMasterPublicKeySetFunc) PushReturn

func (f *IETHDKGIsMasterPublicKeySetFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGIsMasterPublicKeySetFunc) SetDefaultHook

func (f *IETHDKGIsMasterPublicKeySetFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsMasterPublicKeySet method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGIsMasterPublicKeySetFunc) SetDefaultReturn

func (f *IETHDKGIsMasterPublicKeySetFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGIsMasterPublicKeySetFuncCall

type IETHDKGIsMasterPublicKeySetFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGIsMasterPublicKeySetFuncCall is an object that describes an invocation of method IsMasterPublicKeySet on an instance of MockIETHDKG.

func (IETHDKGIsMasterPublicKeySetFuncCall) Args

func (c IETHDKGIsMasterPublicKeySetFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGIsMasterPublicKeySetFuncCall) Results

func (c IETHDKGIsMasterPublicKeySetFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGIsValidMasterPublicKeyFunc added in v0.0.8

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

IETHDKGIsValidMasterPublicKeyFunc describes the behavior when the IsValidMasterPublicKey method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGIsValidMasterPublicKeyFunc) History added in v0.0.8

History returns a sequence of IETHDKGIsValidMasterPublicKeyFuncCall objects describing the invocations of this function.

func (*IETHDKGIsValidMasterPublicKeyFunc) PushHook added in v0.0.8

func (f *IETHDKGIsValidMasterPublicKeyFunc) PushHook(hook func(*bind.CallOpts, [32]byte) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsValidMasterPublicKey method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGIsValidMasterPublicKeyFunc) PushReturn added in v0.0.8

func (f *IETHDKGIsValidMasterPublicKeyFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGIsValidMasterPublicKeyFunc) SetDefaultHook added in v0.0.8

func (f *IETHDKGIsValidMasterPublicKeyFunc) SetDefaultHook(hook func(*bind.CallOpts, [32]byte) (bool, error))

SetDefaultHook sets function that is called when the IsValidMasterPublicKey method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGIsValidMasterPublicKeyFunc) SetDefaultReturn added in v0.0.8

func (f *IETHDKGIsValidMasterPublicKeyFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGIsValidMasterPublicKeyFuncCall added in v0.0.8

type IETHDKGIsValidMasterPublicKeyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGIsValidMasterPublicKeyFuncCall is an object that describes an invocation of method IsValidMasterPublicKey on an instance of MockIETHDKG.

func (IETHDKGIsValidMasterPublicKeyFuncCall) Args added in v0.0.8

func (c IETHDKGIsValidMasterPublicKeyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGIsValidMasterPublicKeyFuncCall) Results added in v0.0.8

func (c IETHDKGIsValidMasterPublicKeyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGMigrateValidatorsFunc

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

IETHDKGMigrateValidatorsFunc describes the behavior when the MigrateValidators method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGMigrateValidatorsFunc) History

History returns a sequence of IETHDKGMigrateValidatorsFuncCall objects describing the invocations of this function.

func (*IETHDKGMigrateValidatorsFunc) PushHook

func (f *IETHDKGMigrateValidatorsFunc) PushHook(hook func(*bind.TransactOpts, []common.Address, []*big.Int, [][4]*big.Int, uint8, *big.Int, *big.Int, *big.Int, [4]*big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the MigrateValidators method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGMigrateValidatorsFunc) PushReturn

func (f *IETHDKGMigrateValidatorsFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGMigrateValidatorsFunc) SetDefaultHook

func (f *IETHDKGMigrateValidatorsFunc) SetDefaultHook(hook func(*bind.TransactOpts, []common.Address, []*big.Int, [][4]*big.Int, uint8, *big.Int, *big.Int, *big.Int, [4]*big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MigrateValidators method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGMigrateValidatorsFunc) SetDefaultReturn

func (f *IETHDKGMigrateValidatorsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGMigrateValidatorsFuncCall

type IETHDKGMigrateValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [][4]*big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 uint8
	// Arg5 is the value of the 6th argument passed to this method
	// invocation.
	Arg5 *big.Int
	// Arg6 is the value of the 7th argument passed to this method
	// invocation.
	Arg6 *big.Int
	// Arg7 is the value of the 8th argument passed to this method
	// invocation.
	Arg7 *big.Int
	// Arg8 is the value of the 9th argument passed to this method
	// invocation.
	Arg8 [4]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGMigrateValidatorsFuncCall is an object that describes an invocation of method MigrateValidators on an instance of MockIETHDKG.

func (IETHDKGMigrateValidatorsFuncCall) Args

func (c IETHDKGMigrateValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGMigrateValidatorsFuncCall) Results

func (c IETHDKGMigrateValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseAddressRegisteredFunc

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

IETHDKGParseAddressRegisteredFunc describes the behavior when the ParseAddressRegistered method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseAddressRegisteredFunc) History

History returns a sequence of IETHDKGParseAddressRegisteredFuncCall objects describing the invocations of this function.

func (*IETHDKGParseAddressRegisteredFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseAddressRegistered method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseAddressRegisteredFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseAddressRegisteredFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseAddressRegistered method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseAddressRegisteredFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseAddressRegisteredFuncCall

type IETHDKGParseAddressRegisteredFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGAddressRegistered
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseAddressRegisteredFuncCall is an object that describes an invocation of method ParseAddressRegistered on an instance of MockIETHDKG.

func (IETHDKGParseAddressRegisteredFuncCall) Args

func (c IETHDKGParseAddressRegisteredFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseAddressRegisteredFuncCall) Results

func (c IETHDKGParseAddressRegisteredFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseGPKJSubmissionCompleteFunc

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

IETHDKGParseGPKJSubmissionCompleteFunc describes the behavior when the ParseGPKJSubmissionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseGPKJSubmissionCompleteFunc) History

History returns a sequence of IETHDKGParseGPKJSubmissionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGParseGPKJSubmissionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseGPKJSubmissionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseGPKJSubmissionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseGPKJSubmissionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseGPKJSubmissionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseGPKJSubmissionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseGPKJSubmissionCompleteFuncCall

type IETHDKGParseGPKJSubmissionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGGPKJSubmissionComplete
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseGPKJSubmissionCompleteFuncCall is an object that describes an invocation of method ParseGPKJSubmissionComplete on an instance of MockIETHDKG.

func (IETHDKGParseGPKJSubmissionCompleteFuncCall) Args

func (c IETHDKGParseGPKJSubmissionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseGPKJSubmissionCompleteFuncCall) Results

func (c IETHDKGParseGPKJSubmissionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseInitializedFunc added in v0.0.2

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

IETHDKGParseInitializedFunc describes the behavior when the ParseInitialized method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseInitializedFunc) History added in v0.0.2

History returns a sequence of IETHDKGParseInitializedFuncCall objects describing the invocations of this function.

func (*IETHDKGParseInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the ParseInitialized method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseInitializedFunc) SetDefaultHook added in v0.0.2

func (f *IETHDKGParseInitializedFunc) SetDefaultHook(hook func(types.Log) (*bindings.ETHDKGInitialized, error))

SetDefaultHook sets function that is called when the ParseInitialized method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseInitializedFunc) SetDefaultReturn added in v0.0.2

func (f *IETHDKGParseInitializedFunc) SetDefaultReturn(r0 *bindings.ETHDKGInitialized, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseInitializedFuncCall added in v0.0.2

type IETHDKGParseInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGInitialized
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseInitializedFuncCall is an object that describes an invocation of method ParseInitialized on an instance of MockIETHDKG.

func (IETHDKGParseInitializedFuncCall) Args added in v0.0.2

func (c IETHDKGParseInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseInitializedFuncCall) Results added in v0.0.2

func (c IETHDKGParseInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseKeyShareSubmissionCompleteFunc

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

IETHDKGParseKeyShareSubmissionCompleteFunc describes the behavior when the ParseKeyShareSubmissionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseKeyShareSubmissionCompleteFunc) History

History returns a sequence of IETHDKGParseKeyShareSubmissionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGParseKeyShareSubmissionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseKeyShareSubmissionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseKeyShareSubmissionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseKeyShareSubmissionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseKeyShareSubmissionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseKeyShareSubmissionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseKeyShareSubmissionCompleteFuncCall

type IETHDKGParseKeyShareSubmissionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGKeyShareSubmissionComplete
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseKeyShareSubmissionCompleteFuncCall is an object that describes an invocation of method ParseKeyShareSubmissionComplete on an instance of MockIETHDKG.

func (IETHDKGParseKeyShareSubmissionCompleteFuncCall) Args

func (c IETHDKGParseKeyShareSubmissionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseKeyShareSubmissionCompleteFuncCall) Results

func (c IETHDKGParseKeyShareSubmissionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseKeyShareSubmittedFunc

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

IETHDKGParseKeyShareSubmittedFunc describes the behavior when the ParseKeyShareSubmitted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseKeyShareSubmittedFunc) History

History returns a sequence of IETHDKGParseKeyShareSubmittedFuncCall objects describing the invocations of this function.

func (*IETHDKGParseKeyShareSubmittedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseKeyShareSubmitted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseKeyShareSubmittedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseKeyShareSubmittedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseKeyShareSubmitted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseKeyShareSubmittedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseKeyShareSubmittedFuncCall

type IETHDKGParseKeyShareSubmittedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGKeyShareSubmitted
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseKeyShareSubmittedFuncCall is an object that describes an invocation of method ParseKeyShareSubmitted on an instance of MockIETHDKG.

func (IETHDKGParseKeyShareSubmittedFuncCall) Args

func (c IETHDKGParseKeyShareSubmittedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseKeyShareSubmittedFuncCall) Results

func (c IETHDKGParseKeyShareSubmittedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseMPKSetFunc

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

IETHDKGParseMPKSetFunc describes the behavior when the ParseMPKSet method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseMPKSetFunc) History

History returns a sequence of IETHDKGParseMPKSetFuncCall objects describing the invocations of this function.

func (*IETHDKGParseMPKSetFunc) PushHook

func (f *IETHDKGParseMPKSetFunc) PushHook(hook func(types.Log) (*bindings.ETHDKGMPKSet, error))

PushHook adds a function to the end of hook queue. Each invocation of the ParseMPKSet method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseMPKSetFunc) PushReturn

func (f *IETHDKGParseMPKSetFunc) PushReturn(r0 *bindings.ETHDKGMPKSet, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseMPKSetFunc) SetDefaultHook

func (f *IETHDKGParseMPKSetFunc) SetDefaultHook(hook func(types.Log) (*bindings.ETHDKGMPKSet, error))

SetDefaultHook sets function that is called when the ParseMPKSet method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseMPKSetFunc) SetDefaultReturn

func (f *IETHDKGParseMPKSetFunc) SetDefaultReturn(r0 *bindings.ETHDKGMPKSet, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseMPKSetFuncCall

type IETHDKGParseMPKSetFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGMPKSet
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseMPKSetFuncCall is an object that describes an invocation of method ParseMPKSet on an instance of MockIETHDKG.

func (IETHDKGParseMPKSetFuncCall) Args

func (c IETHDKGParseMPKSetFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseMPKSetFuncCall) Results

func (c IETHDKGParseMPKSetFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseRegistrationCompleteFunc

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

IETHDKGParseRegistrationCompleteFunc describes the behavior when the ParseRegistrationComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseRegistrationCompleteFunc) History

History returns a sequence of IETHDKGParseRegistrationCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGParseRegistrationCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseRegistrationComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseRegistrationCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseRegistrationCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseRegistrationComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseRegistrationCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseRegistrationCompleteFuncCall

type IETHDKGParseRegistrationCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGRegistrationComplete
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseRegistrationCompleteFuncCall is an object that describes an invocation of method ParseRegistrationComplete on an instance of MockIETHDKG.

func (IETHDKGParseRegistrationCompleteFuncCall) Args

func (c IETHDKGParseRegistrationCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseRegistrationCompleteFuncCall) Results

func (c IETHDKGParseRegistrationCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseRegistrationOpenedFunc

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

IETHDKGParseRegistrationOpenedFunc describes the behavior when the ParseRegistrationOpened method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseRegistrationOpenedFunc) History

History returns a sequence of IETHDKGParseRegistrationOpenedFuncCall objects describing the invocations of this function.

func (*IETHDKGParseRegistrationOpenedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseRegistrationOpened method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseRegistrationOpenedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseRegistrationOpenedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseRegistrationOpened method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseRegistrationOpenedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseRegistrationOpenedFuncCall

type IETHDKGParseRegistrationOpenedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGRegistrationOpened
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseRegistrationOpenedFuncCall is an object that describes an invocation of method ParseRegistrationOpened on an instance of MockIETHDKG.

func (IETHDKGParseRegistrationOpenedFuncCall) Args

func (c IETHDKGParseRegistrationOpenedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseRegistrationOpenedFuncCall) Results

func (c IETHDKGParseRegistrationOpenedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseShareDistributionCompleteFunc

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

IETHDKGParseShareDistributionCompleteFunc describes the behavior when the ParseShareDistributionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseShareDistributionCompleteFunc) History

History returns a sequence of IETHDKGParseShareDistributionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGParseShareDistributionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseShareDistributionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseShareDistributionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseShareDistributionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseShareDistributionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseShareDistributionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseShareDistributionCompleteFuncCall

type IETHDKGParseShareDistributionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGShareDistributionComplete
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseShareDistributionCompleteFuncCall is an object that describes an invocation of method ParseShareDistributionComplete on an instance of MockIETHDKG.

func (IETHDKGParseShareDistributionCompleteFuncCall) Args

func (c IETHDKGParseShareDistributionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseShareDistributionCompleteFuncCall) Results

func (c IETHDKGParseShareDistributionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseSharesDistributedFunc

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

IETHDKGParseSharesDistributedFunc describes the behavior when the ParseSharesDistributed method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseSharesDistributedFunc) History

History returns a sequence of IETHDKGParseSharesDistributedFuncCall objects describing the invocations of this function.

func (*IETHDKGParseSharesDistributedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseSharesDistributed method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseSharesDistributedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseSharesDistributedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseSharesDistributed method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseSharesDistributedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseSharesDistributedFuncCall

type IETHDKGParseSharesDistributedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGSharesDistributed
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseSharesDistributedFuncCall is an object that describes an invocation of method ParseSharesDistributed on an instance of MockIETHDKG.

func (IETHDKGParseSharesDistributedFuncCall) Args

func (c IETHDKGParseSharesDistributedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseSharesDistributedFuncCall) Results

func (c IETHDKGParseSharesDistributedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseValidatorMemberAddedFunc

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

IETHDKGParseValidatorMemberAddedFunc describes the behavior when the ParseValidatorMemberAdded method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseValidatorMemberAddedFunc) History

History returns a sequence of IETHDKGParseValidatorMemberAddedFuncCall objects describing the invocations of this function.

func (*IETHDKGParseValidatorMemberAddedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValidatorMemberAdded method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseValidatorMemberAddedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseValidatorMemberAddedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValidatorMemberAdded method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseValidatorMemberAddedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseValidatorMemberAddedFuncCall

type IETHDKGParseValidatorMemberAddedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGValidatorMemberAdded
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseValidatorMemberAddedFuncCall is an object that describes an invocation of method ParseValidatorMemberAdded on an instance of MockIETHDKG.

func (IETHDKGParseValidatorMemberAddedFuncCall) Args

func (c IETHDKGParseValidatorMemberAddedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseValidatorMemberAddedFuncCall) Results

func (c IETHDKGParseValidatorMemberAddedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGParseValidatorSetCompletedFunc

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

IETHDKGParseValidatorSetCompletedFunc describes the behavior when the ParseValidatorSetCompleted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGParseValidatorSetCompletedFunc) History

History returns a sequence of IETHDKGParseValidatorSetCompletedFuncCall objects describing the invocations of this function.

func (*IETHDKGParseValidatorSetCompletedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValidatorSetCompleted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGParseValidatorSetCompletedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGParseValidatorSetCompletedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValidatorSetCompleted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGParseValidatorSetCompletedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGParseValidatorSetCompletedFuncCall

type IETHDKGParseValidatorSetCompletedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ETHDKGValidatorSetCompleted
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGParseValidatorSetCompletedFuncCall is an object that describes an invocation of method ParseValidatorSetCompleted on an instance of MockIETHDKG.

func (IETHDKGParseValidatorSetCompletedFuncCall) Args

func (c IETHDKGParseValidatorSetCompletedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGParseValidatorSetCompletedFuncCall) Results

func (c IETHDKGParseValidatorSetCompletedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGRegisterFunc

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

IETHDKGRegisterFunc describes the behavior when the Register method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGRegisterFunc) History

History returns a sequence of IETHDKGRegisterFuncCall objects describing the invocations of this function.

func (*IETHDKGRegisterFunc) PushHook

func (f *IETHDKGRegisterFunc) PushHook(hook func(*bind.TransactOpts, [2]*big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Register method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGRegisterFunc) PushReturn

func (f *IETHDKGRegisterFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGRegisterFunc) SetDefaultHook

func (f *IETHDKGRegisterFunc) SetDefaultHook(hook func(*bind.TransactOpts, [2]*big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Register method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGRegisterFunc) SetDefaultReturn

func (f *IETHDKGRegisterFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGRegisterFuncCall

type IETHDKGRegisterFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [2]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGRegisterFuncCall is an object that describes an invocation of method Register on an instance of MockIETHDKG.

func (IETHDKGRegisterFuncCall) Args

func (c IETHDKGRegisterFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGRegisterFuncCall) Results

func (c IETHDKGRegisterFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGSetConfirmationLengthFunc

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

IETHDKGSetConfirmationLengthFunc describes the behavior when the SetConfirmationLength method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGSetConfirmationLengthFunc) History

History returns a sequence of IETHDKGSetConfirmationLengthFuncCall objects describing the invocations of this function.

func (*IETHDKGSetConfirmationLengthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetConfirmationLength method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGSetConfirmationLengthFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGSetConfirmationLengthFunc) SetDefaultHook

func (f *IETHDKGSetConfirmationLengthFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint16) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetConfirmationLength method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGSetConfirmationLengthFunc) SetDefaultReturn

func (f *IETHDKGSetConfirmationLengthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGSetConfirmationLengthFuncCall

type IETHDKGSetConfirmationLengthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint16
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGSetConfirmationLengthFuncCall is an object that describes an invocation of method SetConfirmationLength on an instance of MockIETHDKG.

func (IETHDKGSetConfirmationLengthFuncCall) Args

func (c IETHDKGSetConfirmationLengthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGSetConfirmationLengthFuncCall) Results

func (c IETHDKGSetConfirmationLengthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGSetCustomAliceNetHeightFunc

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

IETHDKGSetCustomAliceNetHeightFunc describes the behavior when the SetCustomAliceNetHeight method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGSetCustomAliceNetHeightFunc) History

History returns a sequence of IETHDKGSetCustomAliceNetHeightFuncCall objects describing the invocations of this function.

func (*IETHDKGSetCustomAliceNetHeightFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetCustomAliceNetHeight method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGSetCustomAliceNetHeightFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGSetCustomAliceNetHeightFunc) SetDefaultHook

func (f *IETHDKGSetCustomAliceNetHeightFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetCustomAliceNetHeight method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGSetCustomAliceNetHeightFunc) SetDefaultReturn

func (f *IETHDKGSetCustomAliceNetHeightFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGSetCustomAliceNetHeightFuncCall

type IETHDKGSetCustomAliceNetHeightFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGSetCustomAliceNetHeightFuncCall is an object that describes an invocation of method SetCustomAliceNetHeight on an instance of MockIETHDKG.

func (IETHDKGSetCustomAliceNetHeightFuncCall) Args

func (c IETHDKGSetCustomAliceNetHeightFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGSetCustomAliceNetHeightFuncCall) Results

func (c IETHDKGSetCustomAliceNetHeightFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGSetPhaseLengthFunc

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

IETHDKGSetPhaseLengthFunc describes the behavior when the SetPhaseLength method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGSetPhaseLengthFunc) History

History returns a sequence of IETHDKGSetPhaseLengthFuncCall objects describing the invocations of this function.

func (*IETHDKGSetPhaseLengthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetPhaseLength method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGSetPhaseLengthFunc) PushReturn

func (f *IETHDKGSetPhaseLengthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGSetPhaseLengthFunc) SetDefaultHook

func (f *IETHDKGSetPhaseLengthFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint16) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetPhaseLength method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGSetPhaseLengthFunc) SetDefaultReturn

func (f *IETHDKGSetPhaseLengthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGSetPhaseLengthFuncCall

type IETHDKGSetPhaseLengthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint16
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGSetPhaseLengthFuncCall is an object that describes an invocation of method SetPhaseLength on an instance of MockIETHDKG.

func (IETHDKGSetPhaseLengthFuncCall) Args

func (c IETHDKGSetPhaseLengthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGSetPhaseLengthFuncCall) Results

func (c IETHDKGSetPhaseLengthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGSubmitGPKJFunc

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

IETHDKGSubmitGPKJFunc describes the behavior when the SubmitGPKJ method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGSubmitGPKJFunc) History

History returns a sequence of IETHDKGSubmitGPKJFuncCall objects describing the invocations of this function.

func (*IETHDKGSubmitGPKJFunc) PushHook

func (f *IETHDKGSubmitGPKJFunc) PushHook(hook func(*bind.TransactOpts, [4]*big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the SubmitGPKJ method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGSubmitGPKJFunc) PushReturn

func (f *IETHDKGSubmitGPKJFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGSubmitGPKJFunc) SetDefaultHook

func (f *IETHDKGSubmitGPKJFunc) SetDefaultHook(hook func(*bind.TransactOpts, [4]*big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SubmitGPKJ method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGSubmitGPKJFunc) SetDefaultReturn

func (f *IETHDKGSubmitGPKJFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGSubmitGPKJFuncCall

type IETHDKGSubmitGPKJFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [4]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGSubmitGPKJFuncCall is an object that describes an invocation of method SubmitGPKJ on an instance of MockIETHDKG.

func (IETHDKGSubmitGPKJFuncCall) Args

func (c IETHDKGSubmitGPKJFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGSubmitGPKJFuncCall) Results

func (c IETHDKGSubmitGPKJFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGSubmitKeyShareFunc

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

IETHDKGSubmitKeyShareFunc describes the behavior when the SubmitKeyShare method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGSubmitKeyShareFunc) History

History returns a sequence of IETHDKGSubmitKeyShareFuncCall objects describing the invocations of this function.

func (*IETHDKGSubmitKeyShareFunc) PushHook

func (f *IETHDKGSubmitKeyShareFunc) PushHook(hook func(*bind.TransactOpts, [2]*big.Int, [2]*big.Int, [4]*big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the SubmitKeyShare method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGSubmitKeyShareFunc) PushReturn

func (f *IETHDKGSubmitKeyShareFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGSubmitKeyShareFunc) SetDefaultHook

func (f *IETHDKGSubmitKeyShareFunc) SetDefaultHook(hook func(*bind.TransactOpts, [2]*big.Int, [2]*big.Int, [4]*big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SubmitKeyShare method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGSubmitKeyShareFunc) SetDefaultReturn

func (f *IETHDKGSubmitKeyShareFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGSubmitKeyShareFuncCall

type IETHDKGSubmitKeyShareFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [2]*big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 [2]*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [4]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGSubmitKeyShareFuncCall is an object that describes an invocation of method SubmitKeyShare on an instance of MockIETHDKG.

func (IETHDKGSubmitKeyShareFuncCall) Args

func (c IETHDKGSubmitKeyShareFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGSubmitKeyShareFuncCall) Results

func (c IETHDKGSubmitKeyShareFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGSubmitMasterPublicKeyFunc

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

IETHDKGSubmitMasterPublicKeyFunc describes the behavior when the SubmitMasterPublicKey method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGSubmitMasterPublicKeyFunc) History

History returns a sequence of IETHDKGSubmitMasterPublicKeyFuncCall objects describing the invocations of this function.

func (*IETHDKGSubmitMasterPublicKeyFunc) PushHook

func (f *IETHDKGSubmitMasterPublicKeyFunc) PushHook(hook func(*bind.TransactOpts, [4]*big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the SubmitMasterPublicKey method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGSubmitMasterPublicKeyFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGSubmitMasterPublicKeyFunc) SetDefaultHook

func (f *IETHDKGSubmitMasterPublicKeyFunc) SetDefaultHook(hook func(*bind.TransactOpts, [4]*big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SubmitMasterPublicKey method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGSubmitMasterPublicKeyFunc) SetDefaultReturn

func (f *IETHDKGSubmitMasterPublicKeyFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGSubmitMasterPublicKeyFuncCall

type IETHDKGSubmitMasterPublicKeyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [4]*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGSubmitMasterPublicKeyFuncCall is an object that describes an invocation of method SubmitMasterPublicKey on an instance of MockIETHDKG.

func (IETHDKGSubmitMasterPublicKeyFuncCall) Args

func (c IETHDKGSubmitMasterPublicKeyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGSubmitMasterPublicKeyFuncCall) Results

func (c IETHDKGSubmitMasterPublicKeyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchAddressRegisteredFunc

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

IETHDKGWatchAddressRegisteredFunc describes the behavior when the WatchAddressRegistered method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchAddressRegisteredFunc) History

History returns a sequence of IETHDKGWatchAddressRegisteredFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchAddressRegisteredFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchAddressRegistered method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchAddressRegisteredFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchAddressRegisteredFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchAddressRegistered method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchAddressRegisteredFunc) SetDefaultReturn

func (f *IETHDKGWatchAddressRegisteredFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchAddressRegisteredFuncCall

type IETHDKGWatchAddressRegisteredFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGAddressRegistered
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchAddressRegisteredFuncCall is an object that describes an invocation of method WatchAddressRegistered on an instance of MockIETHDKG.

func (IETHDKGWatchAddressRegisteredFuncCall) Args

func (c IETHDKGWatchAddressRegisteredFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchAddressRegisteredFuncCall) Results

func (c IETHDKGWatchAddressRegisteredFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchGPKJSubmissionCompleteFunc

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

IETHDKGWatchGPKJSubmissionCompleteFunc describes the behavior when the WatchGPKJSubmissionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchGPKJSubmissionCompleteFunc) History

History returns a sequence of IETHDKGWatchGPKJSubmissionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchGPKJSubmissionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchGPKJSubmissionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchGPKJSubmissionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchGPKJSubmissionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchGPKJSubmissionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchGPKJSubmissionCompleteFunc) SetDefaultReturn

func (f *IETHDKGWatchGPKJSubmissionCompleteFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchGPKJSubmissionCompleteFuncCall

type IETHDKGWatchGPKJSubmissionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGGPKJSubmissionComplete
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchGPKJSubmissionCompleteFuncCall is an object that describes an invocation of method WatchGPKJSubmissionComplete on an instance of MockIETHDKG.

func (IETHDKGWatchGPKJSubmissionCompleteFuncCall) Args

func (c IETHDKGWatchGPKJSubmissionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchGPKJSubmissionCompleteFuncCall) Results

func (c IETHDKGWatchGPKJSubmissionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchInitializedFunc added in v0.0.2

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

IETHDKGWatchInitializedFunc describes the behavior when the WatchInitialized method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchInitializedFunc) History added in v0.0.2

History returns a sequence of IETHDKGWatchInitializedFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the WatchInitialized method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchInitializedFunc) PushReturn added in v0.0.2

func (f *IETHDKGWatchInitializedFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchInitializedFunc) SetDefaultHook added in v0.0.2

func (f *IETHDKGWatchInitializedFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.ETHDKGInitialized) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchInitialized method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchInitializedFunc) SetDefaultReturn added in v0.0.2

func (f *IETHDKGWatchInitializedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchInitializedFuncCall added in v0.0.2

type IETHDKGWatchInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGInitialized
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchInitializedFuncCall is an object that describes an invocation of method WatchInitialized on an instance of MockIETHDKG.

func (IETHDKGWatchInitializedFuncCall) Args added in v0.0.2

func (c IETHDKGWatchInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchInitializedFuncCall) Results added in v0.0.2

func (c IETHDKGWatchInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchKeyShareSubmissionCompleteFunc

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

IETHDKGWatchKeyShareSubmissionCompleteFunc describes the behavior when the WatchKeyShareSubmissionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchKeyShareSubmissionCompleteFunc) History

History returns a sequence of IETHDKGWatchKeyShareSubmissionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchKeyShareSubmissionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchKeyShareSubmissionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchKeyShareSubmissionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchKeyShareSubmissionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchKeyShareSubmissionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchKeyShareSubmissionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchKeyShareSubmissionCompleteFuncCall

type IETHDKGWatchKeyShareSubmissionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGKeyShareSubmissionComplete
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchKeyShareSubmissionCompleteFuncCall is an object that describes an invocation of method WatchKeyShareSubmissionComplete on an instance of MockIETHDKG.

func (IETHDKGWatchKeyShareSubmissionCompleteFuncCall) Args

func (c IETHDKGWatchKeyShareSubmissionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchKeyShareSubmissionCompleteFuncCall) Results

func (c IETHDKGWatchKeyShareSubmissionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchKeyShareSubmittedFunc

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

IETHDKGWatchKeyShareSubmittedFunc describes the behavior when the WatchKeyShareSubmitted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchKeyShareSubmittedFunc) History

History returns a sequence of IETHDKGWatchKeyShareSubmittedFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchKeyShareSubmittedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchKeyShareSubmitted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchKeyShareSubmittedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchKeyShareSubmittedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchKeyShareSubmitted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchKeyShareSubmittedFunc) SetDefaultReturn

func (f *IETHDKGWatchKeyShareSubmittedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchKeyShareSubmittedFuncCall

type IETHDKGWatchKeyShareSubmittedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGKeyShareSubmitted
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchKeyShareSubmittedFuncCall is an object that describes an invocation of method WatchKeyShareSubmitted on an instance of MockIETHDKG.

func (IETHDKGWatchKeyShareSubmittedFuncCall) Args

func (c IETHDKGWatchKeyShareSubmittedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchKeyShareSubmittedFuncCall) Results

func (c IETHDKGWatchKeyShareSubmittedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchMPKSetFunc

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

IETHDKGWatchMPKSetFunc describes the behavior when the WatchMPKSet method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchMPKSetFunc) History

History returns a sequence of IETHDKGWatchMPKSetFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchMPKSetFunc) PushHook

func (f *IETHDKGWatchMPKSetFunc) PushHook(hook func(*bind.WatchOpts, chan<- *bindings.ETHDKGMPKSet) (event.Subscription, error))

PushHook adds a function to the end of hook queue. Each invocation of the WatchMPKSet method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchMPKSetFunc) PushReturn

func (f *IETHDKGWatchMPKSetFunc) PushReturn(r0 event.Subscription, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchMPKSetFunc) SetDefaultHook

func (f *IETHDKGWatchMPKSetFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.ETHDKGMPKSet) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchMPKSet method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchMPKSetFunc) SetDefaultReturn

func (f *IETHDKGWatchMPKSetFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchMPKSetFuncCall

type IETHDKGWatchMPKSetFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGMPKSet
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchMPKSetFuncCall is an object that describes an invocation of method WatchMPKSet on an instance of MockIETHDKG.

func (IETHDKGWatchMPKSetFuncCall) Args

func (c IETHDKGWatchMPKSetFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchMPKSetFuncCall) Results

func (c IETHDKGWatchMPKSetFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchRegistrationCompleteFunc

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

IETHDKGWatchRegistrationCompleteFunc describes the behavior when the WatchRegistrationComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchRegistrationCompleteFunc) History

History returns a sequence of IETHDKGWatchRegistrationCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchRegistrationCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchRegistrationComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchRegistrationCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchRegistrationCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchRegistrationComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchRegistrationCompleteFunc) SetDefaultReturn

func (f *IETHDKGWatchRegistrationCompleteFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchRegistrationCompleteFuncCall

type IETHDKGWatchRegistrationCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGRegistrationComplete
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchRegistrationCompleteFuncCall is an object that describes an invocation of method WatchRegistrationComplete on an instance of MockIETHDKG.

func (IETHDKGWatchRegistrationCompleteFuncCall) Args

func (c IETHDKGWatchRegistrationCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchRegistrationCompleteFuncCall) Results

func (c IETHDKGWatchRegistrationCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchRegistrationOpenedFunc

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

IETHDKGWatchRegistrationOpenedFunc describes the behavior when the WatchRegistrationOpened method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchRegistrationOpenedFunc) History

History returns a sequence of IETHDKGWatchRegistrationOpenedFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchRegistrationOpenedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchRegistrationOpened method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchRegistrationOpenedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchRegistrationOpenedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchRegistrationOpened method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchRegistrationOpenedFunc) SetDefaultReturn

func (f *IETHDKGWatchRegistrationOpenedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchRegistrationOpenedFuncCall

type IETHDKGWatchRegistrationOpenedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGRegistrationOpened
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchRegistrationOpenedFuncCall is an object that describes an invocation of method WatchRegistrationOpened on an instance of MockIETHDKG.

func (IETHDKGWatchRegistrationOpenedFuncCall) Args

func (c IETHDKGWatchRegistrationOpenedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchRegistrationOpenedFuncCall) Results

func (c IETHDKGWatchRegistrationOpenedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchShareDistributionCompleteFunc

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

IETHDKGWatchShareDistributionCompleteFunc describes the behavior when the WatchShareDistributionComplete method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchShareDistributionCompleteFunc) History

History returns a sequence of IETHDKGWatchShareDistributionCompleteFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchShareDistributionCompleteFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchShareDistributionComplete method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchShareDistributionCompleteFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchShareDistributionCompleteFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchShareDistributionComplete method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchShareDistributionCompleteFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchShareDistributionCompleteFuncCall

type IETHDKGWatchShareDistributionCompleteFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGShareDistributionComplete
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchShareDistributionCompleteFuncCall is an object that describes an invocation of method WatchShareDistributionComplete on an instance of MockIETHDKG.

func (IETHDKGWatchShareDistributionCompleteFuncCall) Args

func (c IETHDKGWatchShareDistributionCompleteFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchShareDistributionCompleteFuncCall) Results

func (c IETHDKGWatchShareDistributionCompleteFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchSharesDistributedFunc

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

IETHDKGWatchSharesDistributedFunc describes the behavior when the WatchSharesDistributed method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchSharesDistributedFunc) History

History returns a sequence of IETHDKGWatchSharesDistributedFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchSharesDistributedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchSharesDistributed method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchSharesDistributedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchSharesDistributedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchSharesDistributed method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchSharesDistributedFunc) SetDefaultReturn

func (f *IETHDKGWatchSharesDistributedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchSharesDistributedFuncCall

type IETHDKGWatchSharesDistributedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGSharesDistributed
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchSharesDistributedFuncCall is an object that describes an invocation of method WatchSharesDistributed on an instance of MockIETHDKG.

func (IETHDKGWatchSharesDistributedFuncCall) Args

func (c IETHDKGWatchSharesDistributedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchSharesDistributedFuncCall) Results

func (c IETHDKGWatchSharesDistributedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchValidatorMemberAddedFunc

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

IETHDKGWatchValidatorMemberAddedFunc describes the behavior when the WatchValidatorMemberAdded method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchValidatorMemberAddedFunc) History

History returns a sequence of IETHDKGWatchValidatorMemberAddedFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchValidatorMemberAddedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValidatorMemberAdded method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchValidatorMemberAddedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchValidatorMemberAddedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchValidatorMemberAdded method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchValidatorMemberAddedFunc) SetDefaultReturn

func (f *IETHDKGWatchValidatorMemberAddedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchValidatorMemberAddedFuncCall

type IETHDKGWatchValidatorMemberAddedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGValidatorMemberAdded
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchValidatorMemberAddedFuncCall is an object that describes an invocation of method WatchValidatorMemberAdded on an instance of MockIETHDKG.

func (IETHDKGWatchValidatorMemberAddedFuncCall) Args

func (c IETHDKGWatchValidatorMemberAddedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchValidatorMemberAddedFuncCall) Results

func (c IETHDKGWatchValidatorMemberAddedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IETHDKGWatchValidatorSetCompletedFunc

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

IETHDKGWatchValidatorSetCompletedFunc describes the behavior when the WatchValidatorSetCompleted method of the parent MockIETHDKG instance is invoked.

func (*IETHDKGWatchValidatorSetCompletedFunc) History

History returns a sequence of IETHDKGWatchValidatorSetCompletedFuncCall objects describing the invocations of this function.

func (*IETHDKGWatchValidatorSetCompletedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValidatorSetCompleted method of the parent MockIETHDKG instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IETHDKGWatchValidatorSetCompletedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IETHDKGWatchValidatorSetCompletedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchValidatorSetCompleted method of the parent MockIETHDKG instance is invoked and the hook queue is empty.

func (*IETHDKGWatchValidatorSetCompletedFunc) SetDefaultReturn

func (f *IETHDKGWatchValidatorSetCompletedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IETHDKGWatchValidatorSetCompletedFuncCall

type IETHDKGWatchValidatorSetCompletedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ETHDKGValidatorSetCompleted
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IETHDKGWatchValidatorSetCompletedFuncCall is an object that describes an invocation of method WatchValidatorSetCompleted on an instance of MockIETHDKG.

func (IETHDKGWatchValidatorSetCompletedFuncCall) Args

func (c IETHDKGWatchValidatorSetCompletedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IETHDKGWatchValidatorSetCompletedFuncCall) Results

func (c IETHDKGWatchValidatorSetCompletedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceFilterSnapshotTakenFunc added in v0.0.5

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

IGovernanceFilterSnapshotTakenFunc describes the behavior when the FilterSnapshotTaken method of the parent MockIGovernance instance is invoked.

func (*IGovernanceFilterSnapshotTakenFunc) History added in v0.0.5

History returns a sequence of IGovernanceFilterSnapshotTakenFuncCall objects describing the invocations of this function.

func (*IGovernanceFilterSnapshotTakenFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the FilterSnapshotTaken method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceFilterSnapshotTakenFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceFilterSnapshotTakenFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the FilterSnapshotTaken method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceFilterSnapshotTakenFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceFilterSnapshotTakenFuncCall added in v0.0.5

type IGovernanceFilterSnapshotTakenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []*big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.GovernanceSnapshotTakenIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceFilterSnapshotTakenFuncCall is an object that describes an invocation of method FilterSnapshotTaken on an instance of MockIGovernance.

func (IGovernanceFilterSnapshotTakenFuncCall) Args added in v0.0.5

func (c IGovernanceFilterSnapshotTakenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceFilterSnapshotTakenFuncCall) Results added in v0.0.5

func (c IGovernanceFilterSnapshotTakenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceFilterValueUpdatedFunc

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

IGovernanceFilterValueUpdatedFunc describes the behavior when the FilterValueUpdated method of the parent MockIGovernance instance is invoked.

func (*IGovernanceFilterValueUpdatedFunc) History

History returns a sequence of IGovernanceFilterValueUpdatedFuncCall objects describing the invocations of this function.

func (*IGovernanceFilterValueUpdatedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValueUpdated method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceFilterValueUpdatedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceFilterValueUpdatedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValueUpdated method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceFilterValueUpdatedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceFilterValueUpdatedFuncCall

type IGovernanceFilterValueUpdatedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []*big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [][32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.GovernanceValueUpdatedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceFilterValueUpdatedFuncCall is an object that describes an invocation of method FilterValueUpdated on an instance of MockIGovernance.

func (IGovernanceFilterValueUpdatedFuncCall) Args

func (c IGovernanceFilterValueUpdatedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceFilterValueUpdatedFuncCall) Results

func (c IGovernanceFilterValueUpdatedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceParseSnapshotTakenFunc added in v0.0.5

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

IGovernanceParseSnapshotTakenFunc describes the behavior when the ParseSnapshotTaken method of the parent MockIGovernance instance is invoked.

func (*IGovernanceParseSnapshotTakenFunc) History added in v0.0.5

History returns a sequence of IGovernanceParseSnapshotTakenFuncCall objects describing the invocations of this function.

func (*IGovernanceParseSnapshotTakenFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the ParseSnapshotTaken method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceParseSnapshotTakenFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceParseSnapshotTakenFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the ParseSnapshotTaken method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceParseSnapshotTakenFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceParseSnapshotTakenFuncCall added in v0.0.5

type IGovernanceParseSnapshotTakenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.GovernanceSnapshotTaken
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceParseSnapshotTakenFuncCall is an object that describes an invocation of method ParseSnapshotTaken on an instance of MockIGovernance.

func (IGovernanceParseSnapshotTakenFuncCall) Args added in v0.0.5

func (c IGovernanceParseSnapshotTakenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceParseSnapshotTakenFuncCall) Results added in v0.0.5

func (c IGovernanceParseSnapshotTakenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceParseValueUpdatedFunc

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

IGovernanceParseValueUpdatedFunc describes the behavior when the ParseValueUpdated method of the parent MockIGovernance instance is invoked.

func (*IGovernanceParseValueUpdatedFunc) History

History returns a sequence of IGovernanceParseValueUpdatedFuncCall objects describing the invocations of this function.

func (*IGovernanceParseValueUpdatedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValueUpdated method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceParseValueUpdatedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceParseValueUpdatedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValueUpdated method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceParseValueUpdatedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceParseValueUpdatedFuncCall

type IGovernanceParseValueUpdatedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.GovernanceValueUpdated
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceParseValueUpdatedFuncCall is an object that describes an invocation of method ParseValueUpdated on an instance of MockIGovernance.

func (IGovernanceParseValueUpdatedFuncCall) Args

func (c IGovernanceParseValueUpdatedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceParseValueUpdatedFuncCall) Results

func (c IGovernanceParseValueUpdatedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceUpdateValueFunc

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

IGovernanceUpdateValueFunc describes the behavior when the UpdateValue method of the parent MockIGovernance instance is invoked.

func (*IGovernanceUpdateValueFunc) History

History returns a sequence of IGovernanceUpdateValueFuncCall objects describing the invocations of this function.

func (*IGovernanceUpdateValueFunc) PushHook

func (f *IGovernanceUpdateValueFunc) PushHook(hook func(*bind.TransactOpts, *big.Int, *big.Int, [32]byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the UpdateValue method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceUpdateValueFunc) PushReturn

func (f *IGovernanceUpdateValueFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceUpdateValueFunc) SetDefaultHook

func (f *IGovernanceUpdateValueFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int, [32]byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the UpdateValue method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceUpdateValueFunc) SetDefaultReturn

func (f *IGovernanceUpdateValueFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceUpdateValueFuncCall

type IGovernanceUpdateValueFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceUpdateValueFuncCall is an object that describes an invocation of method UpdateValue on an instance of MockIGovernance.

func (IGovernanceUpdateValueFuncCall) Args

func (c IGovernanceUpdateValueFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceUpdateValueFuncCall) Results

func (c IGovernanceUpdateValueFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceWatchSnapshotTakenFunc added in v0.0.5

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

IGovernanceWatchSnapshotTakenFunc describes the behavior when the WatchSnapshotTaken method of the parent MockIGovernance instance is invoked.

func (*IGovernanceWatchSnapshotTakenFunc) History added in v0.0.5

History returns a sequence of IGovernanceWatchSnapshotTakenFuncCall objects describing the invocations of this function.

func (*IGovernanceWatchSnapshotTakenFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the WatchSnapshotTaken method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceWatchSnapshotTakenFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceWatchSnapshotTakenFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the WatchSnapshotTaken method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceWatchSnapshotTakenFunc) SetDefaultReturn added in v0.0.5

func (f *IGovernanceWatchSnapshotTakenFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceWatchSnapshotTakenFuncCall added in v0.0.5

type IGovernanceWatchSnapshotTakenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.GovernanceSnapshotTaken
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceWatchSnapshotTakenFuncCall is an object that describes an invocation of method WatchSnapshotTaken on an instance of MockIGovernance.

func (IGovernanceWatchSnapshotTakenFuncCall) Args added in v0.0.5

func (c IGovernanceWatchSnapshotTakenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceWatchSnapshotTakenFuncCall) Results added in v0.0.5

func (c IGovernanceWatchSnapshotTakenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IGovernanceWatchValueUpdatedFunc

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

IGovernanceWatchValueUpdatedFunc describes the behavior when the WatchValueUpdated method of the parent MockIGovernance instance is invoked.

func (*IGovernanceWatchValueUpdatedFunc) History

History returns a sequence of IGovernanceWatchValueUpdatedFuncCall objects describing the invocations of this function.

func (*IGovernanceWatchValueUpdatedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValueUpdated method of the parent MockIGovernance instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IGovernanceWatchValueUpdatedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IGovernanceWatchValueUpdatedFunc) SetDefaultHook

func (f *IGovernanceWatchValueUpdatedFunc) SetDefaultHook(hook func(*bind.WatchOpts, chan<- *bindings.GovernanceValueUpdated, []*big.Int, []*big.Int, [][32]byte) (event.Subscription, error))

SetDefaultHook sets function that is called when the WatchValueUpdated method of the parent MockIGovernance instance is invoked and the hook queue is empty.

func (*IGovernanceWatchValueUpdatedFunc) SetDefaultReturn

func (f *IGovernanceWatchValueUpdatedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IGovernanceWatchValueUpdatedFuncCall

type IGovernanceWatchValueUpdatedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.GovernanceValueUpdated
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []*big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 [][32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IGovernanceWatchValueUpdatedFuncCall is an object that describes an invocation of method WatchValueUpdated on an instance of MockIGovernance.

func (IGovernanceWatchValueUpdatedFuncCall) Args

func (c IGovernanceWatchValueUpdatedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IGovernanceWatchValueUpdatedFuncCall) Results

func (c IGovernanceWatchValueUpdatedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingApproveFunc

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

IPublicStakingApproveFunc describes the behavior when the Approve method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingApproveFunc) History

History returns a sequence of IPublicStakingApproveFuncCall objects describing the invocations of this function.

func (*IPublicStakingApproveFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Approve method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingApproveFunc) PushReturn

func (f *IPublicStakingApproveFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingApproveFunc) SetDefaultHook

func (f *IPublicStakingApproveFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Approve method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingApproveFunc) SetDefaultReturn

func (f *IPublicStakingApproveFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingApproveFuncCall

type IPublicStakingApproveFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingApproveFuncCall is an object that describes an invocation of method Approve on an instance of MockIPublicStaking.

func (IPublicStakingApproveFuncCall) Args

func (c IPublicStakingApproveFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingApproveFuncCall) Results

func (c IPublicStakingApproveFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingBalanceOfFunc

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

IPublicStakingBalanceOfFunc describes the behavior when the BalanceOf method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingBalanceOfFunc) History

History returns a sequence of IPublicStakingBalanceOfFuncCall objects describing the invocations of this function.

func (*IPublicStakingBalanceOfFunc) PushHook

func (f *IPublicStakingBalanceOfFunc) PushHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the BalanceOf method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingBalanceOfFunc) PushReturn

func (f *IPublicStakingBalanceOfFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingBalanceOfFunc) SetDefaultHook

func (f *IPublicStakingBalanceOfFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the BalanceOf method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingBalanceOfFunc) SetDefaultReturn

func (f *IPublicStakingBalanceOfFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingBalanceOfFuncCall

type IPublicStakingBalanceOfFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingBalanceOfFuncCall is an object that describes an invocation of method BalanceOf on an instance of MockIPublicStaking.

func (IPublicStakingBalanceOfFuncCall) Args

func (c IPublicStakingBalanceOfFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingBalanceOfFuncCall) Results

func (c IPublicStakingBalanceOfFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingBurnFunc

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

IPublicStakingBurnFunc describes the behavior when the Burn method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingBurnFunc) History

History returns a sequence of IPublicStakingBurnFuncCall objects describing the invocations of this function.

func (*IPublicStakingBurnFunc) PushHook

func (f *IPublicStakingBurnFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Burn method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingBurnFunc) PushReturn

func (f *IPublicStakingBurnFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingBurnFunc) SetDefaultHook

func (f *IPublicStakingBurnFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Burn method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingBurnFunc) SetDefaultReturn

func (f *IPublicStakingBurnFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingBurnFuncCall

type IPublicStakingBurnFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingBurnFuncCall is an object that describes an invocation of method Burn on an instance of MockIPublicStaking.

func (IPublicStakingBurnFuncCall) Args

func (c IPublicStakingBurnFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingBurnFuncCall) Results

func (c IPublicStakingBurnFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingBurnToFunc

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

IPublicStakingBurnToFunc describes the behavior when the BurnTo method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingBurnToFunc) History

History returns a sequence of IPublicStakingBurnToFuncCall objects describing the invocations of this function.

func (*IPublicStakingBurnToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the BurnTo method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingBurnToFunc) PushReturn

func (f *IPublicStakingBurnToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingBurnToFunc) SetDefaultHook

func (f *IPublicStakingBurnToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the BurnTo method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingBurnToFunc) SetDefaultReturn

func (f *IPublicStakingBurnToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingBurnToFuncCall

type IPublicStakingBurnToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingBurnToFuncCall is an object that describes an invocation of method BurnTo on an instance of MockIPublicStaking.

func (IPublicStakingBurnToFuncCall) Args

func (c IPublicStakingBurnToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingBurnToFuncCall) Results

func (c IPublicStakingBurnToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCircuitBreakerStateFunc

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

IPublicStakingCircuitBreakerStateFunc describes the behavior when the CircuitBreakerState method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCircuitBreakerStateFunc) History

History returns a sequence of IPublicStakingCircuitBreakerStateFuncCall objects describing the invocations of this function.

func (*IPublicStakingCircuitBreakerStateFunc) PushHook

func (f *IPublicStakingCircuitBreakerStateFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the CircuitBreakerState method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCircuitBreakerStateFunc) PushReturn

func (f *IPublicStakingCircuitBreakerStateFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCircuitBreakerStateFunc) SetDefaultHook

func (f *IPublicStakingCircuitBreakerStateFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the CircuitBreakerState method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCircuitBreakerStateFunc) SetDefaultReturn

func (f *IPublicStakingCircuitBreakerStateFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCircuitBreakerStateFuncCall

type IPublicStakingCircuitBreakerStateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCircuitBreakerStateFuncCall is an object that describes an invocation of method CircuitBreakerState on an instance of MockIPublicStaking.

func (IPublicStakingCircuitBreakerStateFuncCall) Args

func (c IPublicStakingCircuitBreakerStateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCircuitBreakerStateFuncCall) Results

func (c IPublicStakingCircuitBreakerStateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCollectAllProfitsFunc added in v0.0.5

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

IPublicStakingCollectAllProfitsFunc describes the behavior when the CollectAllProfits method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCollectAllProfitsFunc) History added in v0.0.5

History returns a sequence of IPublicStakingCollectAllProfitsFuncCall objects describing the invocations of this function.

func (*IPublicStakingCollectAllProfitsFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the CollectAllProfits method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCollectAllProfitsFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCollectAllProfitsFunc) SetDefaultHook added in v0.0.5

func (f *IPublicStakingCollectAllProfitsFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CollectAllProfits method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCollectAllProfitsFunc) SetDefaultReturn added in v0.0.5

func (f *IPublicStakingCollectAllProfitsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCollectAllProfitsFuncCall added in v0.0.5

type IPublicStakingCollectAllProfitsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCollectAllProfitsFuncCall is an object that describes an invocation of method CollectAllProfits on an instance of MockIPublicStaking.

func (IPublicStakingCollectAllProfitsFuncCall) Args added in v0.0.5

func (c IPublicStakingCollectAllProfitsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCollectAllProfitsFuncCall) Results added in v0.0.5

func (c IPublicStakingCollectAllProfitsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCollectAllProfitsToFunc added in v0.0.5

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

IPublicStakingCollectAllProfitsToFunc describes the behavior when the CollectAllProfitsTo method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCollectAllProfitsToFunc) History added in v0.0.5

History returns a sequence of IPublicStakingCollectAllProfitsToFuncCall objects describing the invocations of this function.

func (*IPublicStakingCollectAllProfitsToFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the CollectAllProfitsTo method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCollectAllProfitsToFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCollectAllProfitsToFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the CollectAllProfitsTo method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCollectAllProfitsToFunc) SetDefaultReturn added in v0.0.5

func (f *IPublicStakingCollectAllProfitsToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCollectAllProfitsToFuncCall added in v0.0.5

type IPublicStakingCollectAllProfitsToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCollectAllProfitsToFuncCall is an object that describes an invocation of method CollectAllProfitsTo on an instance of MockIPublicStaking.

func (IPublicStakingCollectAllProfitsToFuncCall) Args added in v0.0.5

func (c IPublicStakingCollectAllProfitsToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCollectAllProfitsToFuncCall) Results added in v0.0.5

func (c IPublicStakingCollectAllProfitsToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCollectEthFunc

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

IPublicStakingCollectEthFunc describes the behavior when the CollectEth method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCollectEthFunc) History

History returns a sequence of IPublicStakingCollectEthFuncCall objects describing the invocations of this function.

func (*IPublicStakingCollectEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectEth method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCollectEthFunc) PushReturn

func (f *IPublicStakingCollectEthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCollectEthFunc) SetDefaultHook

func (f *IPublicStakingCollectEthFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CollectEth method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCollectEthFunc) SetDefaultReturn

func (f *IPublicStakingCollectEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCollectEthFuncCall

type IPublicStakingCollectEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCollectEthFuncCall is an object that describes an invocation of method CollectEth on an instance of MockIPublicStaking.

func (IPublicStakingCollectEthFuncCall) Args

func (c IPublicStakingCollectEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCollectEthFuncCall) Results

func (c IPublicStakingCollectEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCollectEthToFunc

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

IPublicStakingCollectEthToFunc describes the behavior when the CollectEthTo method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCollectEthToFunc) History

History returns a sequence of IPublicStakingCollectEthToFuncCall objects describing the invocations of this function.

func (*IPublicStakingCollectEthToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectEthTo method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCollectEthToFunc) PushReturn

func (f *IPublicStakingCollectEthToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCollectEthToFunc) SetDefaultHook

SetDefaultHook sets function that is called when the CollectEthTo method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCollectEthToFunc) SetDefaultReturn

func (f *IPublicStakingCollectEthToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCollectEthToFuncCall

type IPublicStakingCollectEthToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCollectEthToFuncCall is an object that describes an invocation of method CollectEthTo on an instance of MockIPublicStaking.

func (IPublicStakingCollectEthToFuncCall) Args

func (c IPublicStakingCollectEthToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCollectEthToFuncCall) Results

func (c IPublicStakingCollectEthToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCollectTokenFunc

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

IPublicStakingCollectTokenFunc describes the behavior when the CollectToken method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCollectTokenFunc) History

History returns a sequence of IPublicStakingCollectTokenFuncCall objects describing the invocations of this function.

func (*IPublicStakingCollectTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectToken method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCollectTokenFunc) PushReturn

func (f *IPublicStakingCollectTokenFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCollectTokenFunc) SetDefaultHook

func (f *IPublicStakingCollectTokenFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CollectToken method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCollectTokenFunc) SetDefaultReturn

func (f *IPublicStakingCollectTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCollectTokenFuncCall

type IPublicStakingCollectTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCollectTokenFuncCall is an object that describes an invocation of method CollectToken on an instance of MockIPublicStaking.

func (IPublicStakingCollectTokenFuncCall) Args

func (c IPublicStakingCollectTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCollectTokenFuncCall) Results

func (c IPublicStakingCollectTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingCollectTokenToFunc

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

IPublicStakingCollectTokenToFunc describes the behavior when the CollectTokenTo method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingCollectTokenToFunc) History

History returns a sequence of IPublicStakingCollectTokenToFuncCall objects describing the invocations of this function.

func (*IPublicStakingCollectTokenToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectTokenTo method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingCollectTokenToFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingCollectTokenToFunc) SetDefaultHook

SetDefaultHook sets function that is called when the CollectTokenTo method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingCollectTokenToFunc) SetDefaultReturn

func (f *IPublicStakingCollectTokenToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingCollectTokenToFuncCall

type IPublicStakingCollectTokenToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingCollectTokenToFuncCall is an object that describes an invocation of method CollectTokenTo on an instance of MockIPublicStaking.

func (IPublicStakingCollectTokenToFuncCall) Args

func (c IPublicStakingCollectTokenToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingCollectTokenToFuncCall) Results

func (c IPublicStakingCollectTokenToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingDepositEthFunc

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

IPublicStakingDepositEthFunc describes the behavior when the DepositEth method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingDepositEthFunc) History

History returns a sequence of IPublicStakingDepositEthFuncCall objects describing the invocations of this function.

func (*IPublicStakingDepositEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the DepositEth method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingDepositEthFunc) PushReturn

func (f *IPublicStakingDepositEthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingDepositEthFunc) SetDefaultHook

func (f *IPublicStakingDepositEthFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DepositEth method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingDepositEthFunc) SetDefaultReturn

func (f *IPublicStakingDepositEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingDepositEthFuncCall

type IPublicStakingDepositEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingDepositEthFuncCall is an object that describes an invocation of method DepositEth on an instance of MockIPublicStaking.

func (IPublicStakingDepositEthFuncCall) Args

func (c IPublicStakingDepositEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingDepositEthFuncCall) Results

func (c IPublicStakingDepositEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingDepositTokenFunc

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

IPublicStakingDepositTokenFunc describes the behavior when the DepositToken method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingDepositTokenFunc) History

History returns a sequence of IPublicStakingDepositTokenFuncCall objects describing the invocations of this function.

func (*IPublicStakingDepositTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the DepositToken method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingDepositTokenFunc) PushReturn

func (f *IPublicStakingDepositTokenFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingDepositTokenFunc) SetDefaultHook

func (f *IPublicStakingDepositTokenFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DepositToken method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingDepositTokenFunc) SetDefaultReturn

func (f *IPublicStakingDepositTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingDepositTokenFuncCall

type IPublicStakingDepositTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingDepositTokenFuncCall is an object that describes an invocation of method DepositToken on an instance of MockIPublicStaking.

func (IPublicStakingDepositTokenFuncCall) Args

func (c IPublicStakingDepositTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingDepositTokenFuncCall) Results

func (c IPublicStakingDepositTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingEstimateAllProfitsFunc added in v0.0.8

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

IPublicStakingEstimateAllProfitsFunc describes the behavior when the EstimateAllProfits method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingEstimateAllProfitsFunc) History added in v0.0.8

History returns a sequence of IPublicStakingEstimateAllProfitsFuncCall objects describing the invocations of this function.

func (*IPublicStakingEstimateAllProfitsFunc) PushHook added in v0.0.8

func (f *IPublicStakingEstimateAllProfitsFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateAllProfits method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingEstimateAllProfitsFunc) PushReturn added in v0.0.8

func (f *IPublicStakingEstimateAllProfitsFunc) PushReturn(r0 struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingEstimateAllProfitsFunc) SetDefaultHook added in v0.0.8

func (f *IPublicStakingEstimateAllProfitsFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, error))

SetDefaultHook sets function that is called when the EstimateAllProfits method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingEstimateAllProfitsFunc) SetDefaultReturn added in v0.0.8

func (f *IPublicStakingEstimateAllProfitsFunc) SetDefaultReturn(r0 struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingEstimateAllProfitsFuncCall added in v0.0.8

type IPublicStakingEstimateAllProfitsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		PayoutEth   *big.Int
		PayoutToken *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingEstimateAllProfitsFuncCall is an object that describes an invocation of method EstimateAllProfits on an instance of MockIPublicStaking.

func (IPublicStakingEstimateAllProfitsFuncCall) Args added in v0.0.8

func (c IPublicStakingEstimateAllProfitsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingEstimateAllProfitsFuncCall) Results added in v0.0.8

func (c IPublicStakingEstimateAllProfitsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingEstimateEthCollectionFunc

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

IPublicStakingEstimateEthCollectionFunc describes the behavior when the EstimateEthCollection method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingEstimateEthCollectionFunc) History

History returns a sequence of IPublicStakingEstimateEthCollectionFuncCall objects describing the invocations of this function.

func (*IPublicStakingEstimateEthCollectionFunc) PushHook

func (f *IPublicStakingEstimateEthCollectionFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateEthCollection method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingEstimateEthCollectionFunc) PushReturn

func (f *IPublicStakingEstimateEthCollectionFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingEstimateEthCollectionFunc) SetDefaultHook

func (f *IPublicStakingEstimateEthCollectionFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateEthCollection method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingEstimateEthCollectionFunc) SetDefaultReturn

func (f *IPublicStakingEstimateEthCollectionFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingEstimateEthCollectionFuncCall

type IPublicStakingEstimateEthCollectionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingEstimateEthCollectionFuncCall is an object that describes an invocation of method EstimateEthCollection on an instance of MockIPublicStaking.

func (IPublicStakingEstimateEthCollectionFuncCall) Args

func (c IPublicStakingEstimateEthCollectionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingEstimateEthCollectionFuncCall) Results

func (c IPublicStakingEstimateEthCollectionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingEstimateExcessEthFunc

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

IPublicStakingEstimateExcessEthFunc describes the behavior when the EstimateExcessEth method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingEstimateExcessEthFunc) History

History returns a sequence of IPublicStakingEstimateExcessEthFuncCall objects describing the invocations of this function.

func (*IPublicStakingEstimateExcessEthFunc) PushHook

func (f *IPublicStakingEstimateExcessEthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateExcessEth method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingEstimateExcessEthFunc) PushReturn

func (f *IPublicStakingEstimateExcessEthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingEstimateExcessEthFunc) SetDefaultHook

func (f *IPublicStakingEstimateExcessEthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateExcessEth method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingEstimateExcessEthFunc) SetDefaultReturn

func (f *IPublicStakingEstimateExcessEthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingEstimateExcessEthFuncCall

type IPublicStakingEstimateExcessEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingEstimateExcessEthFuncCall is an object that describes an invocation of method EstimateExcessEth on an instance of MockIPublicStaking.

func (IPublicStakingEstimateExcessEthFuncCall) Args

func (c IPublicStakingEstimateExcessEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingEstimateExcessEthFuncCall) Results

func (c IPublicStakingEstimateExcessEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingEstimateExcessTokenFunc

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

IPublicStakingEstimateExcessTokenFunc describes the behavior when the EstimateExcessToken method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingEstimateExcessTokenFunc) History

History returns a sequence of IPublicStakingEstimateExcessTokenFuncCall objects describing the invocations of this function.

func (*IPublicStakingEstimateExcessTokenFunc) PushHook

func (f *IPublicStakingEstimateExcessTokenFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateExcessToken method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingEstimateExcessTokenFunc) PushReturn

func (f *IPublicStakingEstimateExcessTokenFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingEstimateExcessTokenFunc) SetDefaultHook

func (f *IPublicStakingEstimateExcessTokenFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateExcessToken method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingEstimateExcessTokenFunc) SetDefaultReturn

func (f *IPublicStakingEstimateExcessTokenFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingEstimateExcessTokenFuncCall

type IPublicStakingEstimateExcessTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingEstimateExcessTokenFuncCall is an object that describes an invocation of method EstimateExcessToken on an instance of MockIPublicStaking.

func (IPublicStakingEstimateExcessTokenFuncCall) Args

func (c IPublicStakingEstimateExcessTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingEstimateExcessTokenFuncCall) Results

func (c IPublicStakingEstimateExcessTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingEstimateTokenCollectionFunc

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

IPublicStakingEstimateTokenCollectionFunc describes the behavior when the EstimateTokenCollection method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingEstimateTokenCollectionFunc) History

History returns a sequence of IPublicStakingEstimateTokenCollectionFuncCall objects describing the invocations of this function.

func (*IPublicStakingEstimateTokenCollectionFunc) PushHook

func (f *IPublicStakingEstimateTokenCollectionFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateTokenCollection method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingEstimateTokenCollectionFunc) PushReturn

func (f *IPublicStakingEstimateTokenCollectionFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingEstimateTokenCollectionFunc) SetDefaultHook

func (f *IPublicStakingEstimateTokenCollectionFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateTokenCollection method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingEstimateTokenCollectionFunc) SetDefaultReturn

func (f *IPublicStakingEstimateTokenCollectionFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingEstimateTokenCollectionFuncCall

type IPublicStakingEstimateTokenCollectionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingEstimateTokenCollectionFuncCall is an object that describes an invocation of method EstimateTokenCollection on an instance of MockIPublicStaking.

func (IPublicStakingEstimateTokenCollectionFuncCall) Args

func (c IPublicStakingEstimateTokenCollectionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingEstimateTokenCollectionFuncCall) Results

func (c IPublicStakingEstimateTokenCollectionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingFilterApprovalForAllFunc

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

IPublicStakingFilterApprovalForAllFunc describes the behavior when the FilterApprovalForAll method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingFilterApprovalForAllFunc) History

History returns a sequence of IPublicStakingFilterApprovalForAllFuncCall objects describing the invocations of this function.

func (*IPublicStakingFilterApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterApprovalForAll method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingFilterApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingFilterApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterApprovalForAll method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingFilterApprovalForAllFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingFilterApprovalForAllFuncCall

type IPublicStakingFilterApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingApprovalForAllIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingFilterApprovalForAllFuncCall is an object that describes an invocation of method FilterApprovalForAll on an instance of MockIPublicStaking.

func (IPublicStakingFilterApprovalForAllFuncCall) Args

func (c IPublicStakingFilterApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingFilterApprovalForAllFuncCall) Results

func (c IPublicStakingFilterApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingFilterApprovalFunc

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

IPublicStakingFilterApprovalFunc describes the behavior when the FilterApproval method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingFilterApprovalFunc) History

History returns a sequence of IPublicStakingFilterApprovalFuncCall objects describing the invocations of this function.

func (*IPublicStakingFilterApprovalFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterApproval method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingFilterApprovalFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingFilterApprovalFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterApproval method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingFilterApprovalFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingFilterApprovalFuncCall

type IPublicStakingFilterApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingApprovalIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingFilterApprovalFuncCall is an object that describes an invocation of method FilterApproval on an instance of MockIPublicStaking.

func (IPublicStakingFilterApprovalFuncCall) Args

func (c IPublicStakingFilterApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingFilterApprovalFuncCall) Results

func (c IPublicStakingFilterApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingFilterInitializedFunc added in v0.0.2

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

IPublicStakingFilterInitializedFunc describes the behavior when the FilterInitialized method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingFilterInitializedFunc) History added in v0.0.2

History returns a sequence of IPublicStakingFilterInitializedFuncCall objects describing the invocations of this function.

func (*IPublicStakingFilterInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the FilterInitialized method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingFilterInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingFilterInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the FilterInitialized method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingFilterInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingFilterInitializedFuncCall added in v0.0.2

type IPublicStakingFilterInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingInitializedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingFilterInitializedFuncCall is an object that describes an invocation of method FilterInitialized on an instance of MockIPublicStaking.

func (IPublicStakingFilterInitializedFuncCall) Args added in v0.0.2

func (c IPublicStakingFilterInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingFilterInitializedFuncCall) Results added in v0.0.2

func (c IPublicStakingFilterInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingFilterTransferFunc

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

IPublicStakingFilterTransferFunc describes the behavior when the FilterTransfer method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingFilterTransferFunc) History

History returns a sequence of IPublicStakingFilterTransferFuncCall objects describing the invocations of this function.

func (*IPublicStakingFilterTransferFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterTransfer method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingFilterTransferFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingFilterTransferFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterTransfer method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingFilterTransferFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingFilterTransferFuncCall

type IPublicStakingFilterTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingTransferIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingFilterTransferFuncCall is an object that describes an invocation of method FilterTransfer on an instance of MockIPublicStaking.

func (IPublicStakingFilterTransferFuncCall) Args

func (c IPublicStakingFilterTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingFilterTransferFuncCall) Results

func (c IPublicStakingFilterTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetAccumulatorScaleFactorFunc

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

IPublicStakingGetAccumulatorScaleFactorFunc describes the behavior when the GetAccumulatorScaleFactor method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetAccumulatorScaleFactorFunc) History

History returns a sequence of IPublicStakingGetAccumulatorScaleFactorFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetAccumulatorScaleFactorFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetAccumulatorScaleFactor method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetAccumulatorScaleFactorFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetAccumulatorScaleFactorFunc) SetDefaultHook

func (f *IPublicStakingGetAccumulatorScaleFactorFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetAccumulatorScaleFactor method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetAccumulatorScaleFactorFunc) SetDefaultReturn

func (f *IPublicStakingGetAccumulatorScaleFactorFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetAccumulatorScaleFactorFuncCall

type IPublicStakingGetAccumulatorScaleFactorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetAccumulatorScaleFactorFuncCall is an object that describes an invocation of method GetAccumulatorScaleFactor on an instance of MockIPublicStaking.

func (IPublicStakingGetAccumulatorScaleFactorFuncCall) Args

func (c IPublicStakingGetAccumulatorScaleFactorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetAccumulatorScaleFactorFuncCall) Results

func (c IPublicStakingGetAccumulatorScaleFactorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetApprovedFunc

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

IPublicStakingGetApprovedFunc describes the behavior when the GetApproved method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetApprovedFunc) History

History returns a sequence of IPublicStakingGetApprovedFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetApprovedFunc) PushHook

func (f *IPublicStakingGetApprovedFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetApproved method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetApprovedFunc) PushReturn

func (f *IPublicStakingGetApprovedFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetApprovedFunc) SetDefaultHook

func (f *IPublicStakingGetApprovedFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

SetDefaultHook sets function that is called when the GetApproved method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetApprovedFunc) SetDefaultReturn

func (f *IPublicStakingGetApprovedFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetApprovedFuncCall

type IPublicStakingGetApprovedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetApprovedFuncCall is an object that describes an invocation of method GetApproved on an instance of MockIPublicStaking.

func (IPublicStakingGetApprovedFuncCall) Args

func (c IPublicStakingGetApprovedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetApprovedFuncCall) Results

func (c IPublicStakingGetApprovedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetEthAccumulatorFunc

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

IPublicStakingGetEthAccumulatorFunc describes the behavior when the GetEthAccumulator method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetEthAccumulatorFunc) History

History returns a sequence of IPublicStakingGetEthAccumulatorFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetEthAccumulatorFunc) PushHook

func (f *IPublicStakingGetEthAccumulatorFunc) PushHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEthAccumulator method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetEthAccumulatorFunc) PushReturn

func (f *IPublicStakingGetEthAccumulatorFunc) PushReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetEthAccumulatorFunc) SetDefaultHook

func (f *IPublicStakingGetEthAccumulatorFunc) SetDefaultHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

SetDefaultHook sets function that is called when the GetEthAccumulator method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetEthAccumulatorFunc) SetDefaultReturn

func (f *IPublicStakingGetEthAccumulatorFunc) SetDefaultReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetEthAccumulatorFuncCall

type IPublicStakingGetEthAccumulatorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		Accumulator *big.Int
		Slush       *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetEthAccumulatorFuncCall is an object that describes an invocation of method GetEthAccumulator on an instance of MockIPublicStaking.

func (IPublicStakingGetEthAccumulatorFuncCall) Args

func (c IPublicStakingGetEthAccumulatorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetEthAccumulatorFuncCall) Results

func (c IPublicStakingGetEthAccumulatorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetLatestMintedPositionIDFunc added in v0.0.5

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

IPublicStakingGetLatestMintedPositionIDFunc describes the behavior when the GetLatestMintedPositionID method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetLatestMintedPositionIDFunc) History added in v0.0.5

History returns a sequence of IPublicStakingGetLatestMintedPositionIDFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetLatestMintedPositionIDFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestMintedPositionID method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetLatestMintedPositionIDFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetLatestMintedPositionIDFunc) SetDefaultHook added in v0.0.5

func (f *IPublicStakingGetLatestMintedPositionIDFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetLatestMintedPositionID method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetLatestMintedPositionIDFunc) SetDefaultReturn added in v0.0.5

func (f *IPublicStakingGetLatestMintedPositionIDFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetLatestMintedPositionIDFuncCall added in v0.0.5

type IPublicStakingGetLatestMintedPositionIDFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetLatestMintedPositionIDFuncCall is an object that describes an invocation of method GetLatestMintedPositionID on an instance of MockIPublicStaking.

func (IPublicStakingGetLatestMintedPositionIDFuncCall) Args added in v0.0.5

func (c IPublicStakingGetLatestMintedPositionIDFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetLatestMintedPositionIDFuncCall) Results added in v0.0.5

func (c IPublicStakingGetLatestMintedPositionIDFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetMaxGovernanceLockFunc added in v0.0.4

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

IPublicStakingGetMaxGovernanceLockFunc describes the behavior when the GetMaxGovernanceLock method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetMaxGovernanceLockFunc) History added in v0.0.4

History returns a sequence of IPublicStakingGetMaxGovernanceLockFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetMaxGovernanceLockFunc) PushHook added in v0.0.4

func (f *IPublicStakingGetMaxGovernanceLockFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMaxGovernanceLock method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetMaxGovernanceLockFunc) PushReturn added in v0.0.4

func (f *IPublicStakingGetMaxGovernanceLockFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetMaxGovernanceLockFunc) SetDefaultHook added in v0.0.4

func (f *IPublicStakingGetMaxGovernanceLockFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMaxGovernanceLock method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetMaxGovernanceLockFunc) SetDefaultReturn added in v0.0.4

func (f *IPublicStakingGetMaxGovernanceLockFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetMaxGovernanceLockFuncCall added in v0.0.4

type IPublicStakingGetMaxGovernanceLockFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetMaxGovernanceLockFuncCall is an object that describes an invocation of method GetMaxGovernanceLock on an instance of MockIPublicStaking.

func (IPublicStakingGetMaxGovernanceLockFuncCall) Args added in v0.0.4

func (c IPublicStakingGetMaxGovernanceLockFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetMaxGovernanceLockFuncCall) Results added in v0.0.4

func (c IPublicStakingGetMaxGovernanceLockFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetMaxMintLockFunc

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

IPublicStakingGetMaxMintLockFunc describes the behavior when the GetMaxMintLock method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetMaxMintLockFunc) History

History returns a sequence of IPublicStakingGetMaxMintLockFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetMaxMintLockFunc) PushHook

func (f *IPublicStakingGetMaxMintLockFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMaxMintLock method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetMaxMintLockFunc) PushReturn

func (f *IPublicStakingGetMaxMintLockFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetMaxMintLockFunc) SetDefaultHook

func (f *IPublicStakingGetMaxMintLockFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMaxMintLock method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetMaxMintLockFunc) SetDefaultReturn

func (f *IPublicStakingGetMaxMintLockFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetMaxMintLockFuncCall

type IPublicStakingGetMaxMintLockFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetMaxMintLockFuncCall is an object that describes an invocation of method GetMaxMintLock on an instance of MockIPublicStaking.

func (IPublicStakingGetMaxMintLockFuncCall) Args

func (c IPublicStakingGetMaxMintLockFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetMaxMintLockFuncCall) Results

func (c IPublicStakingGetMaxMintLockFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetMetamorphicContractAddressFunc

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

IPublicStakingGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetMetamorphicContractAddressFunc) History

History returns a sequence of IPublicStakingGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetMetamorphicContractAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetMetamorphicContractAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetMetamorphicContractAddressFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetMetamorphicContractAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetMetamorphicContractAddressFuncCall

type IPublicStakingGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIPublicStaking.

func (IPublicStakingGetMetamorphicContractAddressFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetMetamorphicContractAddressFuncCall) Results

func (c IPublicStakingGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetPositionFunc

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

IPublicStakingGetPositionFunc describes the behavior when the GetPosition method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetPositionFunc) History

History returns a sequence of IPublicStakingGetPositionFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetPositionFunc) PushHook

func (f *IPublicStakingGetPositionFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPosition method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetPositionFunc) PushReturn

func (f *IPublicStakingGetPositionFunc) PushReturn(r0 struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetPositionFunc) SetDefaultHook

func (f *IPublicStakingGetPositionFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, error))

SetDefaultHook sets function that is called when the GetPosition method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetPositionFunc) SetDefaultReturn

func (f *IPublicStakingGetPositionFunc) SetDefaultReturn(r0 struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetPositionFuncCall

type IPublicStakingGetPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		Shares            *big.Int
		FreeAfter         *big.Int
		WithdrawFreeAfter *big.Int
		AccumulatorEth    *big.Int
		AccumulatorToken  *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetPositionFuncCall is an object that describes an invocation of method GetPosition on an instance of MockIPublicStaking.

func (IPublicStakingGetPositionFuncCall) Args

func (c IPublicStakingGetPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetPositionFuncCall) Results

func (c IPublicStakingGetPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetTokenAccumulatorFunc

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

IPublicStakingGetTokenAccumulatorFunc describes the behavior when the GetTokenAccumulator method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetTokenAccumulatorFunc) History

History returns a sequence of IPublicStakingGetTokenAccumulatorFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetTokenAccumulatorFunc) PushHook

func (f *IPublicStakingGetTokenAccumulatorFunc) PushHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTokenAccumulator method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetTokenAccumulatorFunc) PushReturn

func (f *IPublicStakingGetTokenAccumulatorFunc) PushReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetTokenAccumulatorFunc) SetDefaultHook

func (f *IPublicStakingGetTokenAccumulatorFunc) SetDefaultHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

SetDefaultHook sets function that is called when the GetTokenAccumulator method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetTokenAccumulatorFunc) SetDefaultReturn

func (f *IPublicStakingGetTokenAccumulatorFunc) SetDefaultReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetTokenAccumulatorFuncCall

type IPublicStakingGetTokenAccumulatorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		Accumulator *big.Int
		Slush       *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetTokenAccumulatorFuncCall is an object that describes an invocation of method GetTokenAccumulator on an instance of MockIPublicStaking.

func (IPublicStakingGetTokenAccumulatorFuncCall) Args

func (c IPublicStakingGetTokenAccumulatorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetTokenAccumulatorFuncCall) Results

func (c IPublicStakingGetTokenAccumulatorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetTotalReserveALCAFunc added in v0.0.8

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

IPublicStakingGetTotalReserveALCAFunc describes the behavior when the GetTotalReserveALCA method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetTotalReserveALCAFunc) History added in v0.0.8

History returns a sequence of IPublicStakingGetTotalReserveALCAFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetTotalReserveALCAFunc) PushHook added in v0.0.8

func (f *IPublicStakingGetTotalReserveALCAFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalReserveALCA method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetTotalReserveALCAFunc) PushReturn added in v0.0.8

func (f *IPublicStakingGetTotalReserveALCAFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetTotalReserveALCAFunc) SetDefaultHook added in v0.0.8

func (f *IPublicStakingGetTotalReserveALCAFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalReserveALCA method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetTotalReserveALCAFunc) SetDefaultReturn added in v0.0.8

func (f *IPublicStakingGetTotalReserveALCAFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetTotalReserveALCAFuncCall added in v0.0.8

type IPublicStakingGetTotalReserveALCAFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetTotalReserveALCAFuncCall is an object that describes an invocation of method GetTotalReserveALCA on an instance of MockIPublicStaking.

func (IPublicStakingGetTotalReserveALCAFuncCall) Args added in v0.0.8

func (c IPublicStakingGetTotalReserveALCAFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetTotalReserveALCAFuncCall) Results added in v0.0.8

func (c IPublicStakingGetTotalReserveALCAFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetTotalReserveEthFunc

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

IPublicStakingGetTotalReserveEthFunc describes the behavior when the GetTotalReserveEth method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetTotalReserveEthFunc) History

History returns a sequence of IPublicStakingGetTotalReserveEthFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetTotalReserveEthFunc) PushHook

func (f *IPublicStakingGetTotalReserveEthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalReserveEth method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetTotalReserveEthFunc) PushReturn

func (f *IPublicStakingGetTotalReserveEthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetTotalReserveEthFunc) SetDefaultHook

func (f *IPublicStakingGetTotalReserveEthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalReserveEth method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetTotalReserveEthFunc) SetDefaultReturn

func (f *IPublicStakingGetTotalReserveEthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetTotalReserveEthFuncCall

type IPublicStakingGetTotalReserveEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetTotalReserveEthFuncCall is an object that describes an invocation of method GetTotalReserveEth on an instance of MockIPublicStaking.

func (IPublicStakingGetTotalReserveEthFuncCall) Args

func (c IPublicStakingGetTotalReserveEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetTotalReserveEthFuncCall) Results

func (c IPublicStakingGetTotalReserveEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingGetTotalSharesFunc

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

IPublicStakingGetTotalSharesFunc describes the behavior when the GetTotalShares method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingGetTotalSharesFunc) History

History returns a sequence of IPublicStakingGetTotalSharesFuncCall objects describing the invocations of this function.

func (*IPublicStakingGetTotalSharesFunc) PushHook

func (f *IPublicStakingGetTotalSharesFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalShares method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingGetTotalSharesFunc) PushReturn

func (f *IPublicStakingGetTotalSharesFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingGetTotalSharesFunc) SetDefaultHook

func (f *IPublicStakingGetTotalSharesFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalShares method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingGetTotalSharesFunc) SetDefaultReturn

func (f *IPublicStakingGetTotalSharesFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingGetTotalSharesFuncCall

type IPublicStakingGetTotalSharesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingGetTotalSharesFuncCall is an object that describes an invocation of method GetTotalShares on an instance of MockIPublicStaking.

func (IPublicStakingGetTotalSharesFuncCall) Args

func (c IPublicStakingGetTotalSharesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingGetTotalSharesFuncCall) Results

func (c IPublicStakingGetTotalSharesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingInitializeFunc

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

IPublicStakingInitializeFunc describes the behavior when the Initialize method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingInitializeFunc) History

History returns a sequence of IPublicStakingInitializeFuncCall objects describing the invocations of this function.

func (*IPublicStakingInitializeFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Initialize method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingInitializeFunc) PushReturn

func (f *IPublicStakingInitializeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingInitializeFunc) SetDefaultHook

func (f *IPublicStakingInitializeFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Initialize method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingInitializeFunc) SetDefaultReturn

func (f *IPublicStakingInitializeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingInitializeFuncCall

type IPublicStakingInitializeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingInitializeFuncCall is an object that describes an invocation of method Initialize on an instance of MockIPublicStaking.

func (IPublicStakingInitializeFuncCall) Args

func (c IPublicStakingInitializeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingInitializeFuncCall) Results

func (c IPublicStakingInitializeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingIsApprovedForAllFunc

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

IPublicStakingIsApprovedForAllFunc describes the behavior when the IsApprovedForAll method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingIsApprovedForAllFunc) History

History returns a sequence of IPublicStakingIsApprovedForAllFuncCall objects describing the invocations of this function.

func (*IPublicStakingIsApprovedForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the IsApprovedForAll method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingIsApprovedForAllFunc) PushReturn

func (f *IPublicStakingIsApprovedForAllFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingIsApprovedForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the IsApprovedForAll method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingIsApprovedForAllFunc) SetDefaultReturn

func (f *IPublicStakingIsApprovedForAllFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingIsApprovedForAllFuncCall

type IPublicStakingIsApprovedForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingIsApprovedForAllFuncCall is an object that describes an invocation of method IsApprovedForAll on an instance of MockIPublicStaking.

func (IPublicStakingIsApprovedForAllFuncCall) Args

func (c IPublicStakingIsApprovedForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingIsApprovedForAllFuncCall) Results

func (c IPublicStakingIsApprovedForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingLockOwnPositionFunc

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

IPublicStakingLockOwnPositionFunc describes the behavior when the LockOwnPosition method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingLockOwnPositionFunc) History

History returns a sequence of IPublicStakingLockOwnPositionFuncCall objects describing the invocations of this function.

func (*IPublicStakingLockOwnPositionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the LockOwnPosition method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingLockOwnPositionFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingLockOwnPositionFunc) SetDefaultHook

func (f *IPublicStakingLockOwnPositionFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the LockOwnPosition method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingLockOwnPositionFunc) SetDefaultReturn

func (f *IPublicStakingLockOwnPositionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingLockOwnPositionFuncCall

type IPublicStakingLockOwnPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingLockOwnPositionFuncCall is an object that describes an invocation of method LockOwnPosition on an instance of MockIPublicStaking.

func (IPublicStakingLockOwnPositionFuncCall) Args

func (c IPublicStakingLockOwnPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingLockOwnPositionFuncCall) Results

func (c IPublicStakingLockOwnPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingLockPositionFunc

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

IPublicStakingLockPositionFunc describes the behavior when the LockPosition method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingLockPositionFunc) History

History returns a sequence of IPublicStakingLockPositionFuncCall objects describing the invocations of this function.

func (*IPublicStakingLockPositionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the LockPosition method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingLockPositionFunc) PushReturn

func (f *IPublicStakingLockPositionFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingLockPositionFunc) SetDefaultHook

SetDefaultHook sets function that is called when the LockPosition method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingLockPositionFunc) SetDefaultReturn

func (f *IPublicStakingLockPositionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingLockPositionFuncCall

type IPublicStakingLockPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingLockPositionFuncCall is an object that describes an invocation of method LockPosition on an instance of MockIPublicStaking.

func (IPublicStakingLockPositionFuncCall) Args

func (c IPublicStakingLockPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingLockPositionFuncCall) Results

func (c IPublicStakingLockPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingLockWithdrawFunc

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

IPublicStakingLockWithdrawFunc describes the behavior when the LockWithdraw method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingLockWithdrawFunc) History

History returns a sequence of IPublicStakingLockWithdrawFuncCall objects describing the invocations of this function.

func (*IPublicStakingLockWithdrawFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the LockWithdraw method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingLockWithdrawFunc) PushReturn

func (f *IPublicStakingLockWithdrawFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingLockWithdrawFunc) SetDefaultHook

func (f *IPublicStakingLockWithdrawFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the LockWithdraw method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingLockWithdrawFunc) SetDefaultReturn

func (f *IPublicStakingLockWithdrawFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingLockWithdrawFuncCall

type IPublicStakingLockWithdrawFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingLockWithdrawFuncCall is an object that describes an invocation of method LockWithdraw on an instance of MockIPublicStaking.

func (IPublicStakingLockWithdrawFuncCall) Args

func (c IPublicStakingLockWithdrawFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingLockWithdrawFuncCall) Results

func (c IPublicStakingLockWithdrawFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingMintFunc

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

IPublicStakingMintFunc describes the behavior when the Mint method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingMintFunc) History

History returns a sequence of IPublicStakingMintFuncCall objects describing the invocations of this function.

func (*IPublicStakingMintFunc) PushHook

func (f *IPublicStakingMintFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Mint method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingMintFunc) PushReturn

func (f *IPublicStakingMintFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingMintFunc) SetDefaultHook

func (f *IPublicStakingMintFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Mint method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingMintFunc) SetDefaultReturn

func (f *IPublicStakingMintFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingMintFuncCall

type IPublicStakingMintFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingMintFuncCall is an object that describes an invocation of method Mint on an instance of MockIPublicStaking.

func (IPublicStakingMintFuncCall) Args

func (c IPublicStakingMintFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingMintFuncCall) Results

func (c IPublicStakingMintFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingMintToFunc

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

IPublicStakingMintToFunc describes the behavior when the MintTo method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingMintToFunc) History

History returns a sequence of IPublicStakingMintToFuncCall objects describing the invocations of this function.

func (*IPublicStakingMintToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the MintTo method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingMintToFunc) PushReturn

func (f *IPublicStakingMintToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingMintToFunc) SetDefaultHook

func (f *IPublicStakingMintToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MintTo method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingMintToFunc) SetDefaultReturn

func (f *IPublicStakingMintToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingMintToFuncCall

type IPublicStakingMintToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingMintToFuncCall is an object that describes an invocation of method MintTo on an instance of MockIPublicStaking.

func (IPublicStakingMintToFuncCall) Args

func (c IPublicStakingMintToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingMintToFuncCall) Results

func (c IPublicStakingMintToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingNameFunc

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

IPublicStakingNameFunc describes the behavior when the Name method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingNameFunc) History

History returns a sequence of IPublicStakingNameFuncCall objects describing the invocations of this function.

func (*IPublicStakingNameFunc) PushHook

func (f *IPublicStakingNameFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Name method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingNameFunc) PushReturn

func (f *IPublicStakingNameFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingNameFunc) SetDefaultHook

func (f *IPublicStakingNameFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Name method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingNameFunc) SetDefaultReturn

func (f *IPublicStakingNameFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingNameFuncCall

type IPublicStakingNameFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingNameFuncCall is an object that describes an invocation of method Name on an instance of MockIPublicStaking.

func (IPublicStakingNameFuncCall) Args

func (c IPublicStakingNameFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingNameFuncCall) Results

func (c IPublicStakingNameFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingOwnerOfFunc

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

IPublicStakingOwnerOfFunc describes the behavior when the OwnerOf method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingOwnerOfFunc) History

History returns a sequence of IPublicStakingOwnerOfFuncCall objects describing the invocations of this function.

func (*IPublicStakingOwnerOfFunc) PushHook

func (f *IPublicStakingOwnerOfFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the OwnerOf method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingOwnerOfFunc) PushReturn

func (f *IPublicStakingOwnerOfFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingOwnerOfFunc) SetDefaultHook

func (f *IPublicStakingOwnerOfFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

SetDefaultHook sets function that is called when the OwnerOf method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingOwnerOfFunc) SetDefaultReturn

func (f *IPublicStakingOwnerOfFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingOwnerOfFuncCall

type IPublicStakingOwnerOfFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingOwnerOfFuncCall is an object that describes an invocation of method OwnerOf on an instance of MockIPublicStaking.

func (IPublicStakingOwnerOfFuncCall) Args

func (c IPublicStakingOwnerOfFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingOwnerOfFuncCall) Results

func (c IPublicStakingOwnerOfFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingParseApprovalForAllFunc

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

IPublicStakingParseApprovalForAllFunc describes the behavior when the ParseApprovalForAll method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingParseApprovalForAllFunc) History

History returns a sequence of IPublicStakingParseApprovalForAllFuncCall objects describing the invocations of this function.

func (*IPublicStakingParseApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseApprovalForAll method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingParseApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingParseApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseApprovalForAll method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingParseApprovalForAllFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingParseApprovalForAllFuncCall

type IPublicStakingParseApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingApprovalForAll
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingParseApprovalForAllFuncCall is an object that describes an invocation of method ParseApprovalForAll on an instance of MockIPublicStaking.

func (IPublicStakingParseApprovalForAllFuncCall) Args

func (c IPublicStakingParseApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingParseApprovalForAllFuncCall) Results

func (c IPublicStakingParseApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingParseApprovalFunc

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

IPublicStakingParseApprovalFunc describes the behavior when the ParseApproval method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingParseApprovalFunc) History

History returns a sequence of IPublicStakingParseApprovalFuncCall objects describing the invocations of this function.

func (*IPublicStakingParseApprovalFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseApproval method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingParseApprovalFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingParseApprovalFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseApproval method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingParseApprovalFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingParseApprovalFuncCall

type IPublicStakingParseApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingApproval
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingParseApprovalFuncCall is an object that describes an invocation of method ParseApproval on an instance of MockIPublicStaking.

func (IPublicStakingParseApprovalFuncCall) Args

func (c IPublicStakingParseApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingParseApprovalFuncCall) Results

func (c IPublicStakingParseApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingParseInitializedFunc added in v0.0.2

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

IPublicStakingParseInitializedFunc describes the behavior when the ParseInitialized method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingParseInitializedFunc) History added in v0.0.2

History returns a sequence of IPublicStakingParseInitializedFuncCall objects describing the invocations of this function.

func (*IPublicStakingParseInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the ParseInitialized method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingParseInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingParseInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the ParseInitialized method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingParseInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingParseInitializedFuncCall added in v0.0.2

type IPublicStakingParseInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingInitialized
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingParseInitializedFuncCall is an object that describes an invocation of method ParseInitialized on an instance of MockIPublicStaking.

func (IPublicStakingParseInitializedFuncCall) Args added in v0.0.2

func (c IPublicStakingParseInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingParseInitializedFuncCall) Results added in v0.0.2

func (c IPublicStakingParseInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingParseTransferFunc

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

IPublicStakingParseTransferFunc describes the behavior when the ParseTransfer method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingParseTransferFunc) History

History returns a sequence of IPublicStakingParseTransferFuncCall objects describing the invocations of this function.

func (*IPublicStakingParseTransferFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseTransfer method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingParseTransferFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingParseTransferFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseTransfer method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingParseTransferFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingParseTransferFuncCall

type IPublicStakingParseTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.PublicStakingTransfer
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingParseTransferFuncCall is an object that describes an invocation of method ParseTransfer on an instance of MockIPublicStaking.

func (IPublicStakingParseTransferFuncCall) Args

func (c IPublicStakingParseTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingParseTransferFuncCall) Results

func (c IPublicStakingParseTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSafeTransferFrom0Func

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

IPublicStakingSafeTransferFrom0Func describes the behavior when the SafeTransferFrom0 method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSafeTransferFrom0Func) History

History returns a sequence of IPublicStakingSafeTransferFrom0FuncCall objects describing the invocations of this function.

func (*IPublicStakingSafeTransferFrom0Func) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SafeTransferFrom0 method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSafeTransferFrom0Func) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSafeTransferFrom0Func) SetDefaultHook

SetDefaultHook sets function that is called when the SafeTransferFrom0 method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSafeTransferFrom0Func) SetDefaultReturn

func (f *IPublicStakingSafeTransferFrom0Func) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSafeTransferFrom0FuncCall

type IPublicStakingSafeTransferFrom0FuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSafeTransferFrom0FuncCall is an object that describes an invocation of method SafeTransferFrom0 on an instance of MockIPublicStaking.

func (IPublicStakingSafeTransferFrom0FuncCall) Args

func (c IPublicStakingSafeTransferFrom0FuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSafeTransferFrom0FuncCall) Results

func (c IPublicStakingSafeTransferFrom0FuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSafeTransferFromFunc

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

IPublicStakingSafeTransferFromFunc describes the behavior when the SafeTransferFrom method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSafeTransferFromFunc) History

History returns a sequence of IPublicStakingSafeTransferFromFuncCall objects describing the invocations of this function.

func (*IPublicStakingSafeTransferFromFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SafeTransferFrom method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSafeTransferFromFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSafeTransferFromFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SafeTransferFrom method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSafeTransferFromFunc) SetDefaultReturn

func (f *IPublicStakingSafeTransferFromFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSafeTransferFromFuncCall

type IPublicStakingSafeTransferFromFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSafeTransferFromFuncCall is an object that describes an invocation of method SafeTransferFrom on an instance of MockIPublicStaking.

func (IPublicStakingSafeTransferFromFuncCall) Args

func (c IPublicStakingSafeTransferFromFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSafeTransferFromFuncCall) Results

func (c IPublicStakingSafeTransferFromFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSetApprovalForAllFunc

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

IPublicStakingSetApprovalForAllFunc describes the behavior when the SetApprovalForAll method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSetApprovalForAllFunc) History

History returns a sequence of IPublicStakingSetApprovalForAllFuncCall objects describing the invocations of this function.

func (*IPublicStakingSetApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetApprovalForAll method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSetApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSetApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SetApprovalForAll method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSetApprovalForAllFunc) SetDefaultReturn

func (f *IPublicStakingSetApprovalForAllFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSetApprovalForAllFuncCall

type IPublicStakingSetApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 bool
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSetApprovalForAllFuncCall is an object that describes an invocation of method SetApprovalForAll on an instance of MockIPublicStaking.

func (IPublicStakingSetApprovalForAllFuncCall) Args

func (c IPublicStakingSetApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSetApprovalForAllFuncCall) Results

func (c IPublicStakingSetApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSkimExcessEthFunc

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

IPublicStakingSkimExcessEthFunc describes the behavior when the SkimExcessEth method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSkimExcessEthFunc) History

History returns a sequence of IPublicStakingSkimExcessEthFuncCall objects describing the invocations of this function.

func (*IPublicStakingSkimExcessEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SkimExcessEth method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSkimExcessEthFunc) PushReturn

func (f *IPublicStakingSkimExcessEthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSkimExcessEthFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SkimExcessEth method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSkimExcessEthFunc) SetDefaultReturn

func (f *IPublicStakingSkimExcessEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSkimExcessEthFuncCall

type IPublicStakingSkimExcessEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSkimExcessEthFuncCall is an object that describes an invocation of method SkimExcessEth on an instance of MockIPublicStaking.

func (IPublicStakingSkimExcessEthFuncCall) Args

func (c IPublicStakingSkimExcessEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSkimExcessEthFuncCall) Results

func (c IPublicStakingSkimExcessEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSkimExcessTokenFunc

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

IPublicStakingSkimExcessTokenFunc describes the behavior when the SkimExcessToken method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSkimExcessTokenFunc) History

History returns a sequence of IPublicStakingSkimExcessTokenFuncCall objects describing the invocations of this function.

func (*IPublicStakingSkimExcessTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SkimExcessToken method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSkimExcessTokenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSkimExcessTokenFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SkimExcessToken method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSkimExcessTokenFunc) SetDefaultReturn

func (f *IPublicStakingSkimExcessTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSkimExcessTokenFuncCall

type IPublicStakingSkimExcessTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSkimExcessTokenFuncCall is an object that describes an invocation of method SkimExcessToken on an instance of MockIPublicStaking.

func (IPublicStakingSkimExcessTokenFuncCall) Args

func (c IPublicStakingSkimExcessTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSkimExcessTokenFuncCall) Results

func (c IPublicStakingSkimExcessTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSupportsInterfaceFunc

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

IPublicStakingSupportsInterfaceFunc describes the behavior when the SupportsInterface method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSupportsInterfaceFunc) History

History returns a sequence of IPublicStakingSupportsInterfaceFuncCall objects describing the invocations of this function.

func (*IPublicStakingSupportsInterfaceFunc) PushHook

func (f *IPublicStakingSupportsInterfaceFunc) PushHook(hook func(*bind.CallOpts, [4]byte) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the SupportsInterface method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSupportsInterfaceFunc) PushReturn

func (f *IPublicStakingSupportsInterfaceFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSupportsInterfaceFunc) SetDefaultHook

func (f *IPublicStakingSupportsInterfaceFunc) SetDefaultHook(hook func(*bind.CallOpts, [4]byte) (bool, error))

SetDefaultHook sets function that is called when the SupportsInterface method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSupportsInterfaceFunc) SetDefaultReturn

func (f *IPublicStakingSupportsInterfaceFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSupportsInterfaceFuncCall

type IPublicStakingSupportsInterfaceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [4]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSupportsInterfaceFuncCall is an object that describes an invocation of method SupportsInterface on an instance of MockIPublicStaking.

func (IPublicStakingSupportsInterfaceFuncCall) Args

func (c IPublicStakingSupportsInterfaceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSupportsInterfaceFuncCall) Results

func (c IPublicStakingSupportsInterfaceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingSymbolFunc

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

IPublicStakingSymbolFunc describes the behavior when the Symbol method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingSymbolFunc) History

History returns a sequence of IPublicStakingSymbolFuncCall objects describing the invocations of this function.

func (*IPublicStakingSymbolFunc) PushHook

func (f *IPublicStakingSymbolFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Symbol method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingSymbolFunc) PushReturn

func (f *IPublicStakingSymbolFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingSymbolFunc) SetDefaultHook

func (f *IPublicStakingSymbolFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Symbol method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingSymbolFunc) SetDefaultReturn

func (f *IPublicStakingSymbolFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingSymbolFuncCall

type IPublicStakingSymbolFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingSymbolFuncCall is an object that describes an invocation of method Symbol on an instance of MockIPublicStaking.

func (IPublicStakingSymbolFuncCall) Args

func (c IPublicStakingSymbolFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingSymbolFuncCall) Results

func (c IPublicStakingSymbolFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingTokenByIndexFunc added in v0.0.5

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

IPublicStakingTokenByIndexFunc describes the behavior when the TokenByIndex method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingTokenByIndexFunc) History added in v0.0.5

History returns a sequence of IPublicStakingTokenByIndexFuncCall objects describing the invocations of this function.

func (*IPublicStakingTokenByIndexFunc) PushHook added in v0.0.5

func (f *IPublicStakingTokenByIndexFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the TokenByIndex method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingTokenByIndexFunc) PushReturn added in v0.0.5

func (f *IPublicStakingTokenByIndexFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingTokenByIndexFunc) SetDefaultHook added in v0.0.5

func (f *IPublicStakingTokenByIndexFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the TokenByIndex method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingTokenByIndexFunc) SetDefaultReturn added in v0.0.5

func (f *IPublicStakingTokenByIndexFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingTokenByIndexFuncCall added in v0.0.5

type IPublicStakingTokenByIndexFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingTokenByIndexFuncCall is an object that describes an invocation of method TokenByIndex on an instance of MockIPublicStaking.

func (IPublicStakingTokenByIndexFuncCall) Args added in v0.0.5

func (c IPublicStakingTokenByIndexFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingTokenByIndexFuncCall) Results added in v0.0.5

func (c IPublicStakingTokenByIndexFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingTokenOfOwnerByIndexFunc added in v0.0.5

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

IPublicStakingTokenOfOwnerByIndexFunc describes the behavior when the TokenOfOwnerByIndex method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingTokenOfOwnerByIndexFunc) History added in v0.0.5

History returns a sequence of IPublicStakingTokenOfOwnerByIndexFuncCall objects describing the invocations of this function.

func (*IPublicStakingTokenOfOwnerByIndexFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the TokenOfOwnerByIndex method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingTokenOfOwnerByIndexFunc) PushReturn added in v0.0.5

func (f *IPublicStakingTokenOfOwnerByIndexFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingTokenOfOwnerByIndexFunc) SetDefaultHook added in v0.0.5

func (f *IPublicStakingTokenOfOwnerByIndexFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the TokenOfOwnerByIndex method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingTokenOfOwnerByIndexFunc) SetDefaultReturn added in v0.0.5

func (f *IPublicStakingTokenOfOwnerByIndexFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingTokenOfOwnerByIndexFuncCall added in v0.0.5

type IPublicStakingTokenOfOwnerByIndexFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingTokenOfOwnerByIndexFuncCall is an object that describes an invocation of method TokenOfOwnerByIndex on an instance of MockIPublicStaking.

func (IPublicStakingTokenOfOwnerByIndexFuncCall) Args added in v0.0.5

func (c IPublicStakingTokenOfOwnerByIndexFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingTokenOfOwnerByIndexFuncCall) Results added in v0.0.5

func (c IPublicStakingTokenOfOwnerByIndexFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingTokenURIFunc

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

IPublicStakingTokenURIFunc describes the behavior when the TokenURI method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingTokenURIFunc) History

History returns a sequence of IPublicStakingTokenURIFuncCall objects describing the invocations of this function.

func (*IPublicStakingTokenURIFunc) PushHook

func (f *IPublicStakingTokenURIFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the TokenURI method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingTokenURIFunc) PushReturn

func (f *IPublicStakingTokenURIFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingTokenURIFunc) SetDefaultHook

func (f *IPublicStakingTokenURIFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (string, error))

SetDefaultHook sets function that is called when the TokenURI method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingTokenURIFunc) SetDefaultReturn

func (f *IPublicStakingTokenURIFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingTokenURIFuncCall

type IPublicStakingTokenURIFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingTokenURIFuncCall is an object that describes an invocation of method TokenURI on an instance of MockIPublicStaking.

func (IPublicStakingTokenURIFuncCall) Args

func (c IPublicStakingTokenURIFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingTokenURIFuncCall) Results

func (c IPublicStakingTokenURIFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingTotalSupplyFunc added in v0.0.5

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

IPublicStakingTotalSupplyFunc describes the behavior when the TotalSupply method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingTotalSupplyFunc) History added in v0.0.5

History returns a sequence of IPublicStakingTotalSupplyFuncCall objects describing the invocations of this function.

func (*IPublicStakingTotalSupplyFunc) PushHook added in v0.0.5

func (f *IPublicStakingTotalSupplyFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the TotalSupply method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingTotalSupplyFunc) PushReturn added in v0.0.5

func (f *IPublicStakingTotalSupplyFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingTotalSupplyFunc) SetDefaultHook added in v0.0.5

func (f *IPublicStakingTotalSupplyFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the TotalSupply method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingTotalSupplyFunc) SetDefaultReturn added in v0.0.5

func (f *IPublicStakingTotalSupplyFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingTotalSupplyFuncCall added in v0.0.5

type IPublicStakingTotalSupplyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingTotalSupplyFuncCall is an object that describes an invocation of method TotalSupply on an instance of MockIPublicStaking.

func (IPublicStakingTotalSupplyFuncCall) Args added in v0.0.5

func (c IPublicStakingTotalSupplyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingTotalSupplyFuncCall) Results added in v0.0.5

func (c IPublicStakingTotalSupplyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingTransferFromFunc

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

IPublicStakingTransferFromFunc describes the behavior when the TransferFrom method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingTransferFromFunc) History

History returns a sequence of IPublicStakingTransferFromFuncCall objects describing the invocations of this function.

func (*IPublicStakingTransferFromFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the TransferFrom method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingTransferFromFunc) PushReturn

func (f *IPublicStakingTransferFromFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingTransferFromFunc) SetDefaultHook

SetDefaultHook sets function that is called when the TransferFrom method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingTransferFromFunc) SetDefaultReturn

func (f *IPublicStakingTransferFromFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingTransferFromFuncCall

type IPublicStakingTransferFromFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingTransferFromFuncCall is an object that describes an invocation of method TransferFrom on an instance of MockIPublicStaking.

func (IPublicStakingTransferFromFuncCall) Args

func (c IPublicStakingTransferFromFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingTransferFromFuncCall) Results

func (c IPublicStakingTransferFromFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingTripCBFunc

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

IPublicStakingTripCBFunc describes the behavior when the TripCB method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingTripCBFunc) History

History returns a sequence of IPublicStakingTripCBFuncCall objects describing the invocations of this function.

func (*IPublicStakingTripCBFunc) PushHook

func (f *IPublicStakingTripCBFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the TripCB method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingTripCBFunc) PushReturn

func (f *IPublicStakingTripCBFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingTripCBFunc) SetDefaultHook

func (f *IPublicStakingTripCBFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the TripCB method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingTripCBFunc) SetDefaultReturn

func (f *IPublicStakingTripCBFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingTripCBFuncCall

type IPublicStakingTripCBFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingTripCBFuncCall is an object that describes an invocation of method TripCB on an instance of MockIPublicStaking.

func (IPublicStakingTripCBFuncCall) Args

func (c IPublicStakingTripCBFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingTripCBFuncCall) Results

func (c IPublicStakingTripCBFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingWatchApprovalForAllFunc

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

IPublicStakingWatchApprovalForAllFunc describes the behavior when the WatchApprovalForAll method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingWatchApprovalForAllFunc) History

History returns a sequence of IPublicStakingWatchApprovalForAllFuncCall objects describing the invocations of this function.

func (*IPublicStakingWatchApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchApprovalForAll method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingWatchApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingWatchApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchApprovalForAll method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingWatchApprovalForAllFunc) SetDefaultReturn

func (f *IPublicStakingWatchApprovalForAllFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingWatchApprovalForAllFuncCall

type IPublicStakingWatchApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.PublicStakingApprovalForAll
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingWatchApprovalForAllFuncCall is an object that describes an invocation of method WatchApprovalForAll on an instance of MockIPublicStaking.

func (IPublicStakingWatchApprovalForAllFuncCall) Args

func (c IPublicStakingWatchApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingWatchApprovalForAllFuncCall) Results

func (c IPublicStakingWatchApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingWatchApprovalFunc

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

IPublicStakingWatchApprovalFunc describes the behavior when the WatchApproval method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingWatchApprovalFunc) History

History returns a sequence of IPublicStakingWatchApprovalFuncCall objects describing the invocations of this function.

func (*IPublicStakingWatchApprovalFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchApproval method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingWatchApprovalFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingWatchApprovalFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchApproval method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingWatchApprovalFunc) SetDefaultReturn

func (f *IPublicStakingWatchApprovalFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingWatchApprovalFuncCall

type IPublicStakingWatchApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.PublicStakingApproval
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingWatchApprovalFuncCall is an object that describes an invocation of method WatchApproval on an instance of MockIPublicStaking.

func (IPublicStakingWatchApprovalFuncCall) Args

func (c IPublicStakingWatchApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingWatchApprovalFuncCall) Results

func (c IPublicStakingWatchApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingWatchInitializedFunc added in v0.0.2

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

IPublicStakingWatchInitializedFunc describes the behavior when the WatchInitialized method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingWatchInitializedFunc) History added in v0.0.2

History returns a sequence of IPublicStakingWatchInitializedFuncCall objects describing the invocations of this function.

func (*IPublicStakingWatchInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the WatchInitialized method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingWatchInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingWatchInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the WatchInitialized method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingWatchInitializedFunc) SetDefaultReturn added in v0.0.2

func (f *IPublicStakingWatchInitializedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingWatchInitializedFuncCall added in v0.0.2

type IPublicStakingWatchInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.PublicStakingInitialized
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingWatchInitializedFuncCall is an object that describes an invocation of method WatchInitialized on an instance of MockIPublicStaking.

func (IPublicStakingWatchInitializedFuncCall) Args added in v0.0.2

func (c IPublicStakingWatchInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingWatchInitializedFuncCall) Results added in v0.0.2

func (c IPublicStakingWatchInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IPublicStakingWatchTransferFunc

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

IPublicStakingWatchTransferFunc describes the behavior when the WatchTransfer method of the parent MockIPublicStaking instance is invoked.

func (*IPublicStakingWatchTransferFunc) History

History returns a sequence of IPublicStakingWatchTransferFuncCall objects describing the invocations of this function.

func (*IPublicStakingWatchTransferFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchTransfer method of the parent MockIPublicStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IPublicStakingWatchTransferFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IPublicStakingWatchTransferFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchTransfer method of the parent MockIPublicStaking instance is invoked and the hook queue is empty.

func (*IPublicStakingWatchTransferFunc) SetDefaultReturn

func (f *IPublicStakingWatchTransferFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IPublicStakingWatchTransferFuncCall

type IPublicStakingWatchTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.PublicStakingTransfer
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IPublicStakingWatchTransferFuncCall is an object that describes an invocation of method WatchTransfer on an instance of MockIPublicStaking.

func (IPublicStakingWatchTransferFuncCall) Args

func (c IPublicStakingWatchTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IPublicStakingWatchTransferFuncCall) Results

func (c IPublicStakingWatchTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsCheckBClaimsSignatureFunc added in v0.0.5

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

ISnapshotsCheckBClaimsSignatureFunc describes the behavior when the CheckBClaimsSignature method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsCheckBClaimsSignatureFunc) History added in v0.0.5

History returns a sequence of ISnapshotsCheckBClaimsSignatureFuncCall objects describing the invocations of this function.

func (*ISnapshotsCheckBClaimsSignatureFunc) PushHook added in v0.0.5

func (f *ISnapshotsCheckBClaimsSignatureFunc) PushHook(hook func(*bind.CallOpts, []byte, []byte) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the CheckBClaimsSignature method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsCheckBClaimsSignatureFunc) PushReturn added in v0.0.5

func (f *ISnapshotsCheckBClaimsSignatureFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsCheckBClaimsSignatureFunc) SetDefaultHook added in v0.0.5

func (f *ISnapshotsCheckBClaimsSignatureFunc) SetDefaultHook(hook func(*bind.CallOpts, []byte, []byte) (bool, error))

SetDefaultHook sets function that is called when the CheckBClaimsSignature method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsCheckBClaimsSignatureFunc) SetDefaultReturn added in v0.0.5

func (f *ISnapshotsCheckBClaimsSignatureFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsCheckBClaimsSignatureFuncCall added in v0.0.5

type ISnapshotsCheckBClaimsSignatureFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsCheckBClaimsSignatureFuncCall is an object that describes an invocation of method CheckBClaimsSignature on an instance of MockISnapshots.

func (ISnapshotsCheckBClaimsSignatureFuncCall) Args added in v0.0.5

func (c ISnapshotsCheckBClaimsSignatureFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsCheckBClaimsSignatureFuncCall) Results added in v0.0.5

func (c ISnapshotsCheckBClaimsSignatureFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsFilterInitializedFunc added in v0.0.2

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

ISnapshotsFilterInitializedFunc describes the behavior when the FilterInitialized method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsFilterInitializedFunc) History added in v0.0.2

History returns a sequence of ISnapshotsFilterInitializedFuncCall objects describing the invocations of this function.

func (*ISnapshotsFilterInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the FilterInitialized method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsFilterInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsFilterInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the FilterInitialized method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsFilterInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsFilterInitializedFuncCall added in v0.0.2

type ISnapshotsFilterInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.SnapshotsInitializedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsFilterInitializedFuncCall is an object that describes an invocation of method FilterInitialized on an instance of MockISnapshots.

func (ISnapshotsFilterInitializedFuncCall) Args added in v0.0.2

func (c ISnapshotsFilterInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsFilterInitializedFuncCall) Results added in v0.0.2

func (c ISnapshotsFilterInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsFilterSnapshotTakenFunc

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

ISnapshotsFilterSnapshotTakenFunc describes the behavior when the FilterSnapshotTaken method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsFilterSnapshotTakenFunc) History

History returns a sequence of ISnapshotsFilterSnapshotTakenFuncCall objects describing the invocations of this function.

func (*ISnapshotsFilterSnapshotTakenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterSnapshotTaken method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsFilterSnapshotTakenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsFilterSnapshotTakenFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterSnapshotTaken method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsFilterSnapshotTakenFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsFilterSnapshotTakenFuncCall

type ISnapshotsFilterSnapshotTakenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []*big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.SnapshotsSnapshotTakenIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsFilterSnapshotTakenFuncCall is an object that describes an invocation of method FilterSnapshotTaken on an instance of MockISnapshots.

func (ISnapshotsFilterSnapshotTakenFuncCall) Args

func (c ISnapshotsFilterSnapshotTakenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsFilterSnapshotTakenFuncCall) Results

func (c ISnapshotsFilterSnapshotTakenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc

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

ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc describes the behavior when the GetAliceNetHeightFromLatestSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) History

History returns a sequence of ISnapshotsGetAliceNetHeightFromLatestSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetAliceNetHeightFromLatestSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetAliceNetHeightFromLatestSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetAliceNetHeightFromLatestSnapshotFuncCall

type ISnapshotsGetAliceNetHeightFromLatestSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetAliceNetHeightFromLatestSnapshotFuncCall is an object that describes an invocation of method GetAliceNetHeightFromLatestSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetAliceNetHeightFromLatestSnapshotFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetAliceNetHeightFromLatestSnapshotFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetAliceNetHeightFromSnapshotFunc

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

ISnapshotsGetAliceNetHeightFromSnapshotFunc describes the behavior when the GetAliceNetHeightFromSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetAliceNetHeightFromSnapshotFunc) History

History returns a sequence of ISnapshotsGetAliceNetHeightFromSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetAliceNetHeightFromSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetAliceNetHeightFromSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetAliceNetHeightFromSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetAliceNetHeightFromSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetAliceNetHeightFromSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetAliceNetHeightFromSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetAliceNetHeightFromSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetAliceNetHeightFromSnapshotFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetAliceNetHeightFromSnapshotFuncCall

type ISnapshotsGetAliceNetHeightFromSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetAliceNetHeightFromSnapshotFuncCall is an object that describes an invocation of method GetAliceNetHeightFromSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetAliceNetHeightFromSnapshotFuncCall) Args

func (c ISnapshotsGetAliceNetHeightFromSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetAliceNetHeightFromSnapshotFuncCall) Results

func (c ISnapshotsGetAliceNetHeightFromSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetBlockClaimsFromLatestSnapshotFunc

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

ISnapshotsGetBlockClaimsFromLatestSnapshotFunc describes the behavior when the GetBlockClaimsFromLatestSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetBlockClaimsFromLatestSnapshotFunc) History

History returns a sequence of ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetBlockClaimsFromLatestSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetBlockClaimsFromLatestSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetBlockClaimsFromLatestSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetBlockClaimsFromLatestSnapshotFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetBlockClaimsFromLatestSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetBlockClaimsFromLatestSnapshotFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall

type ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.BClaimsParserLibraryBClaims
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall is an object that describes an invocation of method GetBlockClaimsFromLatestSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall) Results

func (c ISnapshotsGetBlockClaimsFromLatestSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetBlockClaimsFromSnapshotFunc

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

ISnapshotsGetBlockClaimsFromSnapshotFunc describes the behavior when the GetBlockClaimsFromSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetBlockClaimsFromSnapshotFunc) History

History returns a sequence of ISnapshotsGetBlockClaimsFromSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetBlockClaimsFromSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetBlockClaimsFromSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetBlockClaimsFromSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetBlockClaimsFromSnapshotFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetBlockClaimsFromSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetBlockClaimsFromSnapshotFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetBlockClaimsFromSnapshotFuncCall

type ISnapshotsGetBlockClaimsFromSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.BClaimsParserLibraryBClaims
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetBlockClaimsFromSnapshotFuncCall is an object that describes an invocation of method GetBlockClaimsFromSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetBlockClaimsFromSnapshotFuncCall) Args

func (c ISnapshotsGetBlockClaimsFromSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetBlockClaimsFromSnapshotFuncCall) Results

func (c ISnapshotsGetBlockClaimsFromSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetChainIdFromLatestSnapshotFunc

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

ISnapshotsGetChainIdFromLatestSnapshotFunc describes the behavior when the GetChainIdFromLatestSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetChainIdFromLatestSnapshotFunc) History

History returns a sequence of ISnapshotsGetChainIdFromLatestSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetChainIdFromLatestSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetChainIdFromLatestSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetChainIdFromLatestSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetChainIdFromLatestSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetChainIdFromLatestSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetChainIdFromLatestSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetChainIdFromLatestSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetChainIdFromLatestSnapshotFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetChainIdFromLatestSnapshotFuncCall

type ISnapshotsGetChainIdFromLatestSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetChainIdFromLatestSnapshotFuncCall is an object that describes an invocation of method GetChainIdFromLatestSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetChainIdFromLatestSnapshotFuncCall) Args

func (c ISnapshotsGetChainIdFromLatestSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetChainIdFromLatestSnapshotFuncCall) Results

func (c ISnapshotsGetChainIdFromLatestSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetChainIdFromSnapshotFunc

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

ISnapshotsGetChainIdFromSnapshotFunc describes the behavior when the GetChainIdFromSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetChainIdFromSnapshotFunc) History

History returns a sequence of ISnapshotsGetChainIdFromSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetChainIdFromSnapshotFunc) PushHook

func (f *ISnapshotsGetChainIdFromSnapshotFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetChainIdFromSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetChainIdFromSnapshotFunc) PushReturn

func (f *ISnapshotsGetChainIdFromSnapshotFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetChainIdFromSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetChainIdFromSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetChainIdFromSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetChainIdFromSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetChainIdFromSnapshotFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetChainIdFromSnapshotFuncCall

type ISnapshotsGetChainIdFromSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetChainIdFromSnapshotFuncCall is an object that describes an invocation of method GetChainIdFromSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetChainIdFromSnapshotFuncCall) Args

func (c ISnapshotsGetChainIdFromSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetChainIdFromSnapshotFuncCall) Results

func (c ISnapshotsGetChainIdFromSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetChainIdFunc

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

ISnapshotsGetChainIdFunc describes the behavior when the GetChainId method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetChainIdFunc) History

History returns a sequence of ISnapshotsGetChainIdFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetChainIdFunc) PushHook

func (f *ISnapshotsGetChainIdFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetChainId method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetChainIdFunc) PushReturn

func (f *ISnapshotsGetChainIdFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetChainIdFunc) SetDefaultHook

func (f *ISnapshotsGetChainIdFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetChainId method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetChainIdFunc) SetDefaultReturn

func (f *ISnapshotsGetChainIdFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetChainIdFuncCall

type ISnapshotsGetChainIdFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetChainIdFuncCall is an object that describes an invocation of method GetChainId on an instance of MockISnapshots.

func (ISnapshotsGetChainIdFuncCall) Args

func (c ISnapshotsGetChainIdFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetChainIdFuncCall) Results

func (c ISnapshotsGetChainIdFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetCommittedHeightFromLatestSnapshotFunc

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

ISnapshotsGetCommittedHeightFromLatestSnapshotFunc describes the behavior when the GetCommittedHeightFromLatestSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) History

History returns a sequence of ISnapshotsGetCommittedHeightFromLatestSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetCommittedHeightFromLatestSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetCommittedHeightFromLatestSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetCommittedHeightFromLatestSnapshotFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetCommittedHeightFromLatestSnapshotFuncCall

type ISnapshotsGetCommittedHeightFromLatestSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetCommittedHeightFromLatestSnapshotFuncCall is an object that describes an invocation of method GetCommittedHeightFromLatestSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetCommittedHeightFromLatestSnapshotFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetCommittedHeightFromLatestSnapshotFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetCommittedHeightFromSnapshotFunc

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

ISnapshotsGetCommittedHeightFromSnapshotFunc describes the behavior when the GetCommittedHeightFromSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetCommittedHeightFromSnapshotFunc) History

History returns a sequence of ISnapshotsGetCommittedHeightFromSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetCommittedHeightFromSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetCommittedHeightFromSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetCommittedHeightFromSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetCommittedHeightFromSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetCommittedHeightFromSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetCommittedHeightFromSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetCommittedHeightFromSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetCommittedHeightFromSnapshotFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetCommittedHeightFromSnapshotFuncCall

type ISnapshotsGetCommittedHeightFromSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetCommittedHeightFromSnapshotFuncCall is an object that describes an invocation of method GetCommittedHeightFromSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetCommittedHeightFromSnapshotFuncCall) Args

func (c ISnapshotsGetCommittedHeightFromSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetCommittedHeightFromSnapshotFuncCall) Results

func (c ISnapshotsGetCommittedHeightFromSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetEpochFromHeightFunc

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

ISnapshotsGetEpochFromHeightFunc describes the behavior when the GetEpochFromHeight method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetEpochFromHeightFunc) History

History returns a sequence of ISnapshotsGetEpochFromHeightFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetEpochFromHeightFunc) PushHook

func (f *ISnapshotsGetEpochFromHeightFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEpochFromHeight method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetEpochFromHeightFunc) PushReturn

func (f *ISnapshotsGetEpochFromHeightFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetEpochFromHeightFunc) SetDefaultHook

func (f *ISnapshotsGetEpochFromHeightFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the GetEpochFromHeight method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetEpochFromHeightFunc) SetDefaultReturn

func (f *ISnapshotsGetEpochFromHeightFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetEpochFromHeightFuncCall

type ISnapshotsGetEpochFromHeightFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetEpochFromHeightFuncCall is an object that describes an invocation of method GetEpochFromHeight on an instance of MockISnapshots.

func (ISnapshotsGetEpochFromHeightFuncCall) Args

func (c ISnapshotsGetEpochFromHeightFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetEpochFromHeightFuncCall) Results

func (c ISnapshotsGetEpochFromHeightFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetEpochFunc

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

ISnapshotsGetEpochFunc describes the behavior when the GetEpoch method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetEpochFunc) History

History returns a sequence of ISnapshotsGetEpochFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetEpochFunc) PushHook

func (f *ISnapshotsGetEpochFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEpoch method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetEpochFunc) PushReturn

func (f *ISnapshotsGetEpochFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetEpochFunc) SetDefaultHook

func (f *ISnapshotsGetEpochFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetEpoch method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetEpochFunc) SetDefaultReturn

func (f *ISnapshotsGetEpochFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetEpochFuncCall

type ISnapshotsGetEpochFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetEpochFuncCall is an object that describes an invocation of method GetEpoch on an instance of MockISnapshots.

func (ISnapshotsGetEpochFuncCall) Args

func (c ISnapshotsGetEpochFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetEpochFuncCall) Results

func (c ISnapshotsGetEpochFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetEpochLengthFunc

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

ISnapshotsGetEpochLengthFunc describes the behavior when the GetEpochLength method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetEpochLengthFunc) History

History returns a sequence of ISnapshotsGetEpochLengthFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetEpochLengthFunc) PushHook

func (f *ISnapshotsGetEpochLengthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEpochLength method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetEpochLengthFunc) PushReturn

func (f *ISnapshotsGetEpochLengthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetEpochLengthFunc) SetDefaultHook

func (f *ISnapshotsGetEpochLengthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetEpochLength method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetEpochLengthFunc) SetDefaultReturn

func (f *ISnapshotsGetEpochLengthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetEpochLengthFuncCall

type ISnapshotsGetEpochLengthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetEpochLengthFuncCall is an object that describes an invocation of method GetEpochLength on an instance of MockISnapshots.

func (ISnapshotsGetEpochLengthFuncCall) Args

func (c ISnapshotsGetEpochLengthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetEpochLengthFuncCall) Results

func (c ISnapshotsGetEpochLengthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetLatestSnapshotFunc

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

ISnapshotsGetLatestSnapshotFunc describes the behavior when the GetLatestSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetLatestSnapshotFunc) History

History returns a sequence of ISnapshotsGetLatestSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetLatestSnapshotFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetLatestSnapshotFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetLatestSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetLatestSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts) (bindings.Snapshot, error))

SetDefaultHook sets function that is called when the GetLatestSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetLatestSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetLatestSnapshotFunc) SetDefaultReturn(r0 bindings.Snapshot, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetLatestSnapshotFuncCall

type ISnapshotsGetLatestSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.Snapshot
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetLatestSnapshotFuncCall is an object that describes an invocation of method GetLatestSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetLatestSnapshotFuncCall) Args

func (c ISnapshotsGetLatestSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetLatestSnapshotFuncCall) Results

func (c ISnapshotsGetLatestSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetMetamorphicContractAddressFunc

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

ISnapshotsGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetMetamorphicContractAddressFunc) History

History returns a sequence of ISnapshotsGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetMetamorphicContractAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetMetamorphicContractAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetMetamorphicContractAddressFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetMetamorphicContractAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetMetamorphicContractAddressFuncCall

type ISnapshotsGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockISnapshots.

func (ISnapshotsGetMetamorphicContractAddressFuncCall) Args

func (c ISnapshotsGetMetamorphicContractAddressFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetMetamorphicContractAddressFuncCall) Results

func (c ISnapshotsGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc

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

ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc describes the behavior when the GetMinimumIntervalBetweenSnapshots method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) History

History returns a sequence of ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMinimumIntervalBetweenSnapshots method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) SetDefaultHook

func (f *ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMinimumIntervalBetweenSnapshots method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) SetDefaultReturn

func (f *ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall

type ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall is an object that describes an invocation of method GetMinimumIntervalBetweenSnapshots on an instance of MockISnapshots.

func (ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall) Results

func (c ISnapshotsGetMinimumIntervalBetweenSnapshotsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetSnapshotDesperationDelayFunc

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

ISnapshotsGetSnapshotDesperationDelayFunc describes the behavior when the GetSnapshotDesperationDelay method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetSnapshotDesperationDelayFunc) History

History returns a sequence of ISnapshotsGetSnapshotDesperationDelayFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetSnapshotDesperationDelayFunc) PushHook

func (f *ISnapshotsGetSnapshotDesperationDelayFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetSnapshotDesperationDelay method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetSnapshotDesperationDelayFunc) PushReturn

func (f *ISnapshotsGetSnapshotDesperationDelayFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetSnapshotDesperationDelayFunc) SetDefaultHook

func (f *ISnapshotsGetSnapshotDesperationDelayFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetSnapshotDesperationDelay method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetSnapshotDesperationDelayFunc) SetDefaultReturn

func (f *ISnapshotsGetSnapshotDesperationDelayFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetSnapshotDesperationDelayFuncCall

type ISnapshotsGetSnapshotDesperationDelayFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetSnapshotDesperationDelayFuncCall is an object that describes an invocation of method GetSnapshotDesperationDelay on an instance of MockISnapshots.

func (ISnapshotsGetSnapshotDesperationDelayFuncCall) Args

func (c ISnapshotsGetSnapshotDesperationDelayFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetSnapshotDesperationDelayFuncCall) Results

func (c ISnapshotsGetSnapshotDesperationDelayFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetSnapshotDesperationFactorFunc

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

ISnapshotsGetSnapshotDesperationFactorFunc describes the behavior when the GetSnapshotDesperationFactor method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetSnapshotDesperationFactorFunc) History

History returns a sequence of ISnapshotsGetSnapshotDesperationFactorFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetSnapshotDesperationFactorFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetSnapshotDesperationFactor method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetSnapshotDesperationFactorFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetSnapshotDesperationFactorFunc) SetDefaultHook

func (f *ISnapshotsGetSnapshotDesperationFactorFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetSnapshotDesperationFactor method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetSnapshotDesperationFactorFunc) SetDefaultReturn

func (f *ISnapshotsGetSnapshotDesperationFactorFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetSnapshotDesperationFactorFuncCall

type ISnapshotsGetSnapshotDesperationFactorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetSnapshotDesperationFactorFuncCall is an object that describes an invocation of method GetSnapshotDesperationFactor on an instance of MockISnapshots.

func (ISnapshotsGetSnapshotDesperationFactorFuncCall) Args

func (c ISnapshotsGetSnapshotDesperationFactorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetSnapshotDesperationFactorFuncCall) Results

func (c ISnapshotsGetSnapshotDesperationFactorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsGetSnapshotFunc

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

ISnapshotsGetSnapshotFunc describes the behavior when the GetSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsGetSnapshotFunc) History

History returns a sequence of ISnapshotsGetSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsGetSnapshotFunc) PushHook

func (f *ISnapshotsGetSnapshotFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (bindings.Snapshot, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsGetSnapshotFunc) PushReturn

func (f *ISnapshotsGetSnapshotFunc) PushReturn(r0 bindings.Snapshot, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsGetSnapshotFunc) SetDefaultHook

func (f *ISnapshotsGetSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (bindings.Snapshot, error))

SetDefaultHook sets function that is called when the GetSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsGetSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsGetSnapshotFunc) SetDefaultReturn(r0 bindings.Snapshot, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsGetSnapshotFuncCall

type ISnapshotsGetSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.Snapshot
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsGetSnapshotFuncCall is an object that describes an invocation of method GetSnapshot on an instance of MockISnapshots.

func (ISnapshotsGetSnapshotFuncCall) Args

func (c ISnapshotsGetSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsGetSnapshotFuncCall) Results

func (c ISnapshotsGetSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsInitializeFunc

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

ISnapshotsInitializeFunc describes the behavior when the Initialize method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsInitializeFunc) History

History returns a sequence of ISnapshotsInitializeFuncCall objects describing the invocations of this function.

func (*ISnapshotsInitializeFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Initialize method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsInitializeFunc) PushReturn

func (f *ISnapshotsInitializeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsInitializeFunc) SetDefaultHook

func (f *ISnapshotsInitializeFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint32, uint32) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Initialize method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsInitializeFunc) SetDefaultReturn

func (f *ISnapshotsInitializeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsInitializeFuncCall

type ISnapshotsInitializeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 uint32
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsInitializeFuncCall is an object that describes an invocation of method Initialize on an instance of MockISnapshots.

func (ISnapshotsInitializeFuncCall) Args

func (c ISnapshotsInitializeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsInitializeFuncCall) Results

func (c ISnapshotsInitializeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsIsValidatorElectedToPerformSnapshotFunc added in v0.0.5

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

ISnapshotsIsValidatorElectedToPerformSnapshotFunc describes the behavior when the IsValidatorElectedToPerformSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsIsValidatorElectedToPerformSnapshotFunc) History added in v0.0.5

History returns a sequence of ISnapshotsIsValidatorElectedToPerformSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsIsValidatorElectedToPerformSnapshotFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the IsValidatorElectedToPerformSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsIsValidatorElectedToPerformSnapshotFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsIsValidatorElectedToPerformSnapshotFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the IsValidatorElectedToPerformSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsIsValidatorElectedToPerformSnapshotFunc) SetDefaultReturn added in v0.0.5

func (f *ISnapshotsIsValidatorElectedToPerformSnapshotFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsIsValidatorElectedToPerformSnapshotFuncCall added in v0.0.5

type ISnapshotsIsValidatorElectedToPerformSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 [32]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsIsValidatorElectedToPerformSnapshotFuncCall is an object that describes an invocation of method IsValidatorElectedToPerformSnapshot on an instance of MockISnapshots.

func (ISnapshotsIsValidatorElectedToPerformSnapshotFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsIsValidatorElectedToPerformSnapshotFuncCall) Results added in v0.0.5

Results returns an interface slice containing the results of this invocation.

type ISnapshotsMayValidatorSnapshotFunc

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

ISnapshotsMayValidatorSnapshotFunc describes the behavior when the MayValidatorSnapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsMayValidatorSnapshotFunc) History

History returns a sequence of ISnapshotsMayValidatorSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsMayValidatorSnapshotFunc) PushHook

func (f *ISnapshotsMayValidatorSnapshotFunc) PushHook(hook func(*bind.CallOpts, *big.Int, *big.Int, *big.Int, [32]byte, *big.Int) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the MayValidatorSnapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsMayValidatorSnapshotFunc) PushReturn

func (f *ISnapshotsMayValidatorSnapshotFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsMayValidatorSnapshotFunc) SetDefaultHook

func (f *ISnapshotsMayValidatorSnapshotFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int, *big.Int, *big.Int, [32]byte, *big.Int) (bool, error))

SetDefaultHook sets function that is called when the MayValidatorSnapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsMayValidatorSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsMayValidatorSnapshotFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsMayValidatorSnapshotFuncCall

type ISnapshotsMayValidatorSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 [32]byte
	// Arg5 is the value of the 6th argument passed to this method
	// invocation.
	Arg5 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsMayValidatorSnapshotFuncCall is an object that describes an invocation of method MayValidatorSnapshot on an instance of MockISnapshots.

func (ISnapshotsMayValidatorSnapshotFuncCall) Args

func (c ISnapshotsMayValidatorSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsMayValidatorSnapshotFuncCall) Results

func (c ISnapshotsMayValidatorSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsMigrateSnapshotsFunc

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

ISnapshotsMigrateSnapshotsFunc describes the behavior when the MigrateSnapshots method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsMigrateSnapshotsFunc) History

History returns a sequence of ISnapshotsMigrateSnapshotsFuncCall objects describing the invocations of this function.

func (*ISnapshotsMigrateSnapshotsFunc) PushHook

func (f *ISnapshotsMigrateSnapshotsFunc) PushHook(hook func(*bind.TransactOpts, [][]byte, [][]byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the MigrateSnapshots method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsMigrateSnapshotsFunc) PushReturn

func (f *ISnapshotsMigrateSnapshotsFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsMigrateSnapshotsFunc) SetDefaultHook

func (f *ISnapshotsMigrateSnapshotsFunc) SetDefaultHook(hook func(*bind.TransactOpts, [][]byte, [][]byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MigrateSnapshots method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsMigrateSnapshotsFunc) SetDefaultReturn

func (f *ISnapshotsMigrateSnapshotsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsMigrateSnapshotsFuncCall

type ISnapshotsMigrateSnapshotsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [][]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 [][]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsMigrateSnapshotsFuncCall is an object that describes an invocation of method MigrateSnapshots on an instance of MockISnapshots.

func (ISnapshotsMigrateSnapshotsFuncCall) Args

func (c ISnapshotsMigrateSnapshotsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsMigrateSnapshotsFuncCall) Results

func (c ISnapshotsMigrateSnapshotsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsParseInitializedFunc added in v0.0.2

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

ISnapshotsParseInitializedFunc describes the behavior when the ParseInitialized method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsParseInitializedFunc) History added in v0.0.2

History returns a sequence of ISnapshotsParseInitializedFuncCall objects describing the invocations of this function.

func (*ISnapshotsParseInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the ParseInitialized method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsParseInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsParseInitializedFunc) SetDefaultHook added in v0.0.2

func (f *ISnapshotsParseInitializedFunc) SetDefaultHook(hook func(types.Log) (*bindings.SnapshotsInitialized, error))

SetDefaultHook sets function that is called when the ParseInitialized method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsParseInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsParseInitializedFuncCall added in v0.0.2

type ISnapshotsParseInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.SnapshotsInitialized
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsParseInitializedFuncCall is an object that describes an invocation of method ParseInitialized on an instance of MockISnapshots.

func (ISnapshotsParseInitializedFuncCall) Args added in v0.0.2

func (c ISnapshotsParseInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsParseInitializedFuncCall) Results added in v0.0.2

func (c ISnapshotsParseInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsParseSnapshotTakenFunc

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

ISnapshotsParseSnapshotTakenFunc describes the behavior when the ParseSnapshotTaken method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsParseSnapshotTakenFunc) History

History returns a sequence of ISnapshotsParseSnapshotTakenFuncCall objects describing the invocations of this function.

func (*ISnapshotsParseSnapshotTakenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseSnapshotTaken method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsParseSnapshotTakenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsParseSnapshotTakenFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseSnapshotTaken method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsParseSnapshotTakenFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsParseSnapshotTakenFuncCall

type ISnapshotsParseSnapshotTakenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.SnapshotsSnapshotTaken
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsParseSnapshotTakenFuncCall is an object that describes an invocation of method ParseSnapshotTaken on an instance of MockISnapshots.

func (ISnapshotsParseSnapshotTakenFuncCall) Args

func (c ISnapshotsParseSnapshotTakenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsParseSnapshotTakenFuncCall) Results

func (c ISnapshotsParseSnapshotTakenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc

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

ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc describes the behavior when the SetMinimumIntervalBetweenSnapshots method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc) History

History returns a sequence of ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall objects describing the invocations of this function.

func (*ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetMinimumIntervalBetweenSnapshots method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SetMinimumIntervalBetweenSnapshots method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall

type ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall is an object that describes an invocation of method SetMinimumIntervalBetweenSnapshots on an instance of MockISnapshots.

func (ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall) Results

func (c ISnapshotsSetMinimumIntervalBetweenSnapshotsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsSetSnapshotDesperationDelayFunc

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

ISnapshotsSetSnapshotDesperationDelayFunc describes the behavior when the SetSnapshotDesperationDelay method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsSetSnapshotDesperationDelayFunc) History

History returns a sequence of ISnapshotsSetSnapshotDesperationDelayFuncCall objects describing the invocations of this function.

func (*ISnapshotsSetSnapshotDesperationDelayFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetSnapshotDesperationDelay method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsSetSnapshotDesperationDelayFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsSetSnapshotDesperationDelayFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SetSnapshotDesperationDelay method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsSetSnapshotDesperationDelayFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsSetSnapshotDesperationDelayFuncCall

type ISnapshotsSetSnapshotDesperationDelayFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsSetSnapshotDesperationDelayFuncCall is an object that describes an invocation of method SetSnapshotDesperationDelay on an instance of MockISnapshots.

func (ISnapshotsSetSnapshotDesperationDelayFuncCall) Args

func (c ISnapshotsSetSnapshotDesperationDelayFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsSetSnapshotDesperationDelayFuncCall) Results

func (c ISnapshotsSetSnapshotDesperationDelayFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsSetSnapshotDesperationFactorFunc

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

ISnapshotsSetSnapshotDesperationFactorFunc describes the behavior when the SetSnapshotDesperationFactor method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsSetSnapshotDesperationFactorFunc) History

History returns a sequence of ISnapshotsSetSnapshotDesperationFactorFuncCall objects describing the invocations of this function.

func (*ISnapshotsSetSnapshotDesperationFactorFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetSnapshotDesperationFactor method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsSetSnapshotDesperationFactorFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsSetSnapshotDesperationFactorFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SetSnapshotDesperationFactor method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsSetSnapshotDesperationFactorFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsSetSnapshotDesperationFactorFuncCall

type ISnapshotsSetSnapshotDesperationFactorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint32
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsSetSnapshotDesperationFactorFuncCall is an object that describes an invocation of method SetSnapshotDesperationFactor on an instance of MockISnapshots.

func (ISnapshotsSetSnapshotDesperationFactorFuncCall) Args

func (c ISnapshotsSetSnapshotDesperationFactorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsSetSnapshotDesperationFactorFuncCall) Results

func (c ISnapshotsSetSnapshotDesperationFactorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsSnapshotFunc

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

ISnapshotsSnapshotFunc describes the behavior when the Snapshot method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsSnapshotFunc) History

History returns a sequence of ISnapshotsSnapshotFuncCall objects describing the invocations of this function.

func (*ISnapshotsSnapshotFunc) PushHook

func (f *ISnapshotsSnapshotFunc) PushHook(hook func(*bind.TransactOpts, []byte, []byte) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Snapshot method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsSnapshotFunc) PushReturn

func (f *ISnapshotsSnapshotFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsSnapshotFunc) SetDefaultHook

func (f *ISnapshotsSnapshotFunc) SetDefaultHook(hook func(*bind.TransactOpts, []byte, []byte) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Snapshot method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsSnapshotFunc) SetDefaultReturn

func (f *ISnapshotsSnapshotFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsSnapshotFuncCall

type ISnapshotsSnapshotFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsSnapshotFuncCall is an object that describes an invocation of method Snapshot on an instance of MockISnapshots.

func (ISnapshotsSnapshotFuncCall) Args

func (c ISnapshotsSnapshotFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsSnapshotFuncCall) Results

func (c ISnapshotsSnapshotFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsWatchInitializedFunc added in v0.0.2

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

ISnapshotsWatchInitializedFunc describes the behavior when the WatchInitialized method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsWatchInitializedFunc) History added in v0.0.2

History returns a sequence of ISnapshotsWatchInitializedFuncCall objects describing the invocations of this function.

func (*ISnapshotsWatchInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the WatchInitialized method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsWatchInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsWatchInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the WatchInitialized method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsWatchInitializedFunc) SetDefaultReturn added in v0.0.2

func (f *ISnapshotsWatchInitializedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsWatchInitializedFuncCall added in v0.0.2

type ISnapshotsWatchInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.SnapshotsInitialized
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsWatchInitializedFuncCall is an object that describes an invocation of method WatchInitialized on an instance of MockISnapshots.

func (ISnapshotsWatchInitializedFuncCall) Args added in v0.0.2

func (c ISnapshotsWatchInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsWatchInitializedFuncCall) Results added in v0.0.2

func (c ISnapshotsWatchInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ISnapshotsWatchSnapshotTakenFunc

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

ISnapshotsWatchSnapshotTakenFunc describes the behavior when the WatchSnapshotTaken method of the parent MockISnapshots instance is invoked.

func (*ISnapshotsWatchSnapshotTakenFunc) History

History returns a sequence of ISnapshotsWatchSnapshotTakenFuncCall objects describing the invocations of this function.

func (*ISnapshotsWatchSnapshotTakenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchSnapshotTaken method of the parent MockISnapshots instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ISnapshotsWatchSnapshotTakenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ISnapshotsWatchSnapshotTakenFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchSnapshotTaken method of the parent MockISnapshots instance is invoked and the hook queue is empty.

func (*ISnapshotsWatchSnapshotTakenFunc) SetDefaultReturn

func (f *ISnapshotsWatchSnapshotTakenFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ISnapshotsWatchSnapshotTakenFuncCall

type ISnapshotsWatchSnapshotTakenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.SnapshotsSnapshotTaken
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ISnapshotsWatchSnapshotTakenFuncCall is an object that describes an invocation of method WatchSnapshotTaken on an instance of MockISnapshots.

func (ISnapshotsWatchSnapshotTakenFuncCall) Args

func (c ISnapshotsWatchSnapshotTakenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ISnapshotsWatchSnapshotTakenFuncCall) Results

func (c ISnapshotsWatchSnapshotTakenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolCLAIMPERIODFunc

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

IValidatorPoolCLAIMPERIODFunc describes the behavior when the CLAIMPERIOD method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolCLAIMPERIODFunc) History

History returns a sequence of IValidatorPoolCLAIMPERIODFuncCall objects describing the invocations of this function.

func (*IValidatorPoolCLAIMPERIODFunc) PushHook

func (f *IValidatorPoolCLAIMPERIODFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the CLAIMPERIOD method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolCLAIMPERIODFunc) PushReturn

func (f *IValidatorPoolCLAIMPERIODFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolCLAIMPERIODFunc) SetDefaultHook

func (f *IValidatorPoolCLAIMPERIODFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the CLAIMPERIOD method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolCLAIMPERIODFunc) SetDefaultReturn

func (f *IValidatorPoolCLAIMPERIODFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolCLAIMPERIODFuncCall

type IValidatorPoolCLAIMPERIODFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolCLAIMPERIODFuncCall is an object that describes an invocation of method CLAIMPERIOD on an instance of MockIValidatorPool.

func (IValidatorPoolCLAIMPERIODFuncCall) Args

func (c IValidatorPoolCLAIMPERIODFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolCLAIMPERIODFuncCall) Results

func (c IValidatorPoolCLAIMPERIODFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolClaimExitingNFTPositionFunc

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

IValidatorPoolClaimExitingNFTPositionFunc describes the behavior when the ClaimExitingNFTPosition method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolClaimExitingNFTPositionFunc) History

History returns a sequence of IValidatorPoolClaimExitingNFTPositionFuncCall objects describing the invocations of this function.

func (*IValidatorPoolClaimExitingNFTPositionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ClaimExitingNFTPosition method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolClaimExitingNFTPositionFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolClaimExitingNFTPositionFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ClaimExitingNFTPosition method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolClaimExitingNFTPositionFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolClaimExitingNFTPositionFuncCall

type IValidatorPoolClaimExitingNFTPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolClaimExitingNFTPositionFuncCall is an object that describes an invocation of method ClaimExitingNFTPosition on an instance of MockIValidatorPool.

func (IValidatorPoolClaimExitingNFTPositionFuncCall) Args

func (c IValidatorPoolClaimExitingNFTPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolClaimExitingNFTPositionFuncCall) Results

func (c IValidatorPoolClaimExitingNFTPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolCollectProfitsFunc

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

IValidatorPoolCollectProfitsFunc describes the behavior when the CollectProfits method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolCollectProfitsFunc) History

History returns a sequence of IValidatorPoolCollectProfitsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolCollectProfitsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectProfits method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolCollectProfitsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolCollectProfitsFunc) SetDefaultHook

func (f *IValidatorPoolCollectProfitsFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CollectProfits method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolCollectProfitsFunc) SetDefaultReturn

func (f *IValidatorPoolCollectProfitsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolCollectProfitsFuncCall

type IValidatorPoolCollectProfitsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolCollectProfitsFuncCall is an object that describes an invocation of method CollectProfits on an instance of MockIValidatorPool.

func (IValidatorPoolCollectProfitsFuncCall) Args

func (c IValidatorPoolCollectProfitsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolCollectProfitsFuncCall) Results

func (c IValidatorPoolCollectProfitsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolCompleteETHDKGFunc

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

IValidatorPoolCompleteETHDKGFunc describes the behavior when the CompleteETHDKG method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolCompleteETHDKGFunc) History

History returns a sequence of IValidatorPoolCompleteETHDKGFuncCall objects describing the invocations of this function.

func (*IValidatorPoolCompleteETHDKGFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CompleteETHDKG method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolCompleteETHDKGFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolCompleteETHDKGFunc) SetDefaultHook

func (f *IValidatorPoolCompleteETHDKGFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CompleteETHDKG method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolCompleteETHDKGFunc) SetDefaultReturn

func (f *IValidatorPoolCompleteETHDKGFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolCompleteETHDKGFuncCall

type IValidatorPoolCompleteETHDKGFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolCompleteETHDKGFuncCall is an object that describes an invocation of method CompleteETHDKG on an instance of MockIValidatorPool.

func (IValidatorPoolCompleteETHDKGFuncCall) Args

func (c IValidatorPoolCompleteETHDKGFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolCompleteETHDKGFuncCall) Results

func (c IValidatorPoolCompleteETHDKGFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolFilterInitializedFunc added in v0.0.2

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

IValidatorPoolFilterInitializedFunc describes the behavior when the FilterInitialized method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolFilterInitializedFunc) History added in v0.0.2

History returns a sequence of IValidatorPoolFilterInitializedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolFilterInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the FilterInitialized method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolFilterInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolFilterInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the FilterInitialized method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolFilterInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolFilterInitializedFuncCall added in v0.0.2

type IValidatorPoolFilterInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolInitializedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolFilterInitializedFuncCall is an object that describes an invocation of method FilterInitialized on an instance of MockIValidatorPool.

func (IValidatorPoolFilterInitializedFuncCall) Args added in v0.0.2

func (c IValidatorPoolFilterInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolFilterInitializedFuncCall) Results added in v0.0.2

func (c IValidatorPoolFilterInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolFilterMaintenanceScheduledFunc

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

IValidatorPoolFilterMaintenanceScheduledFunc describes the behavior when the FilterMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolFilterMaintenanceScheduledFunc) History

History returns a sequence of IValidatorPoolFilterMaintenanceScheduledFuncCall objects describing the invocations of this function.

func (*IValidatorPoolFilterMaintenanceScheduledFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterMaintenanceScheduled method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolFilterMaintenanceScheduledFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolFilterMaintenanceScheduledFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolFilterMaintenanceScheduledFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolFilterMaintenanceScheduledFuncCall

type IValidatorPoolFilterMaintenanceScheduledFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolMaintenanceScheduledIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolFilterMaintenanceScheduledFuncCall is an object that describes an invocation of method FilterMaintenanceScheduled on an instance of MockIValidatorPool.

func (IValidatorPoolFilterMaintenanceScheduledFuncCall) Args

func (c IValidatorPoolFilterMaintenanceScheduledFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolFilterMaintenanceScheduledFuncCall) Results

func (c IValidatorPoolFilterMaintenanceScheduledFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolFilterValidatorJoinedFunc

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

IValidatorPoolFilterValidatorJoinedFunc describes the behavior when the FilterValidatorJoined method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolFilterValidatorJoinedFunc) History

History returns a sequence of IValidatorPoolFilterValidatorJoinedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolFilterValidatorJoinedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValidatorJoined method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolFilterValidatorJoinedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolFilterValidatorJoinedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValidatorJoined method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolFilterValidatorJoinedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolFilterValidatorJoinedFuncCall

type IValidatorPoolFilterValidatorJoinedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorJoinedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolFilterValidatorJoinedFuncCall is an object that describes an invocation of method FilterValidatorJoined on an instance of MockIValidatorPool.

func (IValidatorPoolFilterValidatorJoinedFuncCall) Args

func (c IValidatorPoolFilterValidatorJoinedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolFilterValidatorJoinedFuncCall) Results

func (c IValidatorPoolFilterValidatorJoinedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolFilterValidatorLeftFunc

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

IValidatorPoolFilterValidatorLeftFunc describes the behavior when the FilterValidatorLeft method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolFilterValidatorLeftFunc) History

History returns a sequence of IValidatorPoolFilterValidatorLeftFuncCall objects describing the invocations of this function.

func (*IValidatorPoolFilterValidatorLeftFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValidatorLeft method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolFilterValidatorLeftFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolFilterValidatorLeftFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValidatorLeft method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolFilterValidatorLeftFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolFilterValidatorLeftFuncCall

type IValidatorPoolFilterValidatorLeftFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorLeftIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolFilterValidatorLeftFuncCall is an object that describes an invocation of method FilterValidatorLeft on an instance of MockIValidatorPool.

func (IValidatorPoolFilterValidatorLeftFuncCall) Args

func (c IValidatorPoolFilterValidatorLeftFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolFilterValidatorLeftFuncCall) Results

func (c IValidatorPoolFilterValidatorLeftFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolFilterValidatorMajorSlashedFunc

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

IValidatorPoolFilterValidatorMajorSlashedFunc describes the behavior when the FilterValidatorMajorSlashed method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolFilterValidatorMajorSlashedFunc) History

History returns a sequence of IValidatorPoolFilterValidatorMajorSlashedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolFilterValidatorMajorSlashedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValidatorMajorSlashed method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolFilterValidatorMajorSlashedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolFilterValidatorMajorSlashedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValidatorMajorSlashed method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolFilterValidatorMajorSlashedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolFilterValidatorMajorSlashedFuncCall

type IValidatorPoolFilterValidatorMajorSlashedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorMajorSlashedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolFilterValidatorMajorSlashedFuncCall is an object that describes an invocation of method FilterValidatorMajorSlashed on an instance of MockIValidatorPool.

func (IValidatorPoolFilterValidatorMajorSlashedFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolFilterValidatorMajorSlashedFuncCall) Results

func (c IValidatorPoolFilterValidatorMajorSlashedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolFilterValidatorMinorSlashedFunc

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

IValidatorPoolFilterValidatorMinorSlashedFunc describes the behavior when the FilterValidatorMinorSlashed method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolFilterValidatorMinorSlashedFunc) History

History returns a sequence of IValidatorPoolFilterValidatorMinorSlashedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolFilterValidatorMinorSlashedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterValidatorMinorSlashed method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolFilterValidatorMinorSlashedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolFilterValidatorMinorSlashedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterValidatorMinorSlashed method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolFilterValidatorMinorSlashedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolFilterValidatorMinorSlashedFuncCall

type IValidatorPoolFilterValidatorMinorSlashedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorMinorSlashedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolFilterValidatorMinorSlashedFuncCall is an object that describes an invocation of method FilterValidatorMinorSlashed on an instance of MockIValidatorPool.

func (IValidatorPoolFilterValidatorMinorSlashedFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolFilterValidatorMinorSlashedFuncCall) Results

func (c IValidatorPoolFilterValidatorMinorSlashedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetDisputerRewardFunc

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

IValidatorPoolGetDisputerRewardFunc describes the behavior when the GetDisputerReward method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetDisputerRewardFunc) History

History returns a sequence of IValidatorPoolGetDisputerRewardFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetDisputerRewardFunc) PushHook

func (f *IValidatorPoolGetDisputerRewardFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetDisputerReward method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetDisputerRewardFunc) PushReturn

func (f *IValidatorPoolGetDisputerRewardFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetDisputerRewardFunc) SetDefaultHook

func (f *IValidatorPoolGetDisputerRewardFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetDisputerReward method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetDisputerRewardFunc) SetDefaultReturn

func (f *IValidatorPoolGetDisputerRewardFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetDisputerRewardFuncCall

type IValidatorPoolGetDisputerRewardFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetDisputerRewardFuncCall is an object that describes an invocation of method GetDisputerReward on an instance of MockIValidatorPool.

func (IValidatorPoolGetDisputerRewardFuncCall) Args

func (c IValidatorPoolGetDisputerRewardFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetDisputerRewardFuncCall) Results

func (c IValidatorPoolGetDisputerRewardFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetLocationFunc

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

IValidatorPoolGetLocationFunc describes the behavior when the GetLocation method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetLocationFunc) History

History returns a sequence of IValidatorPoolGetLocationFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetLocationFunc) PushHook

func (f *IValidatorPoolGetLocationFunc) PushHook(hook func(*bind.CallOpts, common.Address) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetLocation method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetLocationFunc) PushReturn

func (f *IValidatorPoolGetLocationFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetLocationFunc) SetDefaultHook

func (f *IValidatorPoolGetLocationFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (string, error))

SetDefaultHook sets function that is called when the GetLocation method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetLocationFunc) SetDefaultReturn

func (f *IValidatorPoolGetLocationFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetLocationFuncCall

type IValidatorPoolGetLocationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetLocationFuncCall is an object that describes an invocation of method GetLocation on an instance of MockIValidatorPool.

func (IValidatorPoolGetLocationFuncCall) Args

func (c IValidatorPoolGetLocationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetLocationFuncCall) Results

func (c IValidatorPoolGetLocationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetLocationsFunc

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

IValidatorPoolGetLocationsFunc describes the behavior when the GetLocations method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetLocationsFunc) History

History returns a sequence of IValidatorPoolGetLocationsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetLocationsFunc) PushHook

func (f *IValidatorPoolGetLocationsFunc) PushHook(hook func(*bind.CallOpts, []common.Address) ([]string, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetLocations method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetLocationsFunc) PushReturn

func (f *IValidatorPoolGetLocationsFunc) PushReturn(r0 []string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetLocationsFunc) SetDefaultHook

func (f *IValidatorPoolGetLocationsFunc) SetDefaultHook(hook func(*bind.CallOpts, []common.Address) ([]string, error))

SetDefaultHook sets function that is called when the GetLocations method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetLocationsFunc) SetDefaultReturn

func (f *IValidatorPoolGetLocationsFunc) SetDefaultReturn(r0 []string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetLocationsFuncCall

type IValidatorPoolGetLocationsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetLocationsFuncCall is an object that describes an invocation of method GetLocations on an instance of MockIValidatorPool.

func (IValidatorPoolGetLocationsFuncCall) Args

func (c IValidatorPoolGetLocationsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetLocationsFuncCall) Results

func (c IValidatorPoolGetLocationsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc added in v0.0.5

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

IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc describes the behavior when the GetMaxIntervalWithoutSnapshots method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) History added in v0.0.5

History returns a sequence of IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetMaxIntervalWithoutSnapshots method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) SetDefaultHook added in v0.0.5

func (f *IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMaxIntervalWithoutSnapshots method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall added in v0.0.5

type IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall is an object that describes an invocation of method GetMaxIntervalWithoutSnapshots on an instance of MockIValidatorPool.

func (IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall) Results added in v0.0.5

func (c IValidatorPoolGetMaxIntervalWithoutSnapshotsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetMaxNumValidatorsFunc

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

IValidatorPoolGetMaxNumValidatorsFunc describes the behavior when the GetMaxNumValidators method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetMaxNumValidatorsFunc) History

History returns a sequence of IValidatorPoolGetMaxNumValidatorsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetMaxNumValidatorsFunc) PushHook

func (f *IValidatorPoolGetMaxNumValidatorsFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMaxNumValidators method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetMaxNumValidatorsFunc) PushReturn

func (f *IValidatorPoolGetMaxNumValidatorsFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetMaxNumValidatorsFunc) SetDefaultHook

func (f *IValidatorPoolGetMaxNumValidatorsFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMaxNumValidators method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetMaxNumValidatorsFunc) SetDefaultReturn

func (f *IValidatorPoolGetMaxNumValidatorsFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetMaxNumValidatorsFuncCall

type IValidatorPoolGetMaxNumValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetMaxNumValidatorsFuncCall is an object that describes an invocation of method GetMaxNumValidators on an instance of MockIValidatorPool.

func (IValidatorPoolGetMaxNumValidatorsFuncCall) Args

func (c IValidatorPoolGetMaxNumValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetMaxNumValidatorsFuncCall) Results

func (c IValidatorPoolGetMaxNumValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetMetamorphicContractAddressFunc

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

IValidatorPoolGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetMetamorphicContractAddressFunc) History

History returns a sequence of IValidatorPoolGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetMetamorphicContractAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetMetamorphicContractAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetMetamorphicContractAddressFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetMetamorphicContractAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetMetamorphicContractAddressFuncCall

type IValidatorPoolGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIValidatorPool.

func (IValidatorPoolGetMetamorphicContractAddressFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetMetamorphicContractAddressFuncCall) Results

func (c IValidatorPoolGetMetamorphicContractAddressFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetStakeAmountFunc

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

IValidatorPoolGetStakeAmountFunc describes the behavior when the GetStakeAmount method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetStakeAmountFunc) History

History returns a sequence of IValidatorPoolGetStakeAmountFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetStakeAmountFunc) PushHook

func (f *IValidatorPoolGetStakeAmountFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetStakeAmount method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetStakeAmountFunc) PushReturn

func (f *IValidatorPoolGetStakeAmountFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetStakeAmountFunc) SetDefaultHook

func (f *IValidatorPoolGetStakeAmountFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetStakeAmount method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetStakeAmountFunc) SetDefaultReturn

func (f *IValidatorPoolGetStakeAmountFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetStakeAmountFuncCall

type IValidatorPoolGetStakeAmountFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetStakeAmountFuncCall is an object that describes an invocation of method GetStakeAmount on an instance of MockIValidatorPool.

func (IValidatorPoolGetStakeAmountFuncCall) Args

func (c IValidatorPoolGetStakeAmountFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetStakeAmountFuncCall) Results

func (c IValidatorPoolGetStakeAmountFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetValidatorDataFunc

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

IValidatorPoolGetValidatorDataFunc describes the behavior when the GetValidatorData method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetValidatorDataFunc) History

History returns a sequence of IValidatorPoolGetValidatorDataFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetValidatorDataFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetValidatorData method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetValidatorDataFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetValidatorDataFunc) SetDefaultHook

func (f *IValidatorPoolGetValidatorDataFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (bindings.ValidatorData, error))

SetDefaultHook sets function that is called when the GetValidatorData method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetValidatorDataFunc) SetDefaultReturn

func (f *IValidatorPoolGetValidatorDataFunc) SetDefaultReturn(r0 bindings.ValidatorData, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetValidatorDataFuncCall

type IValidatorPoolGetValidatorDataFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bindings.ValidatorData
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetValidatorDataFuncCall is an object that describes an invocation of method GetValidatorData on an instance of MockIValidatorPool.

func (IValidatorPoolGetValidatorDataFuncCall) Args

func (c IValidatorPoolGetValidatorDataFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetValidatorDataFuncCall) Results

func (c IValidatorPoolGetValidatorDataFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetValidatorFunc

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

IValidatorPoolGetValidatorFunc describes the behavior when the GetValidator method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetValidatorFunc) History

History returns a sequence of IValidatorPoolGetValidatorFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetValidatorFunc) PushHook

func (f *IValidatorPoolGetValidatorFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetValidator method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetValidatorFunc) PushReturn

func (f *IValidatorPoolGetValidatorFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetValidatorFunc) SetDefaultHook

func (f *IValidatorPoolGetValidatorFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

SetDefaultHook sets function that is called when the GetValidator method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetValidatorFunc) SetDefaultReturn

func (f *IValidatorPoolGetValidatorFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetValidatorFuncCall

type IValidatorPoolGetValidatorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetValidatorFuncCall is an object that describes an invocation of method GetValidator on an instance of MockIValidatorPool.

func (IValidatorPoolGetValidatorFuncCall) Args

func (c IValidatorPoolGetValidatorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetValidatorFuncCall) Results

func (c IValidatorPoolGetValidatorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetValidatorsAddressesFunc

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

IValidatorPoolGetValidatorsAddressesFunc describes the behavior when the GetValidatorsAddresses method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetValidatorsAddressesFunc) History

History returns a sequence of IValidatorPoolGetValidatorsAddressesFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetValidatorsAddressesFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetValidatorsAddresses method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetValidatorsAddressesFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetValidatorsAddressesFunc) SetDefaultHook

func (f *IValidatorPoolGetValidatorsAddressesFunc) SetDefaultHook(hook func(*bind.CallOpts) ([]common.Address, error))

SetDefaultHook sets function that is called when the GetValidatorsAddresses method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetValidatorsAddressesFunc) SetDefaultReturn

func (f *IValidatorPoolGetValidatorsAddressesFunc) SetDefaultReturn(r0 []common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetValidatorsAddressesFuncCall

type IValidatorPoolGetValidatorsAddressesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 []common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetValidatorsAddressesFuncCall is an object that describes an invocation of method GetValidatorsAddresses on an instance of MockIValidatorPool.

func (IValidatorPoolGetValidatorsAddressesFuncCall) Args

func (c IValidatorPoolGetValidatorsAddressesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetValidatorsAddressesFuncCall) Results

func (c IValidatorPoolGetValidatorsAddressesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolGetValidatorsCountFunc

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

IValidatorPoolGetValidatorsCountFunc describes the behavior when the GetValidatorsCount method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolGetValidatorsCountFunc) History

History returns a sequence of IValidatorPoolGetValidatorsCountFuncCall objects describing the invocations of this function.

func (*IValidatorPoolGetValidatorsCountFunc) PushHook

func (f *IValidatorPoolGetValidatorsCountFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetValidatorsCount method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolGetValidatorsCountFunc) PushReturn

func (f *IValidatorPoolGetValidatorsCountFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolGetValidatorsCountFunc) SetDefaultHook

func (f *IValidatorPoolGetValidatorsCountFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetValidatorsCount method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolGetValidatorsCountFunc) SetDefaultReturn

func (f *IValidatorPoolGetValidatorsCountFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolGetValidatorsCountFuncCall

type IValidatorPoolGetValidatorsCountFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolGetValidatorsCountFuncCall is an object that describes an invocation of method GetValidatorsCount on an instance of MockIValidatorPool.

func (IValidatorPoolGetValidatorsCountFuncCall) Args

func (c IValidatorPoolGetValidatorsCountFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolGetValidatorsCountFuncCall) Results

func (c IValidatorPoolGetValidatorsCountFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolInitializeETHDKGFunc

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

IValidatorPoolInitializeETHDKGFunc describes the behavior when the InitializeETHDKG method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolInitializeETHDKGFunc) History

History returns a sequence of IValidatorPoolInitializeETHDKGFuncCall objects describing the invocations of this function.

func (*IValidatorPoolInitializeETHDKGFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the InitializeETHDKG method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolInitializeETHDKGFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolInitializeETHDKGFunc) SetDefaultHook

func (f *IValidatorPoolInitializeETHDKGFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the InitializeETHDKG method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolInitializeETHDKGFunc) SetDefaultReturn

func (f *IValidatorPoolInitializeETHDKGFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolInitializeETHDKGFuncCall

type IValidatorPoolInitializeETHDKGFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolInitializeETHDKGFuncCall is an object that describes an invocation of method InitializeETHDKG on an instance of MockIValidatorPool.

func (IValidatorPoolInitializeETHDKGFuncCall) Args

func (c IValidatorPoolInitializeETHDKGFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolInitializeETHDKGFuncCall) Results

func (c IValidatorPoolInitializeETHDKGFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolInitializeFunc

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

IValidatorPoolInitializeFunc describes the behavior when the Initialize method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolInitializeFunc) History

History returns a sequence of IValidatorPoolInitializeFuncCall objects describing the invocations of this function.

func (*IValidatorPoolInitializeFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Initialize method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolInitializeFunc) PushReturn

func (f *IValidatorPoolInitializeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolInitializeFunc) SetDefaultHook

func (f *IValidatorPoolInitializeFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Initialize method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolInitializeFunc) SetDefaultReturn

func (f *IValidatorPoolInitializeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolInitializeFuncCall

type IValidatorPoolInitializeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolInitializeFuncCall is an object that describes an invocation of method Initialize on an instance of MockIValidatorPool.

func (IValidatorPoolInitializeFuncCall) Args

func (c IValidatorPoolInitializeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolInitializeFuncCall) Results

func (c IValidatorPoolInitializeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolIsAccusableFunc

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

IValidatorPoolIsAccusableFunc describes the behavior when the IsAccusable method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolIsAccusableFunc) History

History returns a sequence of IValidatorPoolIsAccusableFuncCall objects describing the invocations of this function.

func (*IValidatorPoolIsAccusableFunc) PushHook

func (f *IValidatorPoolIsAccusableFunc) PushHook(hook func(*bind.CallOpts, common.Address) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsAccusable method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolIsAccusableFunc) PushReturn

func (f *IValidatorPoolIsAccusableFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolIsAccusableFunc) SetDefaultHook

func (f *IValidatorPoolIsAccusableFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (bool, error))

SetDefaultHook sets function that is called when the IsAccusable method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolIsAccusableFunc) SetDefaultReturn

func (f *IValidatorPoolIsAccusableFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolIsAccusableFuncCall

type IValidatorPoolIsAccusableFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolIsAccusableFuncCall is an object that describes an invocation of method IsAccusable on an instance of MockIValidatorPool.

func (IValidatorPoolIsAccusableFuncCall) Args

func (c IValidatorPoolIsAccusableFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolIsAccusableFuncCall) Results

func (c IValidatorPoolIsAccusableFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolIsConsensusRunningFunc

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

IValidatorPoolIsConsensusRunningFunc describes the behavior when the IsConsensusRunning method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolIsConsensusRunningFunc) History

History returns a sequence of IValidatorPoolIsConsensusRunningFuncCall objects describing the invocations of this function.

func (*IValidatorPoolIsConsensusRunningFunc) PushHook

func (f *IValidatorPoolIsConsensusRunningFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsConsensusRunning method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolIsConsensusRunningFunc) PushReturn

func (f *IValidatorPoolIsConsensusRunningFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolIsConsensusRunningFunc) SetDefaultHook

func (f *IValidatorPoolIsConsensusRunningFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsConsensusRunning method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolIsConsensusRunningFunc) SetDefaultReturn

func (f *IValidatorPoolIsConsensusRunningFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolIsConsensusRunningFuncCall

type IValidatorPoolIsConsensusRunningFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolIsConsensusRunningFuncCall is an object that describes an invocation of method IsConsensusRunning on an instance of MockIValidatorPool.

func (IValidatorPoolIsConsensusRunningFuncCall) Args

func (c IValidatorPoolIsConsensusRunningFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolIsConsensusRunningFuncCall) Results

func (c IValidatorPoolIsConsensusRunningFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolIsInExitingQueueFunc

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

IValidatorPoolIsInExitingQueueFunc describes the behavior when the IsInExitingQueue method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolIsInExitingQueueFunc) History

History returns a sequence of IValidatorPoolIsInExitingQueueFuncCall objects describing the invocations of this function.

func (*IValidatorPoolIsInExitingQueueFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the IsInExitingQueue method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolIsInExitingQueueFunc) PushReturn

func (f *IValidatorPoolIsInExitingQueueFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolIsInExitingQueueFunc) SetDefaultHook

func (f *IValidatorPoolIsInExitingQueueFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (bool, error))

SetDefaultHook sets function that is called when the IsInExitingQueue method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolIsInExitingQueueFunc) SetDefaultReturn

func (f *IValidatorPoolIsInExitingQueueFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolIsInExitingQueueFuncCall

type IValidatorPoolIsInExitingQueueFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolIsInExitingQueueFuncCall is an object that describes an invocation of method IsInExitingQueue on an instance of MockIValidatorPool.

func (IValidatorPoolIsInExitingQueueFuncCall) Args

func (c IValidatorPoolIsInExitingQueueFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolIsInExitingQueueFuncCall) Results

func (c IValidatorPoolIsInExitingQueueFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolIsMaintenanceScheduledFunc

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

IValidatorPoolIsMaintenanceScheduledFunc describes the behavior when the IsMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolIsMaintenanceScheduledFunc) History

History returns a sequence of IValidatorPoolIsMaintenanceScheduledFuncCall objects describing the invocations of this function.

func (*IValidatorPoolIsMaintenanceScheduledFunc) PushHook

func (f *IValidatorPoolIsMaintenanceScheduledFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsMaintenanceScheduled method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolIsMaintenanceScheduledFunc) PushReturn

func (f *IValidatorPoolIsMaintenanceScheduledFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolIsMaintenanceScheduledFunc) SetDefaultHook

func (f *IValidatorPoolIsMaintenanceScheduledFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the IsMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolIsMaintenanceScheduledFunc) SetDefaultReturn

func (f *IValidatorPoolIsMaintenanceScheduledFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolIsMaintenanceScheduledFuncCall

type IValidatorPoolIsMaintenanceScheduledFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolIsMaintenanceScheduledFuncCall is an object that describes an invocation of method IsMaintenanceScheduled on an instance of MockIValidatorPool.

func (IValidatorPoolIsMaintenanceScheduledFuncCall) Args

func (c IValidatorPoolIsMaintenanceScheduledFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolIsMaintenanceScheduledFuncCall) Results

func (c IValidatorPoolIsMaintenanceScheduledFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolIsValidatorFunc

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

IValidatorPoolIsValidatorFunc describes the behavior when the IsValidator method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolIsValidatorFunc) History

History returns a sequence of IValidatorPoolIsValidatorFuncCall objects describing the invocations of this function.

func (*IValidatorPoolIsValidatorFunc) PushHook

func (f *IValidatorPoolIsValidatorFunc) PushHook(hook func(*bind.CallOpts, common.Address) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the IsValidator method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolIsValidatorFunc) PushReturn

func (f *IValidatorPoolIsValidatorFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolIsValidatorFunc) SetDefaultHook

func (f *IValidatorPoolIsValidatorFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (bool, error))

SetDefaultHook sets function that is called when the IsValidator method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolIsValidatorFunc) SetDefaultReturn

func (f *IValidatorPoolIsValidatorFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolIsValidatorFuncCall

type IValidatorPoolIsValidatorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolIsValidatorFuncCall is an object that describes an invocation of method IsValidator on an instance of MockIValidatorPool.

func (IValidatorPoolIsValidatorFuncCall) Args

func (c IValidatorPoolIsValidatorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolIsValidatorFuncCall) Results

func (c IValidatorPoolIsValidatorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolMajorSlashFunc

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

IValidatorPoolMajorSlashFunc describes the behavior when the MajorSlash method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolMajorSlashFunc) History

History returns a sequence of IValidatorPoolMajorSlashFuncCall objects describing the invocations of this function.

func (*IValidatorPoolMajorSlashFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the MajorSlash method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolMajorSlashFunc) PushReturn

func (f *IValidatorPoolMajorSlashFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolMajorSlashFunc) SetDefaultHook

SetDefaultHook sets function that is called when the MajorSlash method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolMajorSlashFunc) SetDefaultReturn

func (f *IValidatorPoolMajorSlashFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolMajorSlashFuncCall

type IValidatorPoolMajorSlashFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolMajorSlashFuncCall is an object that describes an invocation of method MajorSlash on an instance of MockIValidatorPool.

func (IValidatorPoolMajorSlashFuncCall) Args

func (c IValidatorPoolMajorSlashFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolMajorSlashFuncCall) Results

func (c IValidatorPoolMajorSlashFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolMinorSlashFunc

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

IValidatorPoolMinorSlashFunc describes the behavior when the MinorSlash method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolMinorSlashFunc) History

History returns a sequence of IValidatorPoolMinorSlashFuncCall objects describing the invocations of this function.

func (*IValidatorPoolMinorSlashFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the MinorSlash method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolMinorSlashFunc) PushReturn

func (f *IValidatorPoolMinorSlashFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolMinorSlashFunc) SetDefaultHook

SetDefaultHook sets function that is called when the MinorSlash method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolMinorSlashFunc) SetDefaultReturn

func (f *IValidatorPoolMinorSlashFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolMinorSlashFuncCall

type IValidatorPoolMinorSlashFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolMinorSlashFuncCall is an object that describes an invocation of method MinorSlash on an instance of MockIValidatorPool.

func (IValidatorPoolMinorSlashFuncCall) Args

func (c IValidatorPoolMinorSlashFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolMinorSlashFuncCall) Results

func (c IValidatorPoolMinorSlashFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolOnERC721ReceivedFunc

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

IValidatorPoolOnERC721ReceivedFunc describes the behavior when the OnERC721Received method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolOnERC721ReceivedFunc) History

History returns a sequence of IValidatorPoolOnERC721ReceivedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolOnERC721ReceivedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the OnERC721Received method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolOnERC721ReceivedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolOnERC721ReceivedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the OnERC721Received method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolOnERC721ReceivedFunc) SetDefaultReturn

func (f *IValidatorPoolOnERC721ReceivedFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolOnERC721ReceivedFuncCall

type IValidatorPoolOnERC721ReceivedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolOnERC721ReceivedFuncCall is an object that describes an invocation of method OnERC721Received on an instance of MockIValidatorPool.

func (IValidatorPoolOnERC721ReceivedFuncCall) Args

func (c IValidatorPoolOnERC721ReceivedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolOnERC721ReceivedFuncCall) Results

func (c IValidatorPoolOnERC721ReceivedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolPOSITIONLOCKPERIODFunc

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

IValidatorPoolPOSITIONLOCKPERIODFunc describes the behavior when the POSITIONLOCKPERIOD method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolPOSITIONLOCKPERIODFunc) History

History returns a sequence of IValidatorPoolPOSITIONLOCKPERIODFuncCall objects describing the invocations of this function.

func (*IValidatorPoolPOSITIONLOCKPERIODFunc) PushHook

func (f *IValidatorPoolPOSITIONLOCKPERIODFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the POSITIONLOCKPERIOD method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolPOSITIONLOCKPERIODFunc) PushReturn

func (f *IValidatorPoolPOSITIONLOCKPERIODFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolPOSITIONLOCKPERIODFunc) SetDefaultHook

func (f *IValidatorPoolPOSITIONLOCKPERIODFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the POSITIONLOCKPERIOD method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolPOSITIONLOCKPERIODFunc) SetDefaultReturn

func (f *IValidatorPoolPOSITIONLOCKPERIODFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolPOSITIONLOCKPERIODFuncCall

type IValidatorPoolPOSITIONLOCKPERIODFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolPOSITIONLOCKPERIODFuncCall is an object that describes an invocation of method POSITIONLOCKPERIOD on an instance of MockIValidatorPool.

func (IValidatorPoolPOSITIONLOCKPERIODFuncCall) Args

func (c IValidatorPoolPOSITIONLOCKPERIODFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolPOSITIONLOCKPERIODFuncCall) Results

func (c IValidatorPoolPOSITIONLOCKPERIODFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolParseInitializedFunc added in v0.0.2

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

IValidatorPoolParseInitializedFunc describes the behavior when the ParseInitialized method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolParseInitializedFunc) History added in v0.0.2

History returns a sequence of IValidatorPoolParseInitializedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolParseInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the ParseInitialized method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolParseInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolParseInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the ParseInitialized method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolParseInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolParseInitializedFuncCall added in v0.0.2

type IValidatorPoolParseInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolInitialized
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolParseInitializedFuncCall is an object that describes an invocation of method ParseInitialized on an instance of MockIValidatorPool.

func (IValidatorPoolParseInitializedFuncCall) Args added in v0.0.2

func (c IValidatorPoolParseInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolParseInitializedFuncCall) Results added in v0.0.2

func (c IValidatorPoolParseInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolParseMaintenanceScheduledFunc

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

IValidatorPoolParseMaintenanceScheduledFunc describes the behavior when the ParseMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolParseMaintenanceScheduledFunc) History

History returns a sequence of IValidatorPoolParseMaintenanceScheduledFuncCall objects describing the invocations of this function.

func (*IValidatorPoolParseMaintenanceScheduledFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseMaintenanceScheduled method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolParseMaintenanceScheduledFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolParseMaintenanceScheduledFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolParseMaintenanceScheduledFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolParseMaintenanceScheduledFuncCall

type IValidatorPoolParseMaintenanceScheduledFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolMaintenanceScheduled
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolParseMaintenanceScheduledFuncCall is an object that describes an invocation of method ParseMaintenanceScheduled on an instance of MockIValidatorPool.

func (IValidatorPoolParseMaintenanceScheduledFuncCall) Args

func (c IValidatorPoolParseMaintenanceScheduledFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolParseMaintenanceScheduledFuncCall) Results

func (c IValidatorPoolParseMaintenanceScheduledFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolParseValidatorJoinedFunc

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

IValidatorPoolParseValidatorJoinedFunc describes the behavior when the ParseValidatorJoined method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolParseValidatorJoinedFunc) History

History returns a sequence of IValidatorPoolParseValidatorJoinedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolParseValidatorJoinedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValidatorJoined method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolParseValidatorJoinedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolParseValidatorJoinedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValidatorJoined method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolParseValidatorJoinedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolParseValidatorJoinedFuncCall

type IValidatorPoolParseValidatorJoinedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorJoined
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolParseValidatorJoinedFuncCall is an object that describes an invocation of method ParseValidatorJoined on an instance of MockIValidatorPool.

func (IValidatorPoolParseValidatorJoinedFuncCall) Args

func (c IValidatorPoolParseValidatorJoinedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolParseValidatorJoinedFuncCall) Results

func (c IValidatorPoolParseValidatorJoinedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolParseValidatorLeftFunc

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

IValidatorPoolParseValidatorLeftFunc describes the behavior when the ParseValidatorLeft method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolParseValidatorLeftFunc) History

History returns a sequence of IValidatorPoolParseValidatorLeftFuncCall objects describing the invocations of this function.

func (*IValidatorPoolParseValidatorLeftFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValidatorLeft method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolParseValidatorLeftFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolParseValidatorLeftFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValidatorLeft method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolParseValidatorLeftFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolParseValidatorLeftFuncCall

type IValidatorPoolParseValidatorLeftFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorLeft
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolParseValidatorLeftFuncCall is an object that describes an invocation of method ParseValidatorLeft on an instance of MockIValidatorPool.

func (IValidatorPoolParseValidatorLeftFuncCall) Args

func (c IValidatorPoolParseValidatorLeftFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolParseValidatorLeftFuncCall) Results

func (c IValidatorPoolParseValidatorLeftFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolParseValidatorMajorSlashedFunc

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

IValidatorPoolParseValidatorMajorSlashedFunc describes the behavior when the ParseValidatorMajorSlashed method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolParseValidatorMajorSlashedFunc) History

History returns a sequence of IValidatorPoolParseValidatorMajorSlashedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolParseValidatorMajorSlashedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValidatorMajorSlashed method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolParseValidatorMajorSlashedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolParseValidatorMajorSlashedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValidatorMajorSlashed method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolParseValidatorMajorSlashedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolParseValidatorMajorSlashedFuncCall

type IValidatorPoolParseValidatorMajorSlashedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorMajorSlashed
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolParseValidatorMajorSlashedFuncCall is an object that describes an invocation of method ParseValidatorMajorSlashed on an instance of MockIValidatorPool.

func (IValidatorPoolParseValidatorMajorSlashedFuncCall) Args

func (c IValidatorPoolParseValidatorMajorSlashedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolParseValidatorMajorSlashedFuncCall) Results

func (c IValidatorPoolParseValidatorMajorSlashedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolParseValidatorMinorSlashedFunc

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

IValidatorPoolParseValidatorMinorSlashedFunc describes the behavior when the ParseValidatorMinorSlashed method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolParseValidatorMinorSlashedFunc) History

History returns a sequence of IValidatorPoolParseValidatorMinorSlashedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolParseValidatorMinorSlashedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseValidatorMinorSlashed method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolParseValidatorMinorSlashedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolParseValidatorMinorSlashedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseValidatorMinorSlashed method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolParseValidatorMinorSlashedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolParseValidatorMinorSlashedFuncCall

type IValidatorPoolParseValidatorMinorSlashedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorPoolValidatorMinorSlashed
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolParseValidatorMinorSlashedFuncCall is an object that describes an invocation of method ParseValidatorMinorSlashed on an instance of MockIValidatorPool.

func (IValidatorPoolParseValidatorMinorSlashedFuncCall) Args

func (c IValidatorPoolParseValidatorMinorSlashedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolParseValidatorMinorSlashedFuncCall) Results

func (c IValidatorPoolParseValidatorMinorSlashedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolPauseConsensusFunc

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

IValidatorPoolPauseConsensusFunc describes the behavior when the PauseConsensus method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolPauseConsensusFunc) History

History returns a sequence of IValidatorPoolPauseConsensusFuncCall objects describing the invocations of this function.

func (*IValidatorPoolPauseConsensusFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the PauseConsensus method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolPauseConsensusFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolPauseConsensusFunc) SetDefaultHook

func (f *IValidatorPoolPauseConsensusFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the PauseConsensus method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolPauseConsensusFunc) SetDefaultReturn

func (f *IValidatorPoolPauseConsensusFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolPauseConsensusFuncCall

type IValidatorPoolPauseConsensusFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolPauseConsensusFuncCall is an object that describes an invocation of method PauseConsensus on an instance of MockIValidatorPool.

func (IValidatorPoolPauseConsensusFuncCall) Args

func (c IValidatorPoolPauseConsensusFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolPauseConsensusFuncCall) Results

func (c IValidatorPoolPauseConsensusFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolPauseConsensusOnArbitraryHeightFunc

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

IValidatorPoolPauseConsensusOnArbitraryHeightFunc describes the behavior when the PauseConsensusOnArbitraryHeight method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolPauseConsensusOnArbitraryHeightFunc) History

History returns a sequence of IValidatorPoolPauseConsensusOnArbitraryHeightFuncCall objects describing the invocations of this function.

func (*IValidatorPoolPauseConsensusOnArbitraryHeightFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the PauseConsensusOnArbitraryHeight method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolPauseConsensusOnArbitraryHeightFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolPauseConsensusOnArbitraryHeightFunc) SetDefaultHook

SetDefaultHook sets function that is called when the PauseConsensusOnArbitraryHeight method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolPauseConsensusOnArbitraryHeightFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolPauseConsensusOnArbitraryHeightFuncCall

type IValidatorPoolPauseConsensusOnArbitraryHeightFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolPauseConsensusOnArbitraryHeightFuncCall is an object that describes an invocation of method PauseConsensusOnArbitraryHeight on an instance of MockIValidatorPool.

func (IValidatorPoolPauseConsensusOnArbitraryHeightFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolPauseConsensusOnArbitraryHeightFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolReceiveFunc

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

IValidatorPoolReceiveFunc describes the behavior when the Receive method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolReceiveFunc) History

History returns a sequence of IValidatorPoolReceiveFuncCall objects describing the invocations of this function.

func (*IValidatorPoolReceiveFunc) PushHook

func (f *IValidatorPoolReceiveFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Receive method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolReceiveFunc) PushReturn

func (f *IValidatorPoolReceiveFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolReceiveFunc) SetDefaultHook

func (f *IValidatorPoolReceiveFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Receive method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolReceiveFunc) SetDefaultReturn

func (f *IValidatorPoolReceiveFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolReceiveFuncCall

type IValidatorPoolReceiveFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolReceiveFuncCall is an object that describes an invocation of method Receive on an instance of MockIValidatorPool.

func (IValidatorPoolReceiveFuncCall) Args

func (c IValidatorPoolReceiveFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolReceiveFuncCall) Results

func (c IValidatorPoolReceiveFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolRegisterValidatorsFunc

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

IValidatorPoolRegisterValidatorsFunc describes the behavior when the RegisterValidators method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolRegisterValidatorsFunc) History

History returns a sequence of IValidatorPoolRegisterValidatorsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolRegisterValidatorsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the RegisterValidators method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolRegisterValidatorsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolRegisterValidatorsFunc) SetDefaultHook

SetDefaultHook sets function that is called when the RegisterValidators method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolRegisterValidatorsFunc) SetDefaultReturn

func (f *IValidatorPoolRegisterValidatorsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolRegisterValidatorsFuncCall

type IValidatorPoolRegisterValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolRegisterValidatorsFuncCall is an object that describes an invocation of method RegisterValidators on an instance of MockIValidatorPool.

func (IValidatorPoolRegisterValidatorsFuncCall) Args

func (c IValidatorPoolRegisterValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolRegisterValidatorsFuncCall) Results

func (c IValidatorPoolRegisterValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolScheduleMaintenanceFunc

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

IValidatorPoolScheduleMaintenanceFunc describes the behavior when the ScheduleMaintenance method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolScheduleMaintenanceFunc) History

History returns a sequence of IValidatorPoolScheduleMaintenanceFuncCall objects describing the invocations of this function.

func (*IValidatorPoolScheduleMaintenanceFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ScheduleMaintenance method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolScheduleMaintenanceFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolScheduleMaintenanceFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ScheduleMaintenance method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolScheduleMaintenanceFunc) SetDefaultReturn

func (f *IValidatorPoolScheduleMaintenanceFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolScheduleMaintenanceFuncCall

type IValidatorPoolScheduleMaintenanceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolScheduleMaintenanceFuncCall is an object that describes an invocation of method ScheduleMaintenance on an instance of MockIValidatorPool.

func (IValidatorPoolScheduleMaintenanceFuncCall) Args

func (c IValidatorPoolScheduleMaintenanceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolScheduleMaintenanceFuncCall) Results

func (c IValidatorPoolScheduleMaintenanceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSetDisputerRewardFunc

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

IValidatorPoolSetDisputerRewardFunc describes the behavior when the SetDisputerReward method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSetDisputerRewardFunc) History

History returns a sequence of IValidatorPoolSetDisputerRewardFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSetDisputerRewardFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetDisputerReward method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSetDisputerRewardFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSetDisputerRewardFunc) SetDefaultHook

func (f *IValidatorPoolSetDisputerRewardFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetDisputerReward method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSetDisputerRewardFunc) SetDefaultReturn

func (f *IValidatorPoolSetDisputerRewardFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSetDisputerRewardFuncCall

type IValidatorPoolSetDisputerRewardFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSetDisputerRewardFuncCall is an object that describes an invocation of method SetDisputerReward on an instance of MockIValidatorPool.

func (IValidatorPoolSetDisputerRewardFuncCall) Args

func (c IValidatorPoolSetDisputerRewardFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSetDisputerRewardFuncCall) Results

func (c IValidatorPoolSetDisputerRewardFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSetLocationFunc

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

IValidatorPoolSetLocationFunc describes the behavior when the SetLocation method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSetLocationFunc) History

History returns a sequence of IValidatorPoolSetLocationFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSetLocationFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetLocation method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSetLocationFunc) PushReturn

func (f *IValidatorPoolSetLocationFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSetLocationFunc) SetDefaultHook

func (f *IValidatorPoolSetLocationFunc) SetDefaultHook(hook func(*bind.TransactOpts, string) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetLocation method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSetLocationFunc) SetDefaultReturn

func (f *IValidatorPoolSetLocationFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSetLocationFuncCall

type IValidatorPoolSetLocationFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 string
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSetLocationFuncCall is an object that describes an invocation of method SetLocation on an instance of MockIValidatorPool.

func (IValidatorPoolSetLocationFuncCall) Args

func (c IValidatorPoolSetLocationFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSetLocationFuncCall) Results

func (c IValidatorPoolSetLocationFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc added in v0.0.5

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

IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc describes the behavior when the SetMaxIntervalWithoutSnapshots method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc) History added in v0.0.5

History returns a sequence of IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the SetMaxIntervalWithoutSnapshots method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the SetMaxIntervalWithoutSnapshots method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc) SetDefaultReturn added in v0.0.5

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall added in v0.0.5

type IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall is an object that describes an invocation of method SetMaxIntervalWithoutSnapshots on an instance of MockIValidatorPool.

func (IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall) Results added in v0.0.5

func (c IValidatorPoolSetMaxIntervalWithoutSnapshotsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSetMaxNumValidatorsFunc

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

IValidatorPoolSetMaxNumValidatorsFunc describes the behavior when the SetMaxNumValidators method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSetMaxNumValidatorsFunc) History

History returns a sequence of IValidatorPoolSetMaxNumValidatorsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSetMaxNumValidatorsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetMaxNumValidators method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSetMaxNumValidatorsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSetMaxNumValidatorsFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SetMaxNumValidators method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSetMaxNumValidatorsFunc) SetDefaultReturn

func (f *IValidatorPoolSetMaxNumValidatorsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSetMaxNumValidatorsFuncCall

type IValidatorPoolSetMaxNumValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSetMaxNumValidatorsFuncCall is an object that describes an invocation of method SetMaxNumValidators on an instance of MockIValidatorPool.

func (IValidatorPoolSetMaxNumValidatorsFuncCall) Args

func (c IValidatorPoolSetMaxNumValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSetMaxNumValidatorsFuncCall) Results

func (c IValidatorPoolSetMaxNumValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSetStakeAmountFunc

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

IValidatorPoolSetStakeAmountFunc describes the behavior when the SetStakeAmount method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSetStakeAmountFunc) History

History returns a sequence of IValidatorPoolSetStakeAmountFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSetStakeAmountFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetStakeAmount method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSetStakeAmountFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSetStakeAmountFunc) SetDefaultHook

func (f *IValidatorPoolSetStakeAmountFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the SetStakeAmount method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSetStakeAmountFunc) SetDefaultReturn

func (f *IValidatorPoolSetStakeAmountFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSetStakeAmountFuncCall

type IValidatorPoolSetStakeAmountFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSetStakeAmountFuncCall is an object that describes an invocation of method SetStakeAmount on an instance of MockIValidatorPool.

func (IValidatorPoolSetStakeAmountFuncCall) Args

func (c IValidatorPoolSetStakeAmountFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSetStakeAmountFuncCall) Results

func (c IValidatorPoolSetStakeAmountFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSkimExcessEthFunc

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

IValidatorPoolSkimExcessEthFunc describes the behavior when the SkimExcessEth method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSkimExcessEthFunc) History

History returns a sequence of IValidatorPoolSkimExcessEthFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSkimExcessEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SkimExcessEth method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSkimExcessEthFunc) PushReturn

func (f *IValidatorPoolSkimExcessEthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSkimExcessEthFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SkimExcessEth method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSkimExcessEthFunc) SetDefaultReturn

func (f *IValidatorPoolSkimExcessEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSkimExcessEthFuncCall

type IValidatorPoolSkimExcessEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSkimExcessEthFuncCall is an object that describes an invocation of method SkimExcessEth on an instance of MockIValidatorPool.

func (IValidatorPoolSkimExcessEthFuncCall) Args

func (c IValidatorPoolSkimExcessEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSkimExcessEthFuncCall) Results

func (c IValidatorPoolSkimExcessEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolSkimExcessTokenFunc

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

IValidatorPoolSkimExcessTokenFunc describes the behavior when the SkimExcessToken method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolSkimExcessTokenFunc) History

History returns a sequence of IValidatorPoolSkimExcessTokenFuncCall objects describing the invocations of this function.

func (*IValidatorPoolSkimExcessTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SkimExcessToken method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolSkimExcessTokenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolSkimExcessTokenFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SkimExcessToken method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolSkimExcessTokenFunc) SetDefaultReturn

func (f *IValidatorPoolSkimExcessTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolSkimExcessTokenFuncCall

type IValidatorPoolSkimExcessTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolSkimExcessTokenFuncCall is an object that describes an invocation of method SkimExcessToken on an instance of MockIValidatorPool.

func (IValidatorPoolSkimExcessTokenFuncCall) Args

func (c IValidatorPoolSkimExcessTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolSkimExcessTokenFuncCall) Results

func (c IValidatorPoolSkimExcessTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolTryGetTokenIDFunc

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

IValidatorPoolTryGetTokenIDFunc describes the behavior when the TryGetTokenID method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolTryGetTokenIDFunc) History

History returns a sequence of IValidatorPoolTryGetTokenIDFuncCall objects describing the invocations of this function.

func (*IValidatorPoolTryGetTokenIDFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the TryGetTokenID method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolTryGetTokenIDFunc) PushReturn

func (f *IValidatorPoolTryGetTokenIDFunc) PushReturn(r0 bool, r1 common.Address, r2 *big.Int, r3 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolTryGetTokenIDFunc) SetDefaultHook

func (f *IValidatorPoolTryGetTokenIDFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (bool, common.Address, *big.Int, error))

SetDefaultHook sets function that is called when the TryGetTokenID method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolTryGetTokenIDFunc) SetDefaultReturn

func (f *IValidatorPoolTryGetTokenIDFunc) SetDefaultReturn(r0 bool, r1 common.Address, r2 *big.Int, r3 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolTryGetTokenIDFuncCall

type IValidatorPoolTryGetTokenIDFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 common.Address
	// Result2 is the value of the 3rd result returned from this method
	// invocation.
	Result2 *big.Int
	// Result3 is the value of the 4th result returned from this method
	// invocation.
	Result3 error
}

IValidatorPoolTryGetTokenIDFuncCall is an object that describes an invocation of method TryGetTokenID on an instance of MockIValidatorPool.

func (IValidatorPoolTryGetTokenIDFuncCall) Args

func (c IValidatorPoolTryGetTokenIDFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolTryGetTokenIDFuncCall) Results

func (c IValidatorPoolTryGetTokenIDFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolUnregisterAllValidatorsFunc

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

IValidatorPoolUnregisterAllValidatorsFunc describes the behavior when the UnregisterAllValidators method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolUnregisterAllValidatorsFunc) History

History returns a sequence of IValidatorPoolUnregisterAllValidatorsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolUnregisterAllValidatorsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the UnregisterAllValidators method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolUnregisterAllValidatorsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolUnregisterAllValidatorsFunc) SetDefaultHook

SetDefaultHook sets function that is called when the UnregisterAllValidators method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolUnregisterAllValidatorsFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolUnregisterAllValidatorsFuncCall

type IValidatorPoolUnregisterAllValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolUnregisterAllValidatorsFuncCall is an object that describes an invocation of method UnregisterAllValidators on an instance of MockIValidatorPool.

func (IValidatorPoolUnregisterAllValidatorsFuncCall) Args

func (c IValidatorPoolUnregisterAllValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolUnregisterAllValidatorsFuncCall) Results

func (c IValidatorPoolUnregisterAllValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolUnregisterValidatorsFunc

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

IValidatorPoolUnregisterValidatorsFunc describes the behavior when the UnregisterValidators method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolUnregisterValidatorsFunc) History

History returns a sequence of IValidatorPoolUnregisterValidatorsFuncCall objects describing the invocations of this function.

func (*IValidatorPoolUnregisterValidatorsFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the UnregisterValidators method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolUnregisterValidatorsFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolUnregisterValidatorsFunc) SetDefaultHook

SetDefaultHook sets function that is called when the UnregisterValidators method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolUnregisterValidatorsFunc) SetDefaultReturn

func (f *IValidatorPoolUnregisterValidatorsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolUnregisterValidatorsFuncCall

type IValidatorPoolUnregisterValidatorsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolUnregisterValidatorsFuncCall is an object that describes an invocation of method UnregisterValidators on an instance of MockIValidatorPool.

func (IValidatorPoolUnregisterValidatorsFuncCall) Args

func (c IValidatorPoolUnregisterValidatorsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolUnregisterValidatorsFuncCall) Results

func (c IValidatorPoolUnregisterValidatorsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolWatchInitializedFunc added in v0.0.2

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

IValidatorPoolWatchInitializedFunc describes the behavior when the WatchInitialized method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolWatchInitializedFunc) History added in v0.0.2

History returns a sequence of IValidatorPoolWatchInitializedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolWatchInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the WatchInitialized method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolWatchInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolWatchInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the WatchInitialized method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolWatchInitializedFunc) SetDefaultReturn added in v0.0.2

func (f *IValidatorPoolWatchInitializedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolWatchInitializedFuncCall added in v0.0.2

type IValidatorPoolWatchInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorPoolInitialized
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolWatchInitializedFuncCall is an object that describes an invocation of method WatchInitialized on an instance of MockIValidatorPool.

func (IValidatorPoolWatchInitializedFuncCall) Args added in v0.0.2

func (c IValidatorPoolWatchInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolWatchInitializedFuncCall) Results added in v0.0.2

func (c IValidatorPoolWatchInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolWatchMaintenanceScheduledFunc

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

IValidatorPoolWatchMaintenanceScheduledFunc describes the behavior when the WatchMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolWatchMaintenanceScheduledFunc) History

History returns a sequence of IValidatorPoolWatchMaintenanceScheduledFuncCall objects describing the invocations of this function.

func (*IValidatorPoolWatchMaintenanceScheduledFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchMaintenanceScheduled method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolWatchMaintenanceScheduledFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolWatchMaintenanceScheduledFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchMaintenanceScheduled method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolWatchMaintenanceScheduledFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolWatchMaintenanceScheduledFuncCall

type IValidatorPoolWatchMaintenanceScheduledFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorPoolMaintenanceScheduled
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolWatchMaintenanceScheduledFuncCall is an object that describes an invocation of method WatchMaintenanceScheduled on an instance of MockIValidatorPool.

func (IValidatorPoolWatchMaintenanceScheduledFuncCall) Args

func (c IValidatorPoolWatchMaintenanceScheduledFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolWatchMaintenanceScheduledFuncCall) Results

func (c IValidatorPoolWatchMaintenanceScheduledFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolWatchValidatorJoinedFunc

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

IValidatorPoolWatchValidatorJoinedFunc describes the behavior when the WatchValidatorJoined method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolWatchValidatorJoinedFunc) History

History returns a sequence of IValidatorPoolWatchValidatorJoinedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolWatchValidatorJoinedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValidatorJoined method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolWatchValidatorJoinedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolWatchValidatorJoinedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchValidatorJoined method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolWatchValidatorJoinedFunc) SetDefaultReturn

func (f *IValidatorPoolWatchValidatorJoinedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolWatchValidatorJoinedFuncCall

type IValidatorPoolWatchValidatorJoinedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorPoolValidatorJoined
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolWatchValidatorJoinedFuncCall is an object that describes an invocation of method WatchValidatorJoined on an instance of MockIValidatorPool.

func (IValidatorPoolWatchValidatorJoinedFuncCall) Args

func (c IValidatorPoolWatchValidatorJoinedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolWatchValidatorJoinedFuncCall) Results

func (c IValidatorPoolWatchValidatorJoinedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolWatchValidatorLeftFunc

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

IValidatorPoolWatchValidatorLeftFunc describes the behavior when the WatchValidatorLeft method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolWatchValidatorLeftFunc) History

History returns a sequence of IValidatorPoolWatchValidatorLeftFuncCall objects describing the invocations of this function.

func (*IValidatorPoolWatchValidatorLeftFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValidatorLeft method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolWatchValidatorLeftFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolWatchValidatorLeftFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchValidatorLeft method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolWatchValidatorLeftFunc) SetDefaultReturn

func (f *IValidatorPoolWatchValidatorLeftFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolWatchValidatorLeftFuncCall

type IValidatorPoolWatchValidatorLeftFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorPoolValidatorLeft
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolWatchValidatorLeftFuncCall is an object that describes an invocation of method WatchValidatorLeft on an instance of MockIValidatorPool.

func (IValidatorPoolWatchValidatorLeftFuncCall) Args

func (c IValidatorPoolWatchValidatorLeftFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolWatchValidatorLeftFuncCall) Results

func (c IValidatorPoolWatchValidatorLeftFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolWatchValidatorMajorSlashedFunc

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

IValidatorPoolWatchValidatorMajorSlashedFunc describes the behavior when the WatchValidatorMajorSlashed method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolWatchValidatorMajorSlashedFunc) History

History returns a sequence of IValidatorPoolWatchValidatorMajorSlashedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolWatchValidatorMajorSlashedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValidatorMajorSlashed method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolWatchValidatorMajorSlashedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolWatchValidatorMajorSlashedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchValidatorMajorSlashed method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolWatchValidatorMajorSlashedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolWatchValidatorMajorSlashedFuncCall

type IValidatorPoolWatchValidatorMajorSlashedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorPoolValidatorMajorSlashed
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolWatchValidatorMajorSlashedFuncCall is an object that describes an invocation of method WatchValidatorMajorSlashed on an instance of MockIValidatorPool.

func (IValidatorPoolWatchValidatorMajorSlashedFuncCall) Args

func (c IValidatorPoolWatchValidatorMajorSlashedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolWatchValidatorMajorSlashedFuncCall) Results

func (c IValidatorPoolWatchValidatorMajorSlashedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorPoolWatchValidatorMinorSlashedFunc

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

IValidatorPoolWatchValidatorMinorSlashedFunc describes the behavior when the WatchValidatorMinorSlashed method of the parent MockIValidatorPool instance is invoked.

func (*IValidatorPoolWatchValidatorMinorSlashedFunc) History

History returns a sequence of IValidatorPoolWatchValidatorMinorSlashedFuncCall objects describing the invocations of this function.

func (*IValidatorPoolWatchValidatorMinorSlashedFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchValidatorMinorSlashed method of the parent MockIValidatorPool instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorPoolWatchValidatorMinorSlashedFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorPoolWatchValidatorMinorSlashedFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchValidatorMinorSlashed method of the parent MockIValidatorPool instance is invoked and the hook queue is empty.

func (*IValidatorPoolWatchValidatorMinorSlashedFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorPoolWatchValidatorMinorSlashedFuncCall

type IValidatorPoolWatchValidatorMinorSlashedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorPoolValidatorMinorSlashed
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorPoolWatchValidatorMinorSlashedFuncCall is an object that describes an invocation of method WatchValidatorMinorSlashed on an instance of MockIValidatorPool.

func (IValidatorPoolWatchValidatorMinorSlashedFuncCall) Args

func (c IValidatorPoolWatchValidatorMinorSlashedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorPoolWatchValidatorMinorSlashedFuncCall) Results

func (c IValidatorPoolWatchValidatorMinorSlashedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingApproveFunc

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

IValidatorStakingApproveFunc describes the behavior when the Approve method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingApproveFunc) History

History returns a sequence of IValidatorStakingApproveFuncCall objects describing the invocations of this function.

func (*IValidatorStakingApproveFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Approve method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingApproveFunc) PushReturn

func (f *IValidatorStakingApproveFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingApproveFunc) SetDefaultHook

func (f *IValidatorStakingApproveFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Approve method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingApproveFunc) SetDefaultReturn

func (f *IValidatorStakingApproveFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingApproveFuncCall

type IValidatorStakingApproveFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingApproveFuncCall is an object that describes an invocation of method Approve on an instance of MockIValidatorStaking.

func (IValidatorStakingApproveFuncCall) Args

func (c IValidatorStakingApproveFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingApproveFuncCall) Results

func (c IValidatorStakingApproveFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingBalanceOfFunc

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

IValidatorStakingBalanceOfFunc describes the behavior when the BalanceOf method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingBalanceOfFunc) History

History returns a sequence of IValidatorStakingBalanceOfFuncCall objects describing the invocations of this function.

func (*IValidatorStakingBalanceOfFunc) PushHook

func (f *IValidatorStakingBalanceOfFunc) PushHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the BalanceOf method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingBalanceOfFunc) PushReturn

func (f *IValidatorStakingBalanceOfFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingBalanceOfFunc) SetDefaultHook

func (f *IValidatorStakingBalanceOfFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address) (*big.Int, error))

SetDefaultHook sets function that is called when the BalanceOf method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingBalanceOfFunc) SetDefaultReturn

func (f *IValidatorStakingBalanceOfFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingBalanceOfFuncCall

type IValidatorStakingBalanceOfFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingBalanceOfFuncCall is an object that describes an invocation of method BalanceOf on an instance of MockIValidatorStaking.

func (IValidatorStakingBalanceOfFuncCall) Args

func (c IValidatorStakingBalanceOfFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingBalanceOfFuncCall) Results

func (c IValidatorStakingBalanceOfFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingBurnFunc

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

IValidatorStakingBurnFunc describes the behavior when the Burn method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingBurnFunc) History

History returns a sequence of IValidatorStakingBurnFuncCall objects describing the invocations of this function.

func (*IValidatorStakingBurnFunc) PushHook

func (f *IValidatorStakingBurnFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Burn method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingBurnFunc) PushReturn

func (f *IValidatorStakingBurnFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingBurnFunc) SetDefaultHook

func (f *IValidatorStakingBurnFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Burn method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingBurnFunc) SetDefaultReturn

func (f *IValidatorStakingBurnFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingBurnFuncCall

type IValidatorStakingBurnFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingBurnFuncCall is an object that describes an invocation of method Burn on an instance of MockIValidatorStaking.

func (IValidatorStakingBurnFuncCall) Args

func (c IValidatorStakingBurnFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingBurnFuncCall) Results

func (c IValidatorStakingBurnFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingBurnToFunc

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

IValidatorStakingBurnToFunc describes the behavior when the BurnTo method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingBurnToFunc) History

History returns a sequence of IValidatorStakingBurnToFuncCall objects describing the invocations of this function.

func (*IValidatorStakingBurnToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the BurnTo method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingBurnToFunc) PushReturn

func (f *IValidatorStakingBurnToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingBurnToFunc) SetDefaultHook

func (f *IValidatorStakingBurnToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the BurnTo method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingBurnToFunc) SetDefaultReturn

func (f *IValidatorStakingBurnToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingBurnToFuncCall

type IValidatorStakingBurnToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingBurnToFuncCall is an object that describes an invocation of method BurnTo on an instance of MockIValidatorStaking.

func (IValidatorStakingBurnToFuncCall) Args

func (c IValidatorStakingBurnToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingBurnToFuncCall) Results

func (c IValidatorStakingBurnToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCircuitBreakerStateFunc

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

IValidatorStakingCircuitBreakerStateFunc describes the behavior when the CircuitBreakerState method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCircuitBreakerStateFunc) History

History returns a sequence of IValidatorStakingCircuitBreakerStateFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCircuitBreakerStateFunc) PushHook

func (f *IValidatorStakingCircuitBreakerStateFunc) PushHook(hook func(*bind.CallOpts) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the CircuitBreakerState method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCircuitBreakerStateFunc) PushReturn

func (f *IValidatorStakingCircuitBreakerStateFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCircuitBreakerStateFunc) SetDefaultHook

func (f *IValidatorStakingCircuitBreakerStateFunc) SetDefaultHook(hook func(*bind.CallOpts) (bool, error))

SetDefaultHook sets function that is called when the CircuitBreakerState method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCircuitBreakerStateFunc) SetDefaultReturn

func (f *IValidatorStakingCircuitBreakerStateFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCircuitBreakerStateFuncCall

type IValidatorStakingCircuitBreakerStateFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCircuitBreakerStateFuncCall is an object that describes an invocation of method CircuitBreakerState on an instance of MockIValidatorStaking.

func (IValidatorStakingCircuitBreakerStateFuncCall) Args

func (c IValidatorStakingCircuitBreakerStateFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCircuitBreakerStateFuncCall) Results

func (c IValidatorStakingCircuitBreakerStateFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCollectAllProfitsFunc added in v0.0.5

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

IValidatorStakingCollectAllProfitsFunc describes the behavior when the CollectAllProfits method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCollectAllProfitsFunc) History added in v0.0.5

History returns a sequence of IValidatorStakingCollectAllProfitsFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCollectAllProfitsFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the CollectAllProfits method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCollectAllProfitsFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCollectAllProfitsFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the CollectAllProfits method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCollectAllProfitsFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorStakingCollectAllProfitsFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCollectAllProfitsFuncCall added in v0.0.5

type IValidatorStakingCollectAllProfitsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCollectAllProfitsFuncCall is an object that describes an invocation of method CollectAllProfits on an instance of MockIValidatorStaking.

func (IValidatorStakingCollectAllProfitsFuncCall) Args added in v0.0.5

func (c IValidatorStakingCollectAllProfitsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCollectAllProfitsFuncCall) Results added in v0.0.5

func (c IValidatorStakingCollectAllProfitsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCollectAllProfitsToFunc added in v0.0.5

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

IValidatorStakingCollectAllProfitsToFunc describes the behavior when the CollectAllProfitsTo method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCollectAllProfitsToFunc) History added in v0.0.5

History returns a sequence of IValidatorStakingCollectAllProfitsToFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCollectAllProfitsToFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the CollectAllProfitsTo method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCollectAllProfitsToFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCollectAllProfitsToFunc) SetDefaultHook added in v0.0.5

SetDefaultHook sets function that is called when the CollectAllProfitsTo method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCollectAllProfitsToFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorStakingCollectAllProfitsToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCollectAllProfitsToFuncCall added in v0.0.5

type IValidatorStakingCollectAllProfitsToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCollectAllProfitsToFuncCall is an object that describes an invocation of method CollectAllProfitsTo on an instance of MockIValidatorStaking.

func (IValidatorStakingCollectAllProfitsToFuncCall) Args added in v0.0.5

func (c IValidatorStakingCollectAllProfitsToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCollectAllProfitsToFuncCall) Results added in v0.0.5

func (c IValidatorStakingCollectAllProfitsToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCollectEthFunc

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

IValidatorStakingCollectEthFunc describes the behavior when the CollectEth method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCollectEthFunc) History

History returns a sequence of IValidatorStakingCollectEthFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCollectEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectEth method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCollectEthFunc) PushReturn

func (f *IValidatorStakingCollectEthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCollectEthFunc) SetDefaultHook

func (f *IValidatorStakingCollectEthFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CollectEth method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCollectEthFunc) SetDefaultReturn

func (f *IValidatorStakingCollectEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCollectEthFuncCall

type IValidatorStakingCollectEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCollectEthFuncCall is an object that describes an invocation of method CollectEth on an instance of MockIValidatorStaking.

func (IValidatorStakingCollectEthFuncCall) Args

func (c IValidatorStakingCollectEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCollectEthFuncCall) Results

func (c IValidatorStakingCollectEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCollectEthToFunc

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

IValidatorStakingCollectEthToFunc describes the behavior when the CollectEthTo method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCollectEthToFunc) History

History returns a sequence of IValidatorStakingCollectEthToFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCollectEthToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectEthTo method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCollectEthToFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCollectEthToFunc) SetDefaultHook

SetDefaultHook sets function that is called when the CollectEthTo method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCollectEthToFunc) SetDefaultReturn

func (f *IValidatorStakingCollectEthToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCollectEthToFuncCall

type IValidatorStakingCollectEthToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCollectEthToFuncCall is an object that describes an invocation of method CollectEthTo on an instance of MockIValidatorStaking.

func (IValidatorStakingCollectEthToFuncCall) Args

func (c IValidatorStakingCollectEthToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCollectEthToFuncCall) Results

func (c IValidatorStakingCollectEthToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCollectTokenFunc

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

IValidatorStakingCollectTokenFunc describes the behavior when the CollectToken method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCollectTokenFunc) History

History returns a sequence of IValidatorStakingCollectTokenFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCollectTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectToken method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCollectTokenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCollectTokenFunc) SetDefaultHook

func (f *IValidatorStakingCollectTokenFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the CollectToken method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCollectTokenFunc) SetDefaultReturn

func (f *IValidatorStakingCollectTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCollectTokenFuncCall

type IValidatorStakingCollectTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCollectTokenFuncCall is an object that describes an invocation of method CollectToken on an instance of MockIValidatorStaking.

func (IValidatorStakingCollectTokenFuncCall) Args

func (c IValidatorStakingCollectTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCollectTokenFuncCall) Results

func (c IValidatorStakingCollectTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingCollectTokenToFunc

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

IValidatorStakingCollectTokenToFunc describes the behavior when the CollectTokenTo method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingCollectTokenToFunc) History

History returns a sequence of IValidatorStakingCollectTokenToFuncCall objects describing the invocations of this function.

func (*IValidatorStakingCollectTokenToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the CollectTokenTo method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingCollectTokenToFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingCollectTokenToFunc) SetDefaultHook

SetDefaultHook sets function that is called when the CollectTokenTo method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingCollectTokenToFunc) SetDefaultReturn

func (f *IValidatorStakingCollectTokenToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingCollectTokenToFuncCall

type IValidatorStakingCollectTokenToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingCollectTokenToFuncCall is an object that describes an invocation of method CollectTokenTo on an instance of MockIValidatorStaking.

func (IValidatorStakingCollectTokenToFuncCall) Args

func (c IValidatorStakingCollectTokenToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingCollectTokenToFuncCall) Results

func (c IValidatorStakingCollectTokenToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingDepositEthFunc

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

IValidatorStakingDepositEthFunc describes the behavior when the DepositEth method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingDepositEthFunc) History

History returns a sequence of IValidatorStakingDepositEthFuncCall objects describing the invocations of this function.

func (*IValidatorStakingDepositEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the DepositEth method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingDepositEthFunc) PushReturn

func (f *IValidatorStakingDepositEthFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingDepositEthFunc) SetDefaultHook

func (f *IValidatorStakingDepositEthFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DepositEth method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingDepositEthFunc) SetDefaultReturn

func (f *IValidatorStakingDepositEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingDepositEthFuncCall

type IValidatorStakingDepositEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingDepositEthFuncCall is an object that describes an invocation of method DepositEth on an instance of MockIValidatorStaking.

func (IValidatorStakingDepositEthFuncCall) Args

func (c IValidatorStakingDepositEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingDepositEthFuncCall) Results

func (c IValidatorStakingDepositEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingDepositTokenFunc

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

IValidatorStakingDepositTokenFunc describes the behavior when the DepositToken method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingDepositTokenFunc) History

History returns a sequence of IValidatorStakingDepositTokenFuncCall objects describing the invocations of this function.

func (*IValidatorStakingDepositTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the DepositToken method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingDepositTokenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingDepositTokenFunc) SetDefaultHook

func (f *IValidatorStakingDepositTokenFunc) SetDefaultHook(hook func(*bind.TransactOpts, uint8, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the DepositToken method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingDepositTokenFunc) SetDefaultReturn

func (f *IValidatorStakingDepositTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingDepositTokenFuncCall

type IValidatorStakingDepositTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 uint8
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingDepositTokenFuncCall is an object that describes an invocation of method DepositToken on an instance of MockIValidatorStaking.

func (IValidatorStakingDepositTokenFuncCall) Args

func (c IValidatorStakingDepositTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingDepositTokenFuncCall) Results

func (c IValidatorStakingDepositTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingEstimateAllProfitsFunc added in v0.0.8

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

IValidatorStakingEstimateAllProfitsFunc describes the behavior when the EstimateAllProfits method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingEstimateAllProfitsFunc) History added in v0.0.8

History returns a sequence of IValidatorStakingEstimateAllProfitsFuncCall objects describing the invocations of this function.

func (*IValidatorStakingEstimateAllProfitsFunc) PushHook added in v0.0.8

func (f *IValidatorStakingEstimateAllProfitsFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateAllProfits method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingEstimateAllProfitsFunc) PushReturn added in v0.0.8

func (f *IValidatorStakingEstimateAllProfitsFunc) PushReturn(r0 struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingEstimateAllProfitsFunc) SetDefaultHook added in v0.0.8

func (f *IValidatorStakingEstimateAllProfitsFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, error))

SetDefaultHook sets function that is called when the EstimateAllProfits method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingEstimateAllProfitsFunc) SetDefaultReturn added in v0.0.8

func (f *IValidatorStakingEstimateAllProfitsFunc) SetDefaultReturn(r0 struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingEstimateAllProfitsFuncCall added in v0.0.8

type IValidatorStakingEstimateAllProfitsFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		PayoutEth   *big.Int
		PayoutToken *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingEstimateAllProfitsFuncCall is an object that describes an invocation of method EstimateAllProfits on an instance of MockIValidatorStaking.

func (IValidatorStakingEstimateAllProfitsFuncCall) Args added in v0.0.8

func (c IValidatorStakingEstimateAllProfitsFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingEstimateAllProfitsFuncCall) Results added in v0.0.8

func (c IValidatorStakingEstimateAllProfitsFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingEstimateEthCollectionFunc

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

IValidatorStakingEstimateEthCollectionFunc describes the behavior when the EstimateEthCollection method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingEstimateEthCollectionFunc) History

History returns a sequence of IValidatorStakingEstimateEthCollectionFuncCall objects describing the invocations of this function.

func (*IValidatorStakingEstimateEthCollectionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the EstimateEthCollection method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingEstimateEthCollectionFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingEstimateEthCollectionFunc) SetDefaultHook

func (f *IValidatorStakingEstimateEthCollectionFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateEthCollection method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingEstimateEthCollectionFunc) SetDefaultReturn

func (f *IValidatorStakingEstimateEthCollectionFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingEstimateEthCollectionFuncCall

type IValidatorStakingEstimateEthCollectionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingEstimateEthCollectionFuncCall is an object that describes an invocation of method EstimateEthCollection on an instance of MockIValidatorStaking.

func (IValidatorStakingEstimateEthCollectionFuncCall) Args

func (c IValidatorStakingEstimateEthCollectionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingEstimateEthCollectionFuncCall) Results

func (c IValidatorStakingEstimateEthCollectionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingEstimateExcessEthFunc

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

IValidatorStakingEstimateExcessEthFunc describes the behavior when the EstimateExcessEth method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingEstimateExcessEthFunc) History

History returns a sequence of IValidatorStakingEstimateExcessEthFuncCall objects describing the invocations of this function.

func (*IValidatorStakingEstimateExcessEthFunc) PushHook

func (f *IValidatorStakingEstimateExcessEthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateExcessEth method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingEstimateExcessEthFunc) PushReturn

func (f *IValidatorStakingEstimateExcessEthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingEstimateExcessEthFunc) SetDefaultHook

func (f *IValidatorStakingEstimateExcessEthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateExcessEth method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingEstimateExcessEthFunc) SetDefaultReturn

func (f *IValidatorStakingEstimateExcessEthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingEstimateExcessEthFuncCall

type IValidatorStakingEstimateExcessEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingEstimateExcessEthFuncCall is an object that describes an invocation of method EstimateExcessEth on an instance of MockIValidatorStaking.

func (IValidatorStakingEstimateExcessEthFuncCall) Args

func (c IValidatorStakingEstimateExcessEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingEstimateExcessEthFuncCall) Results

func (c IValidatorStakingEstimateExcessEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingEstimateExcessTokenFunc

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

IValidatorStakingEstimateExcessTokenFunc describes the behavior when the EstimateExcessToken method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingEstimateExcessTokenFunc) History

History returns a sequence of IValidatorStakingEstimateExcessTokenFuncCall objects describing the invocations of this function.

func (*IValidatorStakingEstimateExcessTokenFunc) PushHook

func (f *IValidatorStakingEstimateExcessTokenFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the EstimateExcessToken method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingEstimateExcessTokenFunc) PushReturn

func (f *IValidatorStakingEstimateExcessTokenFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingEstimateExcessTokenFunc) SetDefaultHook

func (f *IValidatorStakingEstimateExcessTokenFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateExcessToken method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingEstimateExcessTokenFunc) SetDefaultReturn

func (f *IValidatorStakingEstimateExcessTokenFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingEstimateExcessTokenFuncCall

type IValidatorStakingEstimateExcessTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingEstimateExcessTokenFuncCall is an object that describes an invocation of method EstimateExcessToken on an instance of MockIValidatorStaking.

func (IValidatorStakingEstimateExcessTokenFuncCall) Args

func (c IValidatorStakingEstimateExcessTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingEstimateExcessTokenFuncCall) Results

func (c IValidatorStakingEstimateExcessTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingEstimateTokenCollectionFunc

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

IValidatorStakingEstimateTokenCollectionFunc describes the behavior when the EstimateTokenCollection method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingEstimateTokenCollectionFunc) History

History returns a sequence of IValidatorStakingEstimateTokenCollectionFuncCall objects describing the invocations of this function.

func (*IValidatorStakingEstimateTokenCollectionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the EstimateTokenCollection method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingEstimateTokenCollectionFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingEstimateTokenCollectionFunc) SetDefaultHook

func (f *IValidatorStakingEstimateTokenCollectionFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the EstimateTokenCollection method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingEstimateTokenCollectionFunc) SetDefaultReturn

func (f *IValidatorStakingEstimateTokenCollectionFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingEstimateTokenCollectionFuncCall

type IValidatorStakingEstimateTokenCollectionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingEstimateTokenCollectionFuncCall is an object that describes an invocation of method EstimateTokenCollection on an instance of MockIValidatorStaking.

func (IValidatorStakingEstimateTokenCollectionFuncCall) Args

func (c IValidatorStakingEstimateTokenCollectionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingEstimateTokenCollectionFuncCall) Results

func (c IValidatorStakingEstimateTokenCollectionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingFilterApprovalForAllFunc

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

IValidatorStakingFilterApprovalForAllFunc describes the behavior when the FilterApprovalForAll method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingFilterApprovalForAllFunc) History

History returns a sequence of IValidatorStakingFilterApprovalForAllFuncCall objects describing the invocations of this function.

func (*IValidatorStakingFilterApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterApprovalForAll method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingFilterApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingFilterApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterApprovalForAll method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingFilterApprovalForAllFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingFilterApprovalForAllFuncCall

type IValidatorStakingFilterApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingApprovalForAllIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingFilterApprovalForAllFuncCall is an object that describes an invocation of method FilterApprovalForAll on an instance of MockIValidatorStaking.

func (IValidatorStakingFilterApprovalForAllFuncCall) Args

func (c IValidatorStakingFilterApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingFilterApprovalForAllFuncCall) Results

func (c IValidatorStakingFilterApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingFilterApprovalFunc

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

IValidatorStakingFilterApprovalFunc describes the behavior when the FilterApproval method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingFilterApprovalFunc) History

History returns a sequence of IValidatorStakingFilterApprovalFuncCall objects describing the invocations of this function.

func (*IValidatorStakingFilterApprovalFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterApproval method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingFilterApprovalFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingFilterApprovalFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterApproval method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingFilterApprovalFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingFilterApprovalFuncCall

type IValidatorStakingFilterApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingApprovalIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingFilterApprovalFuncCall is an object that describes an invocation of method FilterApproval on an instance of MockIValidatorStaking.

func (IValidatorStakingFilterApprovalFuncCall) Args

func (c IValidatorStakingFilterApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingFilterApprovalFuncCall) Results

func (c IValidatorStakingFilterApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingFilterInitializedFunc added in v0.0.2

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

IValidatorStakingFilterInitializedFunc describes the behavior when the FilterInitialized method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingFilterInitializedFunc) History added in v0.0.2

History returns a sequence of IValidatorStakingFilterInitializedFuncCall objects describing the invocations of this function.

func (*IValidatorStakingFilterInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the FilterInitialized method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingFilterInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingFilterInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the FilterInitialized method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingFilterInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingFilterInitializedFuncCall added in v0.0.2

type IValidatorStakingFilterInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingInitializedIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingFilterInitializedFuncCall is an object that describes an invocation of method FilterInitialized on an instance of MockIValidatorStaking.

func (IValidatorStakingFilterInitializedFuncCall) Args added in v0.0.2

func (c IValidatorStakingFilterInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingFilterInitializedFuncCall) Results added in v0.0.2

func (c IValidatorStakingFilterInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingFilterTransferFunc

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

IValidatorStakingFilterTransferFunc describes the behavior when the FilterTransfer method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingFilterTransferFunc) History

History returns a sequence of IValidatorStakingFilterTransferFuncCall objects describing the invocations of this function.

func (*IValidatorStakingFilterTransferFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the FilterTransfer method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingFilterTransferFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingFilterTransferFunc) SetDefaultHook

SetDefaultHook sets function that is called when the FilterTransfer method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingFilterTransferFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingFilterTransferFuncCall

type IValidatorStakingFilterTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.FilterOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 []common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingTransferIterator
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingFilterTransferFuncCall is an object that describes an invocation of method FilterTransfer on an instance of MockIValidatorStaking.

func (IValidatorStakingFilterTransferFuncCall) Args

func (c IValidatorStakingFilterTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingFilterTransferFuncCall) Results

func (c IValidatorStakingFilterTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetAccumulatorScaleFactorFunc

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

IValidatorStakingGetAccumulatorScaleFactorFunc describes the behavior when the GetAccumulatorScaleFactor method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetAccumulatorScaleFactorFunc) History

History returns a sequence of IValidatorStakingGetAccumulatorScaleFactorFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetAccumulatorScaleFactorFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetAccumulatorScaleFactor method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetAccumulatorScaleFactorFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetAccumulatorScaleFactorFunc) SetDefaultHook

func (f *IValidatorStakingGetAccumulatorScaleFactorFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetAccumulatorScaleFactor method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetAccumulatorScaleFactorFunc) SetDefaultReturn

func (f *IValidatorStakingGetAccumulatorScaleFactorFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetAccumulatorScaleFactorFuncCall

type IValidatorStakingGetAccumulatorScaleFactorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetAccumulatorScaleFactorFuncCall is an object that describes an invocation of method GetAccumulatorScaleFactor on an instance of MockIValidatorStaking.

func (IValidatorStakingGetAccumulatorScaleFactorFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetAccumulatorScaleFactorFuncCall) Results

func (c IValidatorStakingGetAccumulatorScaleFactorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetApprovedFunc

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

IValidatorStakingGetApprovedFunc describes the behavior when the GetApproved method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetApprovedFunc) History

History returns a sequence of IValidatorStakingGetApprovedFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetApprovedFunc) PushHook

func (f *IValidatorStakingGetApprovedFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetApproved method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetApprovedFunc) PushReturn

func (f *IValidatorStakingGetApprovedFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetApprovedFunc) SetDefaultHook

func (f *IValidatorStakingGetApprovedFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

SetDefaultHook sets function that is called when the GetApproved method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetApprovedFunc) SetDefaultReturn

func (f *IValidatorStakingGetApprovedFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetApprovedFuncCall

type IValidatorStakingGetApprovedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetApprovedFuncCall is an object that describes an invocation of method GetApproved on an instance of MockIValidatorStaking.

func (IValidatorStakingGetApprovedFuncCall) Args

func (c IValidatorStakingGetApprovedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetApprovedFuncCall) Results

func (c IValidatorStakingGetApprovedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetEthAccumulatorFunc

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

IValidatorStakingGetEthAccumulatorFunc describes the behavior when the GetEthAccumulator method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetEthAccumulatorFunc) History

History returns a sequence of IValidatorStakingGetEthAccumulatorFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetEthAccumulatorFunc) PushHook

func (f *IValidatorStakingGetEthAccumulatorFunc) PushHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetEthAccumulator method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetEthAccumulatorFunc) PushReturn

func (f *IValidatorStakingGetEthAccumulatorFunc) PushReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetEthAccumulatorFunc) SetDefaultHook

func (f *IValidatorStakingGetEthAccumulatorFunc) SetDefaultHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

SetDefaultHook sets function that is called when the GetEthAccumulator method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetEthAccumulatorFunc) SetDefaultReturn

func (f *IValidatorStakingGetEthAccumulatorFunc) SetDefaultReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetEthAccumulatorFuncCall

type IValidatorStakingGetEthAccumulatorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		Accumulator *big.Int
		Slush       *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetEthAccumulatorFuncCall is an object that describes an invocation of method GetEthAccumulator on an instance of MockIValidatorStaking.

func (IValidatorStakingGetEthAccumulatorFuncCall) Args

func (c IValidatorStakingGetEthAccumulatorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetEthAccumulatorFuncCall) Results

func (c IValidatorStakingGetEthAccumulatorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetLatestMintedPositionIDFunc added in v0.0.5

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

IValidatorStakingGetLatestMintedPositionIDFunc describes the behavior when the GetLatestMintedPositionID method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetLatestMintedPositionIDFunc) History added in v0.0.5

History returns a sequence of IValidatorStakingGetLatestMintedPositionIDFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetLatestMintedPositionIDFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the GetLatestMintedPositionID method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetLatestMintedPositionIDFunc) PushReturn added in v0.0.5

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetLatestMintedPositionIDFunc) SetDefaultHook added in v0.0.5

func (f *IValidatorStakingGetLatestMintedPositionIDFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetLatestMintedPositionID method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetLatestMintedPositionIDFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorStakingGetLatestMintedPositionIDFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetLatestMintedPositionIDFuncCall added in v0.0.5

type IValidatorStakingGetLatestMintedPositionIDFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetLatestMintedPositionIDFuncCall is an object that describes an invocation of method GetLatestMintedPositionID on an instance of MockIValidatorStaking.

func (IValidatorStakingGetLatestMintedPositionIDFuncCall) Args added in v0.0.5

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetLatestMintedPositionIDFuncCall) Results added in v0.0.5

func (c IValidatorStakingGetLatestMintedPositionIDFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetMaxGovernanceLockFunc added in v0.0.4

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

IValidatorStakingGetMaxGovernanceLockFunc describes the behavior when the GetMaxGovernanceLock method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetMaxGovernanceLockFunc) History added in v0.0.4

History returns a sequence of IValidatorStakingGetMaxGovernanceLockFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetMaxGovernanceLockFunc) PushHook added in v0.0.4

func (f *IValidatorStakingGetMaxGovernanceLockFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMaxGovernanceLock method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetMaxGovernanceLockFunc) PushReturn added in v0.0.4

func (f *IValidatorStakingGetMaxGovernanceLockFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetMaxGovernanceLockFunc) SetDefaultHook added in v0.0.4

func (f *IValidatorStakingGetMaxGovernanceLockFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMaxGovernanceLock method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetMaxGovernanceLockFunc) SetDefaultReturn added in v0.0.4

func (f *IValidatorStakingGetMaxGovernanceLockFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetMaxGovernanceLockFuncCall added in v0.0.4

type IValidatorStakingGetMaxGovernanceLockFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetMaxGovernanceLockFuncCall is an object that describes an invocation of method GetMaxGovernanceLock on an instance of MockIValidatorStaking.

func (IValidatorStakingGetMaxGovernanceLockFuncCall) Args added in v0.0.4

func (c IValidatorStakingGetMaxGovernanceLockFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetMaxGovernanceLockFuncCall) Results added in v0.0.4

func (c IValidatorStakingGetMaxGovernanceLockFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetMaxMintLockFunc

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

IValidatorStakingGetMaxMintLockFunc describes the behavior when the GetMaxMintLock method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetMaxMintLockFunc) History

History returns a sequence of IValidatorStakingGetMaxMintLockFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetMaxMintLockFunc) PushHook

func (f *IValidatorStakingGetMaxMintLockFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetMaxMintLock method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetMaxMintLockFunc) PushReturn

func (f *IValidatorStakingGetMaxMintLockFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetMaxMintLockFunc) SetDefaultHook

func (f *IValidatorStakingGetMaxMintLockFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetMaxMintLock method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetMaxMintLockFunc) SetDefaultReturn

func (f *IValidatorStakingGetMaxMintLockFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetMaxMintLockFuncCall

type IValidatorStakingGetMaxMintLockFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetMaxMintLockFuncCall is an object that describes an invocation of method GetMaxMintLock on an instance of MockIValidatorStaking.

func (IValidatorStakingGetMaxMintLockFuncCall) Args

func (c IValidatorStakingGetMaxMintLockFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetMaxMintLockFuncCall) Results

func (c IValidatorStakingGetMaxMintLockFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetMetamorphicContractAddressFunc

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

IValidatorStakingGetMetamorphicContractAddressFunc describes the behavior when the GetMetamorphicContractAddress method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetMetamorphicContractAddressFunc) History

History returns a sequence of IValidatorStakingGetMetamorphicContractAddressFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetMetamorphicContractAddressFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetMetamorphicContractAddress method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetMetamorphicContractAddressFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetMetamorphicContractAddressFunc) SetDefaultHook

SetDefaultHook sets function that is called when the GetMetamorphicContractAddress method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetMetamorphicContractAddressFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetMetamorphicContractAddressFuncCall

type IValidatorStakingGetMetamorphicContractAddressFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [32]byte
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetMetamorphicContractAddressFuncCall is an object that describes an invocation of method GetMetamorphicContractAddress on an instance of MockIValidatorStaking.

func (IValidatorStakingGetMetamorphicContractAddressFuncCall) Args

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetMetamorphicContractAddressFuncCall) Results

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetPositionFunc

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

IValidatorStakingGetPositionFunc describes the behavior when the GetPosition method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetPositionFunc) History

History returns a sequence of IValidatorStakingGetPositionFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetPositionFunc) PushHook

func (f *IValidatorStakingGetPositionFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetPosition method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetPositionFunc) PushReturn

func (f *IValidatorStakingGetPositionFunc) PushReturn(r0 struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetPositionFunc) SetDefaultHook

func (f *IValidatorStakingGetPositionFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, error))

SetDefaultHook sets function that is called when the GetPosition method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetPositionFunc) SetDefaultReturn

func (f *IValidatorStakingGetPositionFunc) SetDefaultReturn(r0 struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetPositionFuncCall

type IValidatorStakingGetPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		Shares            *big.Int
		FreeAfter         *big.Int
		WithdrawFreeAfter *big.Int
		AccumulatorEth    *big.Int
		AccumulatorToken  *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetPositionFuncCall is an object that describes an invocation of method GetPosition on an instance of MockIValidatorStaking.

func (IValidatorStakingGetPositionFuncCall) Args

func (c IValidatorStakingGetPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetPositionFuncCall) Results

func (c IValidatorStakingGetPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetTokenAccumulatorFunc

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

IValidatorStakingGetTokenAccumulatorFunc describes the behavior when the GetTokenAccumulator method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetTokenAccumulatorFunc) History

History returns a sequence of IValidatorStakingGetTokenAccumulatorFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetTokenAccumulatorFunc) PushHook

func (f *IValidatorStakingGetTokenAccumulatorFunc) PushHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTokenAccumulator method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetTokenAccumulatorFunc) PushReturn

func (f *IValidatorStakingGetTokenAccumulatorFunc) PushReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetTokenAccumulatorFunc) SetDefaultHook

func (f *IValidatorStakingGetTokenAccumulatorFunc) SetDefaultHook(hook func(*bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error))

SetDefaultHook sets function that is called when the GetTokenAccumulator method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetTokenAccumulatorFunc) SetDefaultReturn

func (f *IValidatorStakingGetTokenAccumulatorFunc) SetDefaultReturn(r0 struct {
	Accumulator *big.Int
	Slush       *big.Int
}, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetTokenAccumulatorFuncCall

type IValidatorStakingGetTokenAccumulatorFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 struct {
		Accumulator *big.Int
		Slush       *big.Int
	}
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetTokenAccumulatorFuncCall is an object that describes an invocation of method GetTokenAccumulator on an instance of MockIValidatorStaking.

func (IValidatorStakingGetTokenAccumulatorFuncCall) Args

func (c IValidatorStakingGetTokenAccumulatorFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetTokenAccumulatorFuncCall) Results

func (c IValidatorStakingGetTokenAccumulatorFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetTotalReserveALCAFunc added in v0.0.8

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

IValidatorStakingGetTotalReserveALCAFunc describes the behavior when the GetTotalReserveALCA method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetTotalReserveALCAFunc) History added in v0.0.8

History returns a sequence of IValidatorStakingGetTotalReserveALCAFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetTotalReserveALCAFunc) PushHook added in v0.0.8

func (f *IValidatorStakingGetTotalReserveALCAFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalReserveALCA method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetTotalReserveALCAFunc) PushReturn added in v0.0.8

func (f *IValidatorStakingGetTotalReserveALCAFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetTotalReserveALCAFunc) SetDefaultHook added in v0.0.8

func (f *IValidatorStakingGetTotalReserveALCAFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalReserveALCA method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetTotalReserveALCAFunc) SetDefaultReturn added in v0.0.8

func (f *IValidatorStakingGetTotalReserveALCAFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetTotalReserveALCAFuncCall added in v0.0.8

type IValidatorStakingGetTotalReserveALCAFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetTotalReserveALCAFuncCall is an object that describes an invocation of method GetTotalReserveALCA on an instance of MockIValidatorStaking.

func (IValidatorStakingGetTotalReserveALCAFuncCall) Args added in v0.0.8

func (c IValidatorStakingGetTotalReserveALCAFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetTotalReserveALCAFuncCall) Results added in v0.0.8

func (c IValidatorStakingGetTotalReserveALCAFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetTotalReserveEthFunc

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

IValidatorStakingGetTotalReserveEthFunc describes the behavior when the GetTotalReserveEth method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetTotalReserveEthFunc) History

History returns a sequence of IValidatorStakingGetTotalReserveEthFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetTotalReserveEthFunc) PushHook

func (f *IValidatorStakingGetTotalReserveEthFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalReserveEth method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetTotalReserveEthFunc) PushReturn

func (f *IValidatorStakingGetTotalReserveEthFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetTotalReserveEthFunc) SetDefaultHook

func (f *IValidatorStakingGetTotalReserveEthFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalReserveEth method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetTotalReserveEthFunc) SetDefaultReturn

func (f *IValidatorStakingGetTotalReserveEthFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetTotalReserveEthFuncCall

type IValidatorStakingGetTotalReserveEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetTotalReserveEthFuncCall is an object that describes an invocation of method GetTotalReserveEth on an instance of MockIValidatorStaking.

func (IValidatorStakingGetTotalReserveEthFuncCall) Args

func (c IValidatorStakingGetTotalReserveEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetTotalReserveEthFuncCall) Results

func (c IValidatorStakingGetTotalReserveEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingGetTotalSharesFunc

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

IValidatorStakingGetTotalSharesFunc describes the behavior when the GetTotalShares method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingGetTotalSharesFunc) History

History returns a sequence of IValidatorStakingGetTotalSharesFuncCall objects describing the invocations of this function.

func (*IValidatorStakingGetTotalSharesFunc) PushHook

func (f *IValidatorStakingGetTotalSharesFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the GetTotalShares method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingGetTotalSharesFunc) PushReturn

func (f *IValidatorStakingGetTotalSharesFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingGetTotalSharesFunc) SetDefaultHook

func (f *IValidatorStakingGetTotalSharesFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the GetTotalShares method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingGetTotalSharesFunc) SetDefaultReturn

func (f *IValidatorStakingGetTotalSharesFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingGetTotalSharesFuncCall

type IValidatorStakingGetTotalSharesFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingGetTotalSharesFuncCall is an object that describes an invocation of method GetTotalShares on an instance of MockIValidatorStaking.

func (IValidatorStakingGetTotalSharesFuncCall) Args

func (c IValidatorStakingGetTotalSharesFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingGetTotalSharesFuncCall) Results

func (c IValidatorStakingGetTotalSharesFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingInitializeFunc

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

IValidatorStakingInitializeFunc describes the behavior when the Initialize method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingInitializeFunc) History

History returns a sequence of IValidatorStakingInitializeFuncCall objects describing the invocations of this function.

func (*IValidatorStakingInitializeFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Initialize method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingInitializeFunc) PushReturn

func (f *IValidatorStakingInitializeFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingInitializeFunc) SetDefaultHook

func (f *IValidatorStakingInitializeFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Initialize method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingInitializeFunc) SetDefaultReturn

func (f *IValidatorStakingInitializeFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingInitializeFuncCall

type IValidatorStakingInitializeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingInitializeFuncCall is an object that describes an invocation of method Initialize on an instance of MockIValidatorStaking.

func (IValidatorStakingInitializeFuncCall) Args

func (c IValidatorStakingInitializeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingInitializeFuncCall) Results

func (c IValidatorStakingInitializeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingIsApprovedForAllFunc

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

IValidatorStakingIsApprovedForAllFunc describes the behavior when the IsApprovedForAll method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingIsApprovedForAllFunc) History

History returns a sequence of IValidatorStakingIsApprovedForAllFuncCall objects describing the invocations of this function.

func (*IValidatorStakingIsApprovedForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the IsApprovedForAll method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingIsApprovedForAllFunc) PushReturn

func (f *IValidatorStakingIsApprovedForAllFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingIsApprovedForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the IsApprovedForAll method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingIsApprovedForAllFunc) SetDefaultReturn

func (f *IValidatorStakingIsApprovedForAllFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingIsApprovedForAllFuncCall

type IValidatorStakingIsApprovedForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingIsApprovedForAllFuncCall is an object that describes an invocation of method IsApprovedForAll on an instance of MockIValidatorStaking.

func (IValidatorStakingIsApprovedForAllFuncCall) Args

func (c IValidatorStakingIsApprovedForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingIsApprovedForAllFuncCall) Results

func (c IValidatorStakingIsApprovedForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingLockOwnPositionFunc

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

IValidatorStakingLockOwnPositionFunc describes the behavior when the LockOwnPosition method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingLockOwnPositionFunc) History

History returns a sequence of IValidatorStakingLockOwnPositionFuncCall objects describing the invocations of this function.

func (*IValidatorStakingLockOwnPositionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the LockOwnPosition method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingLockOwnPositionFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingLockOwnPositionFunc) SetDefaultHook

func (f *IValidatorStakingLockOwnPositionFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the LockOwnPosition method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingLockOwnPositionFunc) SetDefaultReturn

func (f *IValidatorStakingLockOwnPositionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingLockOwnPositionFuncCall

type IValidatorStakingLockOwnPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingLockOwnPositionFuncCall is an object that describes an invocation of method LockOwnPosition on an instance of MockIValidatorStaking.

func (IValidatorStakingLockOwnPositionFuncCall) Args

func (c IValidatorStakingLockOwnPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingLockOwnPositionFuncCall) Results

func (c IValidatorStakingLockOwnPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingLockPositionFunc

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

IValidatorStakingLockPositionFunc describes the behavior when the LockPosition method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingLockPositionFunc) History

History returns a sequence of IValidatorStakingLockPositionFuncCall objects describing the invocations of this function.

func (*IValidatorStakingLockPositionFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the LockPosition method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingLockPositionFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingLockPositionFunc) SetDefaultHook

SetDefaultHook sets function that is called when the LockPosition method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingLockPositionFunc) SetDefaultReturn

func (f *IValidatorStakingLockPositionFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingLockPositionFuncCall

type IValidatorStakingLockPositionFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingLockPositionFuncCall is an object that describes an invocation of method LockPosition on an instance of MockIValidatorStaking.

func (IValidatorStakingLockPositionFuncCall) Args

func (c IValidatorStakingLockPositionFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingLockPositionFuncCall) Results

func (c IValidatorStakingLockPositionFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingLockWithdrawFunc

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

IValidatorStakingLockWithdrawFunc describes the behavior when the LockWithdraw method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingLockWithdrawFunc) History

History returns a sequence of IValidatorStakingLockWithdrawFuncCall objects describing the invocations of this function.

func (*IValidatorStakingLockWithdrawFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the LockWithdraw method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingLockWithdrawFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingLockWithdrawFunc) SetDefaultHook

func (f *IValidatorStakingLockWithdrawFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the LockWithdraw method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingLockWithdrawFunc) SetDefaultReturn

func (f *IValidatorStakingLockWithdrawFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingLockWithdrawFuncCall

type IValidatorStakingLockWithdrawFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingLockWithdrawFuncCall is an object that describes an invocation of method LockWithdraw on an instance of MockIValidatorStaking.

func (IValidatorStakingLockWithdrawFuncCall) Args

func (c IValidatorStakingLockWithdrawFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingLockWithdrawFuncCall) Results

func (c IValidatorStakingLockWithdrawFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingMintFunc

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

IValidatorStakingMintFunc describes the behavior when the Mint method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingMintFunc) History

History returns a sequence of IValidatorStakingMintFuncCall objects describing the invocations of this function.

func (*IValidatorStakingMintFunc) PushHook

func (f *IValidatorStakingMintFunc) PushHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the Mint method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingMintFunc) PushReturn

func (f *IValidatorStakingMintFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingMintFunc) SetDefaultHook

func (f *IValidatorStakingMintFunc) SetDefaultHook(hook func(*bind.TransactOpts, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the Mint method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingMintFunc) SetDefaultReturn

func (f *IValidatorStakingMintFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingMintFuncCall

type IValidatorStakingMintFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingMintFuncCall is an object that describes an invocation of method Mint on an instance of MockIValidatorStaking.

func (IValidatorStakingMintFuncCall) Args

func (c IValidatorStakingMintFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingMintFuncCall) Results

func (c IValidatorStakingMintFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingMintToFunc

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

IValidatorStakingMintToFunc describes the behavior when the MintTo method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingMintToFunc) History

History returns a sequence of IValidatorStakingMintToFuncCall objects describing the invocations of this function.

func (*IValidatorStakingMintToFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the MintTo method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingMintToFunc) PushReturn

func (f *IValidatorStakingMintToFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingMintToFunc) SetDefaultHook

func (f *IValidatorStakingMintToFunc) SetDefaultHook(hook func(*bind.TransactOpts, common.Address, *big.Int, *big.Int) (*types.Transaction, error))

SetDefaultHook sets function that is called when the MintTo method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingMintToFunc) SetDefaultReturn

func (f *IValidatorStakingMintToFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingMintToFuncCall

type IValidatorStakingMintToFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingMintToFuncCall is an object that describes an invocation of method MintTo on an instance of MockIValidatorStaking.

func (IValidatorStakingMintToFuncCall) Args

func (c IValidatorStakingMintToFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingMintToFuncCall) Results

func (c IValidatorStakingMintToFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingNameFunc

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

IValidatorStakingNameFunc describes the behavior when the Name method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingNameFunc) History

History returns a sequence of IValidatorStakingNameFuncCall objects describing the invocations of this function.

func (*IValidatorStakingNameFunc) PushHook

func (f *IValidatorStakingNameFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Name method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingNameFunc) PushReturn

func (f *IValidatorStakingNameFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingNameFunc) SetDefaultHook

func (f *IValidatorStakingNameFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Name method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingNameFunc) SetDefaultReturn

func (f *IValidatorStakingNameFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingNameFuncCall

type IValidatorStakingNameFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingNameFuncCall is an object that describes an invocation of method Name on an instance of MockIValidatorStaking.

func (IValidatorStakingNameFuncCall) Args

func (c IValidatorStakingNameFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingNameFuncCall) Results

func (c IValidatorStakingNameFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingOwnerOfFunc

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

IValidatorStakingOwnerOfFunc describes the behavior when the OwnerOf method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingOwnerOfFunc) History

History returns a sequence of IValidatorStakingOwnerOfFuncCall objects describing the invocations of this function.

func (*IValidatorStakingOwnerOfFunc) PushHook

func (f *IValidatorStakingOwnerOfFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

PushHook adds a function to the end of hook queue. Each invocation of the OwnerOf method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingOwnerOfFunc) PushReturn

func (f *IValidatorStakingOwnerOfFunc) PushReturn(r0 common.Address, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingOwnerOfFunc) SetDefaultHook

func (f *IValidatorStakingOwnerOfFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (common.Address, error))

SetDefaultHook sets function that is called when the OwnerOf method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingOwnerOfFunc) SetDefaultReturn

func (f *IValidatorStakingOwnerOfFunc) SetDefaultReturn(r0 common.Address, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingOwnerOfFuncCall

type IValidatorStakingOwnerOfFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 common.Address
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingOwnerOfFuncCall is an object that describes an invocation of method OwnerOf on an instance of MockIValidatorStaking.

func (IValidatorStakingOwnerOfFuncCall) Args

func (c IValidatorStakingOwnerOfFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingOwnerOfFuncCall) Results

func (c IValidatorStakingOwnerOfFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingParseApprovalForAllFunc

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

IValidatorStakingParseApprovalForAllFunc describes the behavior when the ParseApprovalForAll method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingParseApprovalForAllFunc) History

History returns a sequence of IValidatorStakingParseApprovalForAllFuncCall objects describing the invocations of this function.

func (*IValidatorStakingParseApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseApprovalForAll method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingParseApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingParseApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseApprovalForAll method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingParseApprovalForAllFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingParseApprovalForAllFuncCall

type IValidatorStakingParseApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingApprovalForAll
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingParseApprovalForAllFuncCall is an object that describes an invocation of method ParseApprovalForAll on an instance of MockIValidatorStaking.

func (IValidatorStakingParseApprovalForAllFuncCall) Args

func (c IValidatorStakingParseApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingParseApprovalForAllFuncCall) Results

func (c IValidatorStakingParseApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingParseApprovalFunc

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

IValidatorStakingParseApprovalFunc describes the behavior when the ParseApproval method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingParseApprovalFunc) History

History returns a sequence of IValidatorStakingParseApprovalFuncCall objects describing the invocations of this function.

func (*IValidatorStakingParseApprovalFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseApproval method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingParseApprovalFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingParseApprovalFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseApproval method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingParseApprovalFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingParseApprovalFuncCall

type IValidatorStakingParseApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingApproval
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingParseApprovalFuncCall is an object that describes an invocation of method ParseApproval on an instance of MockIValidatorStaking.

func (IValidatorStakingParseApprovalFuncCall) Args

func (c IValidatorStakingParseApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingParseApprovalFuncCall) Results

func (c IValidatorStakingParseApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingParseInitializedFunc added in v0.0.2

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

IValidatorStakingParseInitializedFunc describes the behavior when the ParseInitialized method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingParseInitializedFunc) History added in v0.0.2

History returns a sequence of IValidatorStakingParseInitializedFuncCall objects describing the invocations of this function.

func (*IValidatorStakingParseInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the ParseInitialized method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingParseInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingParseInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the ParseInitialized method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingParseInitializedFunc) SetDefaultReturn added in v0.0.2

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingParseInitializedFuncCall added in v0.0.2

type IValidatorStakingParseInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingInitialized
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingParseInitializedFuncCall is an object that describes an invocation of method ParseInitialized on an instance of MockIValidatorStaking.

func (IValidatorStakingParseInitializedFuncCall) Args added in v0.0.2

func (c IValidatorStakingParseInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingParseInitializedFuncCall) Results added in v0.0.2

func (c IValidatorStakingParseInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingParseTransferFunc

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

IValidatorStakingParseTransferFunc describes the behavior when the ParseTransfer method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingParseTransferFunc) History

History returns a sequence of IValidatorStakingParseTransferFuncCall objects describing the invocations of this function.

func (*IValidatorStakingParseTransferFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the ParseTransfer method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingParseTransferFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingParseTransferFunc) SetDefaultHook

SetDefaultHook sets function that is called when the ParseTransfer method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingParseTransferFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingParseTransferFuncCall

type IValidatorStakingParseTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 types.Log
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *bindings.ValidatorStakingTransfer
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingParseTransferFuncCall is an object that describes an invocation of method ParseTransfer on an instance of MockIValidatorStaking.

func (IValidatorStakingParseTransferFuncCall) Args

func (c IValidatorStakingParseTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingParseTransferFuncCall) Results

func (c IValidatorStakingParseTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSafeTransferFrom0Func

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

IValidatorStakingSafeTransferFrom0Func describes the behavior when the SafeTransferFrom0 method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSafeTransferFrom0Func) History

History returns a sequence of IValidatorStakingSafeTransferFrom0FuncCall objects describing the invocations of this function.

func (*IValidatorStakingSafeTransferFrom0Func) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SafeTransferFrom0 method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSafeTransferFrom0Func) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSafeTransferFrom0Func) SetDefaultHook

SetDefaultHook sets function that is called when the SafeTransferFrom0 method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSafeTransferFrom0Func) SetDefaultReturn

func (f *IValidatorStakingSafeTransferFrom0Func) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSafeTransferFrom0FuncCall

type IValidatorStakingSafeTransferFrom0FuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSafeTransferFrom0FuncCall is an object that describes an invocation of method SafeTransferFrom0 on an instance of MockIValidatorStaking.

func (IValidatorStakingSafeTransferFrom0FuncCall) Args

func (c IValidatorStakingSafeTransferFrom0FuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSafeTransferFrom0FuncCall) Results

func (c IValidatorStakingSafeTransferFrom0FuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSafeTransferFromFunc

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

IValidatorStakingSafeTransferFromFunc describes the behavior when the SafeTransferFrom method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSafeTransferFromFunc) History

History returns a sequence of IValidatorStakingSafeTransferFromFuncCall objects describing the invocations of this function.

func (*IValidatorStakingSafeTransferFromFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SafeTransferFrom method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSafeTransferFromFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSafeTransferFromFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SafeTransferFrom method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSafeTransferFromFunc) SetDefaultReturn

func (f *IValidatorStakingSafeTransferFromFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSafeTransferFromFuncCall

type IValidatorStakingSafeTransferFromFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSafeTransferFromFuncCall is an object that describes an invocation of method SafeTransferFrom on an instance of MockIValidatorStaking.

func (IValidatorStakingSafeTransferFromFuncCall) Args

func (c IValidatorStakingSafeTransferFromFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSafeTransferFromFuncCall) Results

func (c IValidatorStakingSafeTransferFromFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSetApprovalForAllFunc

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

IValidatorStakingSetApprovalForAllFunc describes the behavior when the SetApprovalForAll method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSetApprovalForAllFunc) History

History returns a sequence of IValidatorStakingSetApprovalForAllFuncCall objects describing the invocations of this function.

func (*IValidatorStakingSetApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SetApprovalForAll method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSetApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSetApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SetApprovalForAll method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSetApprovalForAllFunc) SetDefaultReturn

func (f *IValidatorStakingSetApprovalForAllFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSetApprovalForAllFuncCall

type IValidatorStakingSetApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 bool
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSetApprovalForAllFuncCall is an object that describes an invocation of method SetApprovalForAll on an instance of MockIValidatorStaking.

func (IValidatorStakingSetApprovalForAllFuncCall) Args

func (c IValidatorStakingSetApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSetApprovalForAllFuncCall) Results

func (c IValidatorStakingSetApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSkimExcessEthFunc

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

IValidatorStakingSkimExcessEthFunc describes the behavior when the SkimExcessEth method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSkimExcessEthFunc) History

History returns a sequence of IValidatorStakingSkimExcessEthFuncCall objects describing the invocations of this function.

func (*IValidatorStakingSkimExcessEthFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SkimExcessEth method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSkimExcessEthFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSkimExcessEthFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SkimExcessEth method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSkimExcessEthFunc) SetDefaultReturn

func (f *IValidatorStakingSkimExcessEthFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSkimExcessEthFuncCall

type IValidatorStakingSkimExcessEthFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSkimExcessEthFuncCall is an object that describes an invocation of method SkimExcessEth on an instance of MockIValidatorStaking.

func (IValidatorStakingSkimExcessEthFuncCall) Args

func (c IValidatorStakingSkimExcessEthFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSkimExcessEthFuncCall) Results

func (c IValidatorStakingSkimExcessEthFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSkimExcessTokenFunc

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

IValidatorStakingSkimExcessTokenFunc describes the behavior when the SkimExcessToken method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSkimExcessTokenFunc) History

History returns a sequence of IValidatorStakingSkimExcessTokenFuncCall objects describing the invocations of this function.

func (*IValidatorStakingSkimExcessTokenFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SkimExcessToken method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSkimExcessTokenFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSkimExcessTokenFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SkimExcessToken method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSkimExcessTokenFunc) SetDefaultReturn

func (f *IValidatorStakingSkimExcessTokenFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSkimExcessTokenFuncCall

type IValidatorStakingSkimExcessTokenFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSkimExcessTokenFuncCall is an object that describes an invocation of method SkimExcessToken on an instance of MockIValidatorStaking.

func (IValidatorStakingSkimExcessTokenFuncCall) Args

func (c IValidatorStakingSkimExcessTokenFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSkimExcessTokenFuncCall) Results

func (c IValidatorStakingSkimExcessTokenFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSupportsInterfaceFunc

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

IValidatorStakingSupportsInterfaceFunc describes the behavior when the SupportsInterface method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSupportsInterfaceFunc) History

History returns a sequence of IValidatorStakingSupportsInterfaceFuncCall objects describing the invocations of this function.

func (*IValidatorStakingSupportsInterfaceFunc) PushHook

func (f *IValidatorStakingSupportsInterfaceFunc) PushHook(hook func(*bind.CallOpts, [4]byte) (bool, error))

PushHook adds a function to the end of hook queue. Each invocation of the SupportsInterface method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSupportsInterfaceFunc) PushReturn

func (f *IValidatorStakingSupportsInterfaceFunc) PushReturn(r0 bool, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSupportsInterfaceFunc) SetDefaultHook

func (f *IValidatorStakingSupportsInterfaceFunc) SetDefaultHook(hook func(*bind.CallOpts, [4]byte) (bool, error))

SetDefaultHook sets function that is called when the SupportsInterface method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSupportsInterfaceFunc) SetDefaultReturn

func (f *IValidatorStakingSupportsInterfaceFunc) SetDefaultReturn(r0 bool, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSupportsInterfaceFuncCall

type IValidatorStakingSupportsInterfaceFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 [4]byte
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSupportsInterfaceFuncCall is an object that describes an invocation of method SupportsInterface on an instance of MockIValidatorStaking.

func (IValidatorStakingSupportsInterfaceFuncCall) Args

func (c IValidatorStakingSupportsInterfaceFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSupportsInterfaceFuncCall) Results

func (c IValidatorStakingSupportsInterfaceFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingSymbolFunc

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

IValidatorStakingSymbolFunc describes the behavior when the Symbol method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingSymbolFunc) History

History returns a sequence of IValidatorStakingSymbolFuncCall objects describing the invocations of this function.

func (*IValidatorStakingSymbolFunc) PushHook

func (f *IValidatorStakingSymbolFunc) PushHook(hook func(*bind.CallOpts) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the Symbol method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingSymbolFunc) PushReturn

func (f *IValidatorStakingSymbolFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingSymbolFunc) SetDefaultHook

func (f *IValidatorStakingSymbolFunc) SetDefaultHook(hook func(*bind.CallOpts) (string, error))

SetDefaultHook sets function that is called when the Symbol method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingSymbolFunc) SetDefaultReturn

func (f *IValidatorStakingSymbolFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingSymbolFuncCall

type IValidatorStakingSymbolFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingSymbolFuncCall is an object that describes an invocation of method Symbol on an instance of MockIValidatorStaking.

func (IValidatorStakingSymbolFuncCall) Args

func (c IValidatorStakingSymbolFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingSymbolFuncCall) Results

func (c IValidatorStakingSymbolFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingTokenByIndexFunc added in v0.0.5

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

IValidatorStakingTokenByIndexFunc describes the behavior when the TokenByIndex method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingTokenByIndexFunc) History added in v0.0.5

History returns a sequence of IValidatorStakingTokenByIndexFuncCall objects describing the invocations of this function.

func (*IValidatorStakingTokenByIndexFunc) PushHook added in v0.0.5

func (f *IValidatorStakingTokenByIndexFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the TokenByIndex method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingTokenByIndexFunc) PushReturn added in v0.0.5

func (f *IValidatorStakingTokenByIndexFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingTokenByIndexFunc) SetDefaultHook added in v0.0.5

func (f *IValidatorStakingTokenByIndexFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the TokenByIndex method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingTokenByIndexFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorStakingTokenByIndexFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingTokenByIndexFuncCall added in v0.0.5

type IValidatorStakingTokenByIndexFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingTokenByIndexFuncCall is an object that describes an invocation of method TokenByIndex on an instance of MockIValidatorStaking.

func (IValidatorStakingTokenByIndexFuncCall) Args added in v0.0.5

func (c IValidatorStakingTokenByIndexFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingTokenByIndexFuncCall) Results added in v0.0.5

func (c IValidatorStakingTokenByIndexFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingTokenOfOwnerByIndexFunc added in v0.0.5

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

IValidatorStakingTokenOfOwnerByIndexFunc describes the behavior when the TokenOfOwnerByIndex method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingTokenOfOwnerByIndexFunc) History added in v0.0.5

History returns a sequence of IValidatorStakingTokenOfOwnerByIndexFuncCall objects describing the invocations of this function.

func (*IValidatorStakingTokenOfOwnerByIndexFunc) PushHook added in v0.0.5

PushHook adds a function to the end of hook queue. Each invocation of the TokenOfOwnerByIndex method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingTokenOfOwnerByIndexFunc) PushReturn added in v0.0.5

func (f *IValidatorStakingTokenOfOwnerByIndexFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingTokenOfOwnerByIndexFunc) SetDefaultHook added in v0.0.5

func (f *IValidatorStakingTokenOfOwnerByIndexFunc) SetDefaultHook(hook func(*bind.CallOpts, common.Address, *big.Int) (*big.Int, error))

SetDefaultHook sets function that is called when the TokenOfOwnerByIndex method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingTokenOfOwnerByIndexFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorStakingTokenOfOwnerByIndexFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingTokenOfOwnerByIndexFuncCall added in v0.0.5

type IValidatorStakingTokenOfOwnerByIndexFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingTokenOfOwnerByIndexFuncCall is an object that describes an invocation of method TokenOfOwnerByIndex on an instance of MockIValidatorStaking.

func (IValidatorStakingTokenOfOwnerByIndexFuncCall) Args added in v0.0.5

func (c IValidatorStakingTokenOfOwnerByIndexFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingTokenOfOwnerByIndexFuncCall) Results added in v0.0.5

func (c IValidatorStakingTokenOfOwnerByIndexFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingTokenURIFunc

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

IValidatorStakingTokenURIFunc describes the behavior when the TokenURI method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingTokenURIFunc) History

History returns a sequence of IValidatorStakingTokenURIFuncCall objects describing the invocations of this function.

func (*IValidatorStakingTokenURIFunc) PushHook

func (f *IValidatorStakingTokenURIFunc) PushHook(hook func(*bind.CallOpts, *big.Int) (string, error))

PushHook adds a function to the end of hook queue. Each invocation of the TokenURI method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingTokenURIFunc) PushReturn

func (f *IValidatorStakingTokenURIFunc) PushReturn(r0 string, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingTokenURIFunc) SetDefaultHook

func (f *IValidatorStakingTokenURIFunc) SetDefaultHook(hook func(*bind.CallOpts, *big.Int) (string, error))

SetDefaultHook sets function that is called when the TokenURI method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingTokenURIFunc) SetDefaultReturn

func (f *IValidatorStakingTokenURIFunc) SetDefaultReturn(r0 string, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingTokenURIFuncCall

type IValidatorStakingTokenURIFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 string
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingTokenURIFuncCall is an object that describes an invocation of method TokenURI on an instance of MockIValidatorStaking.

func (IValidatorStakingTokenURIFuncCall) Args

func (c IValidatorStakingTokenURIFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingTokenURIFuncCall) Results

func (c IValidatorStakingTokenURIFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingTotalSupplyFunc added in v0.0.5

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

IValidatorStakingTotalSupplyFunc describes the behavior when the TotalSupply method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingTotalSupplyFunc) History added in v0.0.5

History returns a sequence of IValidatorStakingTotalSupplyFuncCall objects describing the invocations of this function.

func (*IValidatorStakingTotalSupplyFunc) PushHook added in v0.0.5

func (f *IValidatorStakingTotalSupplyFunc) PushHook(hook func(*bind.CallOpts) (*big.Int, error))

PushHook adds a function to the end of hook queue. Each invocation of the TotalSupply method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingTotalSupplyFunc) PushReturn added in v0.0.5

func (f *IValidatorStakingTotalSupplyFunc) PushReturn(r0 *big.Int, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingTotalSupplyFunc) SetDefaultHook added in v0.0.5

func (f *IValidatorStakingTotalSupplyFunc) SetDefaultHook(hook func(*bind.CallOpts) (*big.Int, error))

SetDefaultHook sets function that is called when the TotalSupply method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingTotalSupplyFunc) SetDefaultReturn added in v0.0.5

func (f *IValidatorStakingTotalSupplyFunc) SetDefaultReturn(r0 *big.Int, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingTotalSupplyFuncCall added in v0.0.5

type IValidatorStakingTotalSupplyFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.CallOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *big.Int
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingTotalSupplyFuncCall is an object that describes an invocation of method TotalSupply on an instance of MockIValidatorStaking.

func (IValidatorStakingTotalSupplyFuncCall) Args added in v0.0.5

func (c IValidatorStakingTotalSupplyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingTotalSupplyFuncCall) Results added in v0.0.5

func (c IValidatorStakingTotalSupplyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingTransferFromFunc

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

IValidatorStakingTransferFromFunc describes the behavior when the TransferFrom method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingTransferFromFunc) History

History returns a sequence of IValidatorStakingTransferFromFuncCall objects describing the invocations of this function.

func (*IValidatorStakingTransferFromFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the TransferFrom method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingTransferFromFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingTransferFromFunc) SetDefaultHook

SetDefaultHook sets function that is called when the TransferFrom method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingTransferFromFunc) SetDefaultReturn

func (f *IValidatorStakingTransferFromFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingTransferFromFuncCall

type IValidatorStakingTransferFromFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 common.Address
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 *big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingTransferFromFuncCall is an object that describes an invocation of method TransferFrom on an instance of MockIValidatorStaking.

func (IValidatorStakingTransferFromFuncCall) Args

func (c IValidatorStakingTransferFromFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingTransferFromFuncCall) Results

func (c IValidatorStakingTransferFromFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingTripCBFunc

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

IValidatorStakingTripCBFunc describes the behavior when the TripCB method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingTripCBFunc) History

History returns a sequence of IValidatorStakingTripCBFuncCall objects describing the invocations of this function.

func (*IValidatorStakingTripCBFunc) PushHook

func (f *IValidatorStakingTripCBFunc) PushHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

PushHook adds a function to the end of hook queue. Each invocation of the TripCB method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingTripCBFunc) PushReturn

func (f *IValidatorStakingTripCBFunc) PushReturn(r0 *types.Transaction, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingTripCBFunc) SetDefaultHook

func (f *IValidatorStakingTripCBFunc) SetDefaultHook(hook func(*bind.TransactOpts) (*types.Transaction, error))

SetDefaultHook sets function that is called when the TripCB method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingTripCBFunc) SetDefaultReturn

func (f *IValidatorStakingTripCBFunc) SetDefaultReturn(r0 *types.Transaction, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingTripCBFuncCall

type IValidatorStakingTripCBFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.TransactOpts
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Transaction
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingTripCBFuncCall is an object that describes an invocation of method TripCB on an instance of MockIValidatorStaking.

func (IValidatorStakingTripCBFuncCall) Args

func (c IValidatorStakingTripCBFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingTripCBFuncCall) Results

func (c IValidatorStakingTripCBFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingWatchApprovalForAllFunc

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

IValidatorStakingWatchApprovalForAllFunc describes the behavior when the WatchApprovalForAll method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingWatchApprovalForAllFunc) History

History returns a sequence of IValidatorStakingWatchApprovalForAllFuncCall objects describing the invocations of this function.

func (*IValidatorStakingWatchApprovalForAllFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchApprovalForAll method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingWatchApprovalForAllFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingWatchApprovalForAllFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchApprovalForAll method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingWatchApprovalForAllFunc) SetDefaultReturn

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingWatchApprovalForAllFuncCall

type IValidatorStakingWatchApprovalForAllFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorStakingApprovalForAll
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingWatchApprovalForAllFuncCall is an object that describes an invocation of method WatchApprovalForAll on an instance of MockIValidatorStaking.

func (IValidatorStakingWatchApprovalForAllFuncCall) Args

func (c IValidatorStakingWatchApprovalForAllFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingWatchApprovalForAllFuncCall) Results

func (c IValidatorStakingWatchApprovalForAllFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingWatchApprovalFunc

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

IValidatorStakingWatchApprovalFunc describes the behavior when the WatchApproval method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingWatchApprovalFunc) History

History returns a sequence of IValidatorStakingWatchApprovalFuncCall objects describing the invocations of this function.

func (*IValidatorStakingWatchApprovalFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchApproval method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingWatchApprovalFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingWatchApprovalFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchApproval method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingWatchApprovalFunc) SetDefaultReturn

func (f *IValidatorStakingWatchApprovalFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingWatchApprovalFuncCall

type IValidatorStakingWatchApprovalFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorStakingApproval
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingWatchApprovalFuncCall is an object that describes an invocation of method WatchApproval on an instance of MockIValidatorStaking.

func (IValidatorStakingWatchApprovalFuncCall) Args

func (c IValidatorStakingWatchApprovalFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingWatchApprovalFuncCall) Results

func (c IValidatorStakingWatchApprovalFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingWatchInitializedFunc added in v0.0.2

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

IValidatorStakingWatchInitializedFunc describes the behavior when the WatchInitialized method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingWatchInitializedFunc) History added in v0.0.2

History returns a sequence of IValidatorStakingWatchInitializedFuncCall objects describing the invocations of this function.

func (*IValidatorStakingWatchInitializedFunc) PushHook added in v0.0.2

PushHook adds a function to the end of hook queue. Each invocation of the WatchInitialized method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingWatchInitializedFunc) PushReturn added in v0.0.2

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingWatchInitializedFunc) SetDefaultHook added in v0.0.2

SetDefaultHook sets function that is called when the WatchInitialized method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingWatchInitializedFunc) SetDefaultReturn added in v0.0.2

func (f *IValidatorStakingWatchInitializedFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingWatchInitializedFuncCall added in v0.0.2

type IValidatorStakingWatchInitializedFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorStakingInitialized
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingWatchInitializedFuncCall is an object that describes an invocation of method WatchInitialized on an instance of MockIValidatorStaking.

func (IValidatorStakingWatchInitializedFuncCall) Args added in v0.0.2

func (c IValidatorStakingWatchInitializedFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingWatchInitializedFuncCall) Results added in v0.0.2

func (c IValidatorStakingWatchInitializedFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type IValidatorStakingWatchTransferFunc

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

IValidatorStakingWatchTransferFunc describes the behavior when the WatchTransfer method of the parent MockIValidatorStaking instance is invoked.

func (*IValidatorStakingWatchTransferFunc) History

History returns a sequence of IValidatorStakingWatchTransferFuncCall objects describing the invocations of this function.

func (*IValidatorStakingWatchTransferFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the WatchTransfer method of the parent MockIValidatorStaking instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*IValidatorStakingWatchTransferFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*IValidatorStakingWatchTransferFunc) SetDefaultHook

SetDefaultHook sets function that is called when the WatchTransfer method of the parent MockIValidatorStaking instance is invoked and the hook queue is empty.

func (*IValidatorStakingWatchTransferFunc) SetDefaultReturn

func (f *IValidatorStakingWatchTransferFunc) SetDefaultReturn(r0 event.Subscription, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type IValidatorStakingWatchTransferFuncCall

type IValidatorStakingWatchTransferFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 *bind.WatchOpts
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 chan<- *bindings.ValidatorStakingTransfer
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 []common.Address
	// Arg3 is the value of the 4th argument passed to this method
	// invocation.
	Arg3 []common.Address
	// Arg4 is the value of the 5th argument passed to this method
	// invocation.
	Arg4 []*big.Int
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 event.Subscription
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

IValidatorStakingWatchTransferFuncCall is an object that describes an invocation of method WatchTransfer on an instance of MockIValidatorStaking.

func (IValidatorStakingWatchTransferFuncCall) Args

func (c IValidatorStakingWatchTransferFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (IValidatorStakingWatchTransferFuncCall) Results

func (c IValidatorStakingWatchTransferFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type MockAdminClient

type MockAdminClient struct {
	// SetAdminHandlerFunc is an instance of a mock function object
	// controlling the behavior of the method SetAdminHandler.
	SetAdminHandlerFunc *AdminClientSetAdminHandlerFunc
}

MockAdminClient is a mock implementation of the AdminClient interface (from the package github.com/alicenet/alicenet/layer1/monitor/interfaces) used for unit testing.

func NewMockAdminClient

func NewMockAdminClient() *MockAdminClient

NewMockAdminClient creates a new mock of the AdminClient interface. All methods return zero values for all results, unless overwritten.

func NewMockAdminClientFrom

func NewMockAdminClientFrom(i interfaces.AdminClient) *MockAdminClient

NewMockAdminClientFrom creates a new mock of the MockAdminClient interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockAdminClient

func NewStrictMockAdminClient() *MockAdminClient

NewStrictMockAdminClient creates a new mock of the AdminClient interface. All methods panic on invocation, unless overwritten.

func (*MockAdminClient) SetAdminHandler

func (m *MockAdminClient) SetAdminHandler(v0 interfaces.AdminHandler)

SetAdminHandler delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockAdminHandler

type MockAdminHandler struct {
	// AddPrivateKeyFunc is an instance of a mock function object
	// controlling the behavior of the method AddPrivateKey.
	AddPrivateKeyFunc *AdminHandlerAddPrivateKeyFunc
	// AddSnapshotFunc is an instance of a mock function object controlling
	// the behavior of the method AddSnapshot.
	AddSnapshotFunc *AdminHandlerAddSnapshotFunc
	// AddValidatorSetFunc is an instance of a mock function object
	// controlling the behavior of the method AddValidatorSet.
	AddValidatorSetFunc *AdminHandlerAddValidatorSetFunc
	// IsSynchronizedFunc is an instance of a mock function object
	// controlling the behavior of the method IsSynchronized.
	IsSynchronizedFunc *AdminHandlerIsSynchronizedFunc
	// RegisterSnapshotCallbackFunc is an instance of a mock function object
	// controlling the behavior of the method RegisterSnapshotCallback.
	RegisterSnapshotCallbackFunc *AdminHandlerRegisterSnapshotCallbackFunc
	// SetSynchronizedFunc is an instance of a mock function object
	// controlling the behavior of the method SetSynchronized.
	SetSynchronizedFunc *AdminHandlerSetSynchronizedFunc
	// UpdateDynamicStorageFunc is an instance of a mock function object
	// controlling the behavior of the method UpdateDynamicStorage.
	UpdateDynamicStorageFunc *AdminHandlerUpdateDynamicStorageFunc
}

MockAdminHandler is a mock implementation of the AdminHandler interface (from the package github.com/alicenet/alicenet/layer1/monitor/interfaces) used for unit testing.

func NewMockAdminHandler

func NewMockAdminHandler() *MockAdminHandler

NewMockAdminHandler creates a new mock of the AdminHandler interface. All methods return zero values for all results, unless overwritten.

func NewMockAdminHandlerFrom

func NewMockAdminHandlerFrom(i interfaces.AdminHandler) *MockAdminHandler

NewMockAdminHandlerFrom creates a new mock of the MockAdminHandler interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockAdminHandler

func NewStrictMockAdminHandler() *MockAdminHandler

NewStrictMockAdminHandler creates a new mock of the AdminHandler interface. All methods panic on invocation, unless overwritten.

func (*MockAdminHandler) AddPrivateKey

func (m *MockAdminHandler) AddPrivateKey(v0 []byte, v1 constants.CurveSpec) error

AddPrivateKey delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockAdminHandler) AddSnapshot

func (m *MockAdminHandler) AddSnapshot(v0 *objs.BlockHeader, v1 bool) error

AddSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockAdminHandler) AddValidatorSet

func (m *MockAdminHandler) AddValidatorSet(v0 *objs.ValidatorSet) error

AddValidatorSet delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockAdminHandler) IsSynchronized

func (m *MockAdminHandler) IsSynchronized() bool

IsSynchronized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockAdminHandler) RegisterSnapshotCallback

func (m *MockAdminHandler) RegisterSnapshotCallback(v0 func(*objs.BlockHeader, int, int) error)

RegisterSnapshotCallback delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockAdminHandler) SetSynchronized

func (m *MockAdminHandler) SetSynchronized(v0 bool)

SetSynchronized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockAdminHandler) UpdateDynamicStorage added in v0.0.8

func (m *MockAdminHandler) UpdateDynamicStorage(v0 uint32, v1 []byte) error

UpdateDynamicStorage delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockAllSmartContracts

type MockAllSmartContracts struct {
	// EthereumContractsFunc is an instance of a mock function object
	// controlling the behavior of the method EthereumContracts.
	EthereumContractsFunc *AllSmartContractsEthereumContractsFunc
}

MockAllSmartContracts is a mock implementation of the AllSmartContracts interface (from the package github.com/alicenet/alicenet/layer1) used for unit testing.

func NewMockAllSmartContracts

func NewMockAllSmartContracts() *MockAllSmartContracts

NewMockAllSmartContracts creates a new mock of the AllSmartContracts interface. All methods return zero values for all results, unless overwritten.

func NewMockAllSmartContractsFrom

func NewMockAllSmartContractsFrom(i layer1.AllSmartContracts) *MockAllSmartContracts

NewMockAllSmartContractsFrom creates a new mock of the MockAllSmartContracts interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockAllSmartContracts

func NewStrictMockAllSmartContracts() *MockAllSmartContracts

NewStrictMockAllSmartContracts creates a new mock of the AllSmartContracts interface. All methods panic on invocation, unless overwritten.

func (*MockAllSmartContracts) EthereumContracts

func (m *MockAllSmartContracts) EthereumContracts() layer1.EthereumContracts

EthereumContracts delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockClient

type MockClient struct {
	// CloseFunc is an instance of a mock function object controlling the
	// behavior of the method Close.
	CloseFunc *ClientCloseFunc
	// EndpointInSyncFunc is an instance of a mock function object
	// controlling the behavior of the method EndpointInSync.
	EndpointInSyncFunc *ClientEndpointInSyncFunc
	// ExtractTransactionSenderFunc is an instance of a mock function object
	// controlling the behavior of the method ExtractTransactionSender.
	ExtractTransactionSenderFunc *ClientExtractTransactionSenderFunc
	// GetAccountFunc is an instance of a mock function object controlling
	// the behavior of the method GetAccount.
	GetAccountFunc *ClientGetAccountFunc
	// GetBalanceFunc is an instance of a mock function object controlling
	// the behavior of the method GetBalance.
	GetBalanceFunc *ClientGetBalanceFunc
	// GetBlockBaseFeeAndSuggestedGasTipFunc is an instance of a mock
	// function object controlling the behavior of the method
	// GetBlockBaseFeeAndSuggestedGasTip.
	GetBlockBaseFeeAndSuggestedGasTipFunc *ClientGetBlockBaseFeeAndSuggestedGasTipFunc
	// GetBlockByNumberFunc is an instance of a mock function object
	// controlling the behavior of the method GetBlockByNumber.
	GetBlockByNumberFunc *ClientGetBlockByNumberFunc
	// GetCallOptsFunc is an instance of a mock function object controlling
	// the behavior of the method GetCallOpts.
	GetCallOptsFunc *ClientGetCallOptsFunc
	// GetCallOptsLatestBlockFunc is an instance of a mock function object
	// controlling the behavior of the method GetCallOptsLatestBlock.
	GetCallOptsLatestBlockFunc *ClientGetCallOptsLatestBlockFunc
	// GetChainIDFunc is an instance of a mock function object controlling
	// the behavior of the method GetChainID.
	GetChainIDFunc *ClientGetChainIDFunc
	// GetCurrentHeightFunc is an instance of a mock function object
	// controlling the behavior of the method GetCurrentHeight.
	GetCurrentHeightFunc *ClientGetCurrentHeightFunc
	// GetDefaultAccountFunc is an instance of a mock function object
	// controlling the behavior of the method GetDefaultAccount.
	GetDefaultAccountFunc *ClientGetDefaultAccountFunc
	// GetEndpointFunc is an instance of a mock function object controlling
	// the behavior of the method GetEndpoint.
	GetEndpointFunc *ClientGetEndpointFunc
	// GetEventsFunc is an instance of a mock function object controlling
	// the behavior of the method GetEvents.
	GetEventsFunc *ClientGetEventsFunc
	// GetFinalityDelayFunc is an instance of a mock function object
	// controlling the behavior of the method GetFinalityDelay.
	GetFinalityDelayFunc *ClientGetFinalityDelayFunc
	// GetFinalizedHeightFunc is an instance of a mock function object
	// controlling the behavior of the method GetFinalizedHeight.
	GetFinalizedHeightFunc *ClientGetFinalizedHeightFunc
	// GetHeaderByNumberFunc is an instance of a mock function object
	// controlling the behavior of the method GetHeaderByNumber.
	GetHeaderByNumberFunc *ClientGetHeaderByNumberFunc
	// GetKnownAccountsFunc is an instance of a mock function object
	// controlling the behavior of the method GetKnownAccounts.
	GetKnownAccountsFunc *ClientGetKnownAccountsFunc
	// GetPeerCountFunc is an instance of a mock function object controlling
	// the behavior of the method GetPeerCount.
	GetPeerCountFunc *ClientGetPeerCountFunc
	// GetPendingNonceFunc is an instance of a mock function object
	// controlling the behavior of the method GetPendingNonce.
	GetPendingNonceFunc *ClientGetPendingNonceFunc
	// GetTimeoutContextFunc is an instance of a mock function object
	// controlling the behavior of the method GetTimeoutContext.
	GetTimeoutContextFunc *ClientGetTimeoutContextFunc
	// GetTransactionByHashFunc is an instance of a mock function object
	// controlling the behavior of the method GetTransactionByHash.
	GetTransactionByHashFunc *ClientGetTransactionByHashFunc
	// GetTransactionOptsFunc is an instance of a mock function object
	// controlling the behavior of the method GetTransactionOpts.
	GetTransactionOptsFunc *ClientGetTransactionOptsFunc
	// GetTransactionReceiptFunc is an instance of a mock function object
	// controlling the behavior of the method GetTransactionReceipt.
	GetTransactionReceiptFunc *ClientGetTransactionReceiptFunc
	// GetTxMaxGasFeeAllowedFunc is an instance of a mock function object
	// controlling the behavior of the method GetTxMaxGasFeeAllowed.
	GetTxMaxGasFeeAllowedFunc *ClientGetTxMaxGasFeeAllowedFunc
	// GetTxMaxStaleBlocksFunc is an instance of a mock function object
	// controlling the behavior of the method GetTxMaxStaleBlocks.
	GetTxMaxStaleBlocksFunc *ClientGetTxMaxStaleBlocksFunc
	// GetTxNotFoundMaxBlocksFunc is an instance of a mock function object
	// controlling the behavior of the method GetTxNotFoundMaxBlocks.
	GetTxNotFoundMaxBlocksFunc *ClientGetTxNotFoundMaxBlocksFunc
	// IsAccessibleFunc is an instance of a mock function object controlling
	// the behavior of the method IsAccessible.
	IsAccessibleFunc *ClientIsAccessibleFunc
	// RetryTransactionFunc is an instance of a mock function object
	// controlling the behavior of the method RetryTransaction.
	RetryTransactionFunc *ClientRetryTransactionFunc
	// SendTransactionFunc is an instance of a mock function object
	// controlling the behavior of the method SendTransaction.
	SendTransactionFunc *ClientSendTransactionFunc
	// SignTransactionFunc is an instance of a mock function object
	// controlling the behavior of the method SignTransaction.
	SignTransactionFunc *ClientSignTransactionFunc
}

MockClient is a mock implementation of the Client interface (from the package github.com/alicenet/alicenet/layer1) used for unit testing.

func NewMockClient

func NewMockClient() *MockClient

NewMockClient creates a new mock of the Client interface. All methods return zero values for all results, unless overwritten.

func NewMockClientFrom

func NewMockClientFrom(i layer1.Client) *MockClient

NewMockClientFrom creates a new mock of the MockClient interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockClient

func NewStrictMockClient() *MockClient

NewStrictMockClient creates a new mock of the Client interface. All methods panic on invocation, unless overwritten.

func (*MockClient) Close

func (m *MockClient) Close()

Close delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) EndpointInSync

func (m *MockClient) EndpointInSync(v0 context.Context) (bool, uint32, error)

EndpointInSync delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) ExtractTransactionSender

func (m *MockClient) ExtractTransactionSender(v0 *types.Transaction) (common.Address, error)

ExtractTransactionSender delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetAccount

func (m *MockClient) GetAccount(v0 common.Address) (accounts.Account, error)

GetAccount delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetBalance

func (m *MockClient) GetBalance(v0 common.Address) (*big.Int, error)

GetBalance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetBlockBaseFeeAndSuggestedGasTip

func (m *MockClient) GetBlockBaseFeeAndSuggestedGasTip(v0 context.Context) (*big.Int, *big.Int, error)

GetBlockBaseFeeAndSuggestedGasTip delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetBlockByNumber

func (m *MockClient) GetBlockByNumber(v0 context.Context, v1 *big.Int) (*types.Block, error)

GetBlockByNumber delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetCallOpts

func (m *MockClient) GetCallOpts(v0 context.Context, v1 accounts.Account) (*bind.CallOpts, error)

GetCallOpts delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetCallOptsLatestBlock

func (m *MockClient) GetCallOptsLatestBlock(v0 context.Context, v1 accounts.Account) *bind.CallOpts

GetCallOptsLatestBlock delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetChainID

func (m *MockClient) GetChainID() *big.Int

GetChainID delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetCurrentHeight

func (m *MockClient) GetCurrentHeight(v0 context.Context) (uint64, error)

GetCurrentHeight delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetDefaultAccount

func (m *MockClient) GetDefaultAccount() accounts.Account

GetDefaultAccount delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetEndpoint

func (m *MockClient) GetEndpoint() string

GetEndpoint delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetEvents

func (m *MockClient) GetEvents(v0 context.Context, v1 uint64, v2 uint64, v3 []common.Address) ([]types.Log, error)

GetEvents delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetFinalityDelay

func (m *MockClient) GetFinalityDelay() uint64

GetFinalityDelay delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetFinalizedHeight

func (m *MockClient) GetFinalizedHeight(v0 context.Context) (uint64, error)

GetFinalizedHeight delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetHeaderByNumber

func (m *MockClient) GetHeaderByNumber(v0 context.Context, v1 *big.Int) (*types.Header, error)

GetHeaderByNumber delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetKnownAccounts

func (m *MockClient) GetKnownAccounts() []accounts.Account

GetKnownAccounts delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetPeerCount

func (m *MockClient) GetPeerCount(v0 context.Context) (uint64, error)

GetPeerCount delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetPendingNonce

func (m *MockClient) GetPendingNonce(v0 context.Context, v1 common.Address) (uint64, error)

GetPendingNonce delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTimeoutContext

func (m *MockClient) GetTimeoutContext() (context.Context, context.CancelFunc)

GetTimeoutContext delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTransactionByHash

func (m *MockClient) GetTransactionByHash(v0 context.Context, v1 common.Hash) (*types.Transaction, bool, error)

GetTransactionByHash delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTransactionOpts

func (m *MockClient) GetTransactionOpts(v0 context.Context, v1 accounts.Account) (*bind.TransactOpts, error)

GetTransactionOpts delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTransactionReceipt

func (m *MockClient) GetTransactionReceipt(v0 context.Context, v1 common.Hash) (*types.Receipt, error)

GetTransactionReceipt delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTxMaxGasFeeAllowed

func (m *MockClient) GetTxMaxGasFeeAllowed() *big.Int

GetTxMaxGasFeeAllowed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTxMaxStaleBlocks

func (m *MockClient) GetTxMaxStaleBlocks() uint64

GetTxMaxStaleBlocks delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) GetTxNotFoundMaxBlocks

func (m *MockClient) GetTxNotFoundMaxBlocks() uint64

GetTxNotFoundMaxBlocks delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) IsAccessible

func (m *MockClient) IsAccessible() bool

IsAccessible delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) RetryTransaction

func (m *MockClient) RetryTransaction(v0 context.Context, v1 *types.Transaction, v2 *big.Int, v3 *big.Int) (*types.Transaction, error)

RetryTransaction delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) SendTransaction

func (m *MockClient) SendTransaction(v0 context.Context, v1 *types.Transaction) error

SendTransaction delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockClient) SignTransaction

func (m *MockClient) SignTransaction(v0 types.TxData, v1 common.Address) (*types.Transaction, error)

SignTransaction delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockDepositHandler

type MockDepositHandler struct {
	// AddFunc is an instance of a mock function object controlling the
	// behavior of the method Add.
	AddFunc *DepositHandlerAddFunc
}

MockDepositHandler is a mock implementation of the DepositHandler interface (from the package github.com/alicenet/alicenet/layer1/monitor/interfaces) used for unit testing.

func NewMockDepositHandler

func NewMockDepositHandler() *MockDepositHandler

NewMockDepositHandler creates a new mock of the DepositHandler interface. All methods return zero values for all results, unless overwritten.

func NewMockDepositHandlerFrom

func NewMockDepositHandlerFrom(i interfaces.DepositHandler) *MockDepositHandler

NewMockDepositHandlerFrom creates a new mock of the MockDepositHandler interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockDepositHandler

func NewStrictMockDepositHandler() *MockDepositHandler

NewStrictMockDepositHandler creates a new mock of the DepositHandler interface. All methods panic on invocation, unless overwritten.

func (*MockDepositHandler) Add

func (m *MockDepositHandler) Add(v0 *v2.Txn, v1 uint32, v2 []byte, v3 *big.Int, v4 *objs1.Owner) error

Add delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockEthereumContracts

type MockEthereumContracts struct {
	// ALCAFunc is an instance of a mock function object controlling the
	// behavior of the method ALCA.
	ALCAFunc *EthereumContractsALCAFunc
	// ALCAAddressFunc is an instance of a mock function object controlling
	// the behavior of the method ALCAAddress.
	ALCAAddressFunc *EthereumContractsALCAAddressFunc
	// ALCBFunc is an instance of a mock function object controlling the
	// behavior of the method ALCB.
	ALCBFunc *EthereumContractsALCBFunc
	// ALCBAddressFunc is an instance of a mock function object controlling
	// the behavior of the method ALCBAddress.
	ALCBAddressFunc *EthereumContractsALCBAddressFunc
	// ContractFactoryFunc is an instance of a mock function object
	// controlling the behavior of the method ContractFactory.
	ContractFactoryFunc *EthereumContractsContractFactoryFunc
	// ContractFactoryAddressFunc is an instance of a mock function object
	// controlling the behavior of the method ContractFactoryAddress.
	ContractFactoryAddressFunc *EthereumContractsContractFactoryAddressFunc
	// DynamicsFunc is an instance of a mock function object controlling the
	// behavior of the method Dynamics.
	DynamicsFunc *EthereumContractsDynamicsFunc
	// DynamicsAddressFunc is an instance of a mock function object
	// controlling the behavior of the method DynamicsAddress.
	DynamicsAddressFunc *EthereumContractsDynamicsAddressFunc
	// EthdkgFunc is an instance of a mock function object controlling the
	// behavior of the method Ethdkg.
	EthdkgFunc *EthereumContractsEthdkgFunc
	// EthdkgAddressFunc is an instance of a mock function object
	// controlling the behavior of the method EthdkgAddress.
	EthdkgAddressFunc *EthereumContractsEthdkgAddressFunc
	// GetAllAddressesFunc is an instance of a mock function object
	// controlling the behavior of the method GetAllAddresses.
	GetAllAddressesFunc *EthereumContractsGetAllAddressesFunc
	// GovernanceFunc is an instance of a mock function object controlling
	// the behavior of the method Governance.
	GovernanceFunc *EthereumContractsGovernanceFunc
	// GovernanceAddressFunc is an instance of a mock function object
	// controlling the behavior of the method GovernanceAddress.
	GovernanceAddressFunc *EthereumContractsGovernanceAddressFunc
	// PublicStakingFunc is an instance of a mock function object
	// controlling the behavior of the method PublicStaking.
	PublicStakingFunc *EthereumContractsPublicStakingFunc
	// PublicStakingAddressFunc is an instance of a mock function object
	// controlling the behavior of the method PublicStakingAddress.
	PublicStakingAddressFunc *EthereumContractsPublicStakingAddressFunc
	// SnapshotsFunc is an instance of a mock function object controlling
	// the behavior of the method Snapshots.
	SnapshotsFunc *EthereumContractsSnapshotsFunc
	// SnapshotsAddressFunc is an instance of a mock function object
	// controlling the behavior of the method SnapshotsAddress.
	SnapshotsAddressFunc *EthereumContractsSnapshotsAddressFunc
	// ValidatorPoolFunc is an instance of a mock function object
	// controlling the behavior of the method ValidatorPool.
	ValidatorPoolFunc *EthereumContractsValidatorPoolFunc
	// ValidatorPoolAddressFunc is an instance of a mock function object
	// controlling the behavior of the method ValidatorPoolAddress.
	ValidatorPoolAddressFunc *EthereumContractsValidatorPoolAddressFunc
	// ValidatorStakingFunc is an instance of a mock function object
	// controlling the behavior of the method ValidatorStaking.
	ValidatorStakingFunc *EthereumContractsValidatorStakingFunc
	// ValidatorStakingAddressFunc is an instance of a mock function object
	// controlling the behavior of the method ValidatorStakingAddress.
	ValidatorStakingAddressFunc *EthereumContractsValidatorStakingAddressFunc
}

MockEthereumContracts is a mock implementation of the EthereumContracts interface (from the package github.com/alicenet/alicenet/layer1) used for unit testing.

func NewMockEthereumContracts

func NewMockEthereumContracts() *MockEthereumContracts

NewMockEthereumContracts creates a new mock of the EthereumContracts interface. All methods return zero values for all results, unless overwritten.

func NewMockEthereumContractsFrom

func NewMockEthereumContractsFrom(i layer1.EthereumContracts) *MockEthereumContracts

NewMockEthereumContractsFrom creates a new mock of the MockEthereumContracts interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockEthereumContracts

func NewStrictMockEthereumContracts() *MockEthereumContracts

NewStrictMockEthereumContracts creates a new mock of the EthereumContracts interface. All methods panic on invocation, unless overwritten.

func (*MockEthereumContracts) ALCA added in v0.0.8

ALCA delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ALCAAddress added in v0.0.8

func (m *MockEthereumContracts) ALCAAddress() common.Address

ALCAAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ALCB added in v0.0.8

ALCB delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ALCBAddress added in v0.0.8

func (m *MockEthereumContracts) ALCBAddress() common.Address

ALCBAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ContractFactory

func (m *MockEthereumContracts) ContractFactory() bindings.IAliceNetFactory

ContractFactory delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ContractFactoryAddress

func (m *MockEthereumContracts) ContractFactoryAddress() common.Address

ContractFactoryAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) Dynamics added in v0.0.5

Dynamics delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) DynamicsAddress added in v0.0.5

func (m *MockEthereumContracts) DynamicsAddress() common.Address

DynamicsAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) Ethdkg

Ethdkg delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) EthdkgAddress

func (m *MockEthereumContracts) EthdkgAddress() common.Address

EthdkgAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) GetAllAddresses

func (m *MockEthereumContracts) GetAllAddresses() []common.Address

GetAllAddresses delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) Governance

func (m *MockEthereumContracts) Governance() bindings.IGovernance

Governance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) GovernanceAddress

func (m *MockEthereumContracts) GovernanceAddress() common.Address

GovernanceAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) PublicStaking

func (m *MockEthereumContracts) PublicStaking() bindings.IPublicStaking

PublicStaking delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) PublicStakingAddress

func (m *MockEthereumContracts) PublicStakingAddress() common.Address

PublicStakingAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) Snapshots

func (m *MockEthereumContracts) Snapshots() bindings.ISnapshots

Snapshots delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) SnapshotsAddress

func (m *MockEthereumContracts) SnapshotsAddress() common.Address

SnapshotsAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ValidatorPool

func (m *MockEthereumContracts) ValidatorPool() bindings.IValidatorPool

ValidatorPool delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ValidatorPoolAddress

func (m *MockEthereumContracts) ValidatorPoolAddress() common.Address

ValidatorPoolAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ValidatorStaking

func (m *MockEthereumContracts) ValidatorStaking() bindings.IValidatorStaking

ValidatorStaking delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockEthereumContracts) ValidatorStakingAddress

func (m *MockEthereumContracts) ValidatorStakingAddress() common.Address

ValidatorStakingAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIALCA added in v0.0.8

type MockIALCA struct {
	// AllowanceFunc is an instance of a mock function object controlling
	// the behavior of the method Allowance.
	AllowanceFunc *IALCAAllowanceFunc
	// ApproveFunc is an instance of a mock function object controlling the
	// behavior of the method Approve.
	ApproveFunc *IALCAApproveFunc
	// BalanceOfFunc is an instance of a mock function object controlling
	// the behavior of the method BalanceOf.
	BalanceOfFunc *IALCABalanceOfFunc
	// ConvertFunc is an instance of a mock function object controlling the
	// behavior of the method Convert.
	ConvertFunc *IALCAConvertFunc
	// DecimalsFunc is an instance of a mock function object controlling the
	// behavior of the method Decimals.
	DecimalsFunc *IALCADecimalsFunc
	// DecreaseAllowanceFunc is an instance of a mock function object
	// controlling the behavior of the method DecreaseAllowance.
	DecreaseAllowanceFunc *IALCADecreaseAllowanceFunc
	// ExternalBurnFunc is an instance of a mock function object controlling
	// the behavior of the method ExternalBurn.
	ExternalBurnFunc *IALCAExternalBurnFunc
	// ExternalMintFunc is an instance of a mock function object controlling
	// the behavior of the method ExternalMint.
	ExternalMintFunc *IALCAExternalMintFunc
	// FilterApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method FilterApproval.
	FilterApprovalFunc *IALCAFilterApprovalFunc
	// FilterTransferFunc is an instance of a mock function object
	// controlling the behavior of the method FilterTransfer.
	FilterTransferFunc *IALCAFilterTransferFunc
	// FinishEarlyStageFunc is an instance of a mock function object
	// controlling the behavior of the method FinishEarlyStage.
	FinishEarlyStageFunc *IALCAFinishEarlyStageFunc
	// GetLegacyTokenAddressFunc is an instance of a mock function object
	// controlling the behavior of the method GetLegacyTokenAddress.
	GetLegacyTokenAddressFunc *IALCAGetLegacyTokenAddressFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IALCAGetMetamorphicContractAddressFunc
	// IncreaseAllowanceFunc is an instance of a mock function object
	// controlling the behavior of the method IncreaseAllowance.
	IncreaseAllowanceFunc *IALCAIncreaseAllowanceFunc
	// IsEarlyStageMigrationFunc is an instance of a mock function object
	// controlling the behavior of the method IsEarlyStageMigration.
	IsEarlyStageMigrationFunc *IALCAIsEarlyStageMigrationFunc
	// MigrateFunc is an instance of a mock function object controlling the
	// behavior of the method Migrate.
	MigrateFunc *IALCAMigrateFunc
	// MigrateToFunc is an instance of a mock function object controlling
	// the behavior of the method MigrateTo.
	MigrateToFunc *IALCAMigrateToFunc
	// NameFunc is an instance of a mock function object controlling the
	// behavior of the method Name.
	NameFunc *IALCANameFunc
	// ParseApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method ParseApproval.
	ParseApprovalFunc *IALCAParseApprovalFunc
	// ParseTransferFunc is an instance of a mock function object
	// controlling the behavior of the method ParseTransfer.
	ParseTransferFunc *IALCAParseTransferFunc
	// SymbolFunc is an instance of a mock function object controlling the
	// behavior of the method Symbol.
	SymbolFunc *IALCASymbolFunc
	// TotalSupplyFunc is an instance of a mock function object controlling
	// the behavior of the method TotalSupply.
	TotalSupplyFunc *IALCATotalSupplyFunc
	// TransferFunc is an instance of a mock function object controlling the
	// behavior of the method Transfer.
	TransferFunc *IALCATransferFunc
	// TransferFromFunc is an instance of a mock function object controlling
	// the behavior of the method TransferFrom.
	TransferFromFunc *IALCATransferFromFunc
	// WatchApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method WatchApproval.
	WatchApprovalFunc *IALCAWatchApprovalFunc
	// WatchTransferFunc is an instance of a mock function object
	// controlling the behavior of the method WatchTransfer.
	WatchTransferFunc *IALCAWatchTransferFunc
}

MockIALCA is a mock implementation of the IALCA interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIALCA added in v0.0.8

func NewMockIALCA() *MockIALCA

NewMockIALCA creates a new mock of the IALCA interface. All methods return zero values for all results, unless overwritten.

func NewMockIALCAFrom added in v0.0.8

func NewMockIALCAFrom(i bindings.IALCA) *MockIALCA

NewMockIALCAFrom creates a new mock of the MockIALCA interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIALCA added in v0.0.8

func NewStrictMockIALCA() *MockIALCA

NewStrictMockIALCA creates a new mock of the IALCA interface. All methods panic on invocation, unless overwritten.

func (*MockIALCA) Allowance added in v0.0.8

func (m *MockIALCA) Allowance(v0 *bind.CallOpts, v1 common.Address, v2 common.Address) (*big.Int, error)

Allowance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Approve added in v0.0.8

func (m *MockIALCA) Approve(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

Approve delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) BalanceOf added in v0.0.8

func (m *MockIALCA) BalanceOf(v0 *bind.CallOpts, v1 common.Address) (*big.Int, error)

BalanceOf delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Convert added in v0.0.8

func (m *MockIALCA) Convert(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

Convert delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Decimals added in v0.0.8

func (m *MockIALCA) Decimals(v0 *bind.CallOpts) (uint8, error)

Decimals delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) DecreaseAllowance added in v0.0.8

func (m *MockIALCA) DecreaseAllowance(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

DecreaseAllowance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) ExternalBurn added in v0.0.8

func (m *MockIALCA) ExternalBurn(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

ExternalBurn delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) ExternalMint added in v0.0.8

func (m *MockIALCA) ExternalMint(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

ExternalMint delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) FilterApproval added in v0.0.8

func (m *MockIALCA) FilterApproval(v0 *bind.FilterOpts, v1 []common.Address, v2 []common.Address) (*bindings.ALCAApprovalIterator, error)

FilterApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) FilterTransfer added in v0.0.8

func (m *MockIALCA) FilterTransfer(v0 *bind.FilterOpts, v1 []common.Address, v2 []common.Address) (*bindings.ALCATransferIterator, error)

FilterTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) FinishEarlyStage added in v0.0.8

func (m *MockIALCA) FinishEarlyStage(v0 *bind.TransactOpts) (*types.Transaction, error)

FinishEarlyStage delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) GetLegacyTokenAddress added in v0.0.8

func (m *MockIALCA) GetLegacyTokenAddress(v0 *bind.CallOpts) (common.Address, error)

GetLegacyTokenAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) GetMetamorphicContractAddress added in v0.0.8

func (m *MockIALCA) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) IncreaseAllowance added in v0.0.8

func (m *MockIALCA) IncreaseAllowance(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

IncreaseAllowance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) IsEarlyStageMigration added in v0.0.10

func (m *MockIALCA) IsEarlyStageMigration(v0 *bind.CallOpts) (bool, error)

IsEarlyStageMigration delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Migrate added in v0.0.8

func (m *MockIALCA) Migrate(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

Migrate delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) MigrateTo added in v0.0.8

func (m *MockIALCA) MigrateTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

MigrateTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Name added in v0.0.8

func (m *MockIALCA) Name(v0 *bind.CallOpts) (string, error)

Name delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) ParseApproval added in v0.0.8

func (m *MockIALCA) ParseApproval(v0 types.Log) (*bindings.ALCAApproval, error)

ParseApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) ParseTransfer added in v0.0.8

func (m *MockIALCA) ParseTransfer(v0 types.Log) (*bindings.ALCATransfer, error)

ParseTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Symbol added in v0.0.8

func (m *MockIALCA) Symbol(v0 *bind.CallOpts) (string, error)

Symbol delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) TotalSupply added in v0.0.8

func (m *MockIALCA) TotalSupply(v0 *bind.CallOpts) (*big.Int, error)

TotalSupply delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) Transfer added in v0.0.8

func (m *MockIALCA) Transfer(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

Transfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) TransferFrom added in v0.0.8

func (m *MockIALCA) TransferFrom(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

TransferFrom delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) WatchApproval added in v0.0.8

func (m *MockIALCA) WatchApproval(v0 *bind.WatchOpts, v1 chan<- *bindings.ALCAApproval, v2 []common.Address, v3 []common.Address) (event.Subscription, error)

WatchApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCA) WatchTransfer added in v0.0.8

func (m *MockIALCA) WatchTransfer(v0 *bind.WatchOpts, v1 chan<- *bindings.ALCATransfer, v2 []common.Address, v3 []common.Address) (event.Subscription, error)

WatchTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIALCB added in v0.0.8

type MockIALCB struct {
	// AllowanceFunc is an instance of a mock function object controlling
	// the behavior of the method Allowance.
	AllowanceFunc *IALCBAllowanceFunc
	// ApproveFunc is an instance of a mock function object controlling the
	// behavior of the method Approve.
	ApproveFunc *IALCBApproveFunc
	// BalanceOfFunc is an instance of a mock function object controlling
	// the behavior of the method BalanceOf.
	BalanceOfFunc *IALCBBalanceOfFunc
	// BurnFunc is an instance of a mock function object controlling the
	// behavior of the method Burn.
	BurnFunc *IALCBBurnFunc
	// BurnToFunc is an instance of a mock function object controlling the
	// behavior of the method BurnTo.
	BurnToFunc *IALCBBurnToFunc
	// DecimalsFunc is an instance of a mock function object controlling the
	// behavior of the method Decimals.
	DecimalsFunc *IALCBDecimalsFunc
	// DecreaseAllowanceFunc is an instance of a mock function object
	// controlling the behavior of the method DecreaseAllowance.
	DecreaseAllowanceFunc *IALCBDecreaseAllowanceFunc
	// DepositFunc is an instance of a mock function object controlling the
	// behavior of the method Deposit.
	DepositFunc *IALCBDepositFunc
	// DepositTokensOnBridgesFunc is an instance of a mock function object
	// controlling the behavior of the method DepositTokensOnBridges.
	DepositTokensOnBridgesFunc *IALCBDepositTokensOnBridgesFunc
	// DestroyTokensFunc is an instance of a mock function object
	// controlling the behavior of the method DestroyTokens.
	DestroyTokensFunc *IALCBDestroyTokensFunc
	// DistributeFunc is an instance of a mock function object controlling
	// the behavior of the method Distribute.
	DistributeFunc *IALCBDistributeFunc
	// FilterApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method FilterApproval.
	FilterApprovalFunc *IALCBFilterApprovalFunc
	// FilterDepositReceivedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterDepositReceived.
	FilterDepositReceivedFunc *IALCBFilterDepositReceivedFunc
	// FilterTransferFunc is an instance of a mock function object
	// controlling the behavior of the method FilterTransfer.
	FilterTransferFunc *IALCBFilterTransferFunc
	// GetCentralBridgeRouterAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetCentralBridgeRouterAddress.
	GetCentralBridgeRouterAddressFunc *IALCBGetCentralBridgeRouterAddressFunc
	// GetDepositFunc is an instance of a mock function object controlling
	// the behavior of the method GetDeposit.
	GetDepositFunc *IALCBGetDepositFunc
	// GetDepositIDFunc is an instance of a mock function object controlling
	// the behavior of the method GetDepositID.
	GetDepositIDFunc *IALCBGetDepositIDFunc
	// GetEthFromTokensBurnFunc is an instance of a mock function object
	// controlling the behavior of the method GetEthFromTokensBurn.
	GetEthFromTokensBurnFunc *IALCBGetEthFromTokensBurnFunc
	// GetEthToMintTokensFunc is an instance of a mock function object
	// controlling the behavior of the method GetEthToMintTokens.
	GetEthToMintTokensFunc *IALCBGetEthToMintTokensFunc
	// GetLatestEthFromTokensBurnFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetLatestEthFromTokensBurn.
	GetLatestEthFromTokensBurnFunc *IALCBGetLatestEthFromTokensBurnFunc
	// GetLatestEthToMintTokensFunc is an instance of a mock function object
	// controlling the behavior of the method GetLatestEthToMintTokens.
	GetLatestEthToMintTokensFunc *IALCBGetLatestEthToMintTokensFunc
	// GetLatestMintedTokensFromEthFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetLatestMintedTokensFromEth.
	GetLatestMintedTokensFromEthFunc *IALCBGetLatestMintedTokensFromEthFunc
	// GetMarketSpreadFunc is an instance of a mock function object
	// controlling the behavior of the method GetMarketSpread.
	GetMarketSpreadFunc *IALCBGetMarketSpreadFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IALCBGetMetamorphicContractAddressFunc
	// GetMintedTokensFromEthFunc is an instance of a mock function object
	// controlling the behavior of the method GetMintedTokensFromEth.
	GetMintedTokensFromEthFunc *IALCBGetMintedTokensFromEthFunc
	// GetPoolBalanceFunc is an instance of a mock function object
	// controlling the behavior of the method GetPoolBalance.
	GetPoolBalanceFunc *IALCBGetPoolBalanceFunc
	// GetTotalTokensDepositedFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalTokensDeposited.
	GetTotalTokensDepositedFunc *IALCBGetTotalTokensDepositedFunc
	// GetYieldFunc is an instance of a mock function object controlling the
	// behavior of the method GetYield.
	GetYieldFunc *IALCBGetYieldFunc
	// IncreaseAllowanceFunc is an instance of a mock function object
	// controlling the behavior of the method IncreaseAllowance.
	IncreaseAllowanceFunc *IALCBIncreaseAllowanceFunc
	// MintFunc is an instance of a mock function object controlling the
	// behavior of the method Mint.
	MintFunc *IALCBMintFunc
	// MintDepositFunc is an instance of a mock function object controlling
	// the behavior of the method MintDeposit.
	MintDepositFunc *IALCBMintDepositFunc
	// MintToFunc is an instance of a mock function object controlling the
	// behavior of the method MintTo.
	MintToFunc *IALCBMintToFunc
	// NameFunc is an instance of a mock function object controlling the
	// behavior of the method Name.
	NameFunc *IALCBNameFunc
	// ParseApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method ParseApproval.
	ParseApprovalFunc *IALCBParseApprovalFunc
	// ParseDepositReceivedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDepositReceived.
	ParseDepositReceivedFunc *IALCBParseDepositReceivedFunc
	// ParseTransferFunc is an instance of a mock function object
	// controlling the behavior of the method ParseTransfer.
	ParseTransferFunc *IALCBParseTransferFunc
	// SetAccountTypeFunc is an instance of a mock function object
	// controlling the behavior of the method SetAccountType.
	SetAccountTypeFunc *IALCBSetAccountTypeFunc
	// SymbolFunc is an instance of a mock function object controlling the
	// behavior of the method Symbol.
	SymbolFunc *IALCBSymbolFunc
	// TotalSupplyFunc is an instance of a mock function object controlling
	// the behavior of the method TotalSupply.
	TotalSupplyFunc *IALCBTotalSupplyFunc
	// TransferFunc is an instance of a mock function object controlling the
	// behavior of the method Transfer.
	TransferFunc *IALCBTransferFunc
	// TransferFromFunc is an instance of a mock function object controlling
	// the behavior of the method TransferFrom.
	TransferFromFunc *IALCBTransferFromFunc
	// VirtualMintDepositFunc is an instance of a mock function object
	// controlling the behavior of the method VirtualMintDeposit.
	VirtualMintDepositFunc *IALCBVirtualMintDepositFunc
	// WatchApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method WatchApproval.
	WatchApprovalFunc *IALCBWatchApprovalFunc
	// WatchDepositReceivedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDepositReceived.
	WatchDepositReceivedFunc *IALCBWatchDepositReceivedFunc
	// WatchTransferFunc is an instance of a mock function object
	// controlling the behavior of the method WatchTransfer.
	WatchTransferFunc *IALCBWatchTransferFunc
}

MockIALCB is a mock implementation of the IALCB interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIALCB added in v0.0.8

func NewMockIALCB() *MockIALCB

NewMockIALCB creates a new mock of the IALCB interface. All methods return zero values for all results, unless overwritten.

func NewMockIALCBFrom added in v0.0.8

func NewMockIALCBFrom(i bindings.IALCB) *MockIALCB

NewMockIALCBFrom creates a new mock of the MockIALCB interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIALCB added in v0.0.8

func NewStrictMockIALCB() *MockIALCB

NewStrictMockIALCB creates a new mock of the IALCB interface. All methods panic on invocation, unless overwritten.

func (*MockIALCB) Allowance added in v0.0.8

func (m *MockIALCB) Allowance(v0 *bind.CallOpts, v1 common.Address, v2 common.Address) (*big.Int, error)

Allowance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Approve added in v0.0.8

func (m *MockIALCB) Approve(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

Approve delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) BalanceOf added in v0.0.8

func (m *MockIALCB) BalanceOf(v0 *bind.CallOpts, v1 common.Address) (*big.Int, error)

BalanceOf delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Burn added in v0.0.8

func (m *MockIALCB) Burn(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int) (*types.Transaction, error)

Burn delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) BurnTo added in v0.0.8

func (m *MockIALCB) BurnTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int, v3 *big.Int) (*types.Transaction, error)

BurnTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Decimals added in v0.0.8

func (m *MockIALCB) Decimals(v0 *bind.CallOpts) (uint8, error)

Decimals delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) DecreaseAllowance added in v0.0.8

func (m *MockIALCB) DecreaseAllowance(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

DecreaseAllowance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Deposit added in v0.0.8

func (m *MockIALCB) Deposit(v0 *bind.TransactOpts, v1 uint8, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

Deposit delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) DepositTokensOnBridges added in v0.0.8

func (m *MockIALCB) DepositTokensOnBridges(v0 *bind.TransactOpts, v1 uint8, v2 []byte) (*types.Transaction, error)

DepositTokensOnBridges delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) DestroyTokens added in v0.0.8

func (m *MockIALCB) DestroyTokens(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

DestroyTokens delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Distribute added in v0.0.8

func (m *MockIALCB) Distribute(v0 *bind.TransactOpts) (*types.Transaction, error)

Distribute delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) FilterApproval added in v0.0.8

func (m *MockIALCB) FilterApproval(v0 *bind.FilterOpts, v1 []common.Address, v2 []common.Address) (*bindings.ALCBApprovalIterator, error)

FilterApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) FilterDepositReceived added in v0.0.8

func (m *MockIALCB) FilterDepositReceived(v0 *bind.FilterOpts, v1 []*big.Int, v2 []uint8, v3 []common.Address) (*bindings.ALCBDepositReceivedIterator, error)

FilterDepositReceived delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) FilterTransfer added in v0.0.8

func (m *MockIALCB) FilterTransfer(v0 *bind.FilterOpts, v1 []common.Address, v2 []common.Address) (*bindings.ALCBTransferIterator, error)

FilterTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetCentralBridgeRouterAddress added in v0.0.8

func (m *MockIALCB) GetCentralBridgeRouterAddress(v0 *bind.CallOpts) (common.Address, error)

GetCentralBridgeRouterAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetDeposit added in v0.0.8

func (m *MockIALCB) GetDeposit(v0 *bind.CallOpts, v1 *big.Int) (bindings.Deposit, error)

GetDeposit delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetDepositID added in v0.0.8

func (m *MockIALCB) GetDepositID(v0 *bind.CallOpts) (*big.Int, error)

GetDepositID delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetEthFromTokensBurn added in v0.0.8

func (m *MockIALCB) GetEthFromTokensBurn(v0 *bind.CallOpts, v1 *big.Int, v2 *big.Int, v3 *big.Int) (*big.Int, error)

GetEthFromTokensBurn delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetEthToMintTokens added in v0.0.8

func (m *MockIALCB) GetEthToMintTokens(v0 *bind.CallOpts, v1 *big.Int, v2 *big.Int) (*big.Int, error)

GetEthToMintTokens delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetLatestEthFromTokensBurn added in v0.0.8

func (m *MockIALCB) GetLatestEthFromTokensBurn(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetLatestEthFromTokensBurn delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetLatestEthToMintTokens added in v0.0.8

func (m *MockIALCB) GetLatestEthToMintTokens(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetLatestEthToMintTokens delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetLatestMintedTokensFromEth added in v0.0.8

func (m *MockIALCB) GetLatestMintedTokensFromEth(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetLatestMintedTokensFromEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetMarketSpread added in v0.0.8

func (m *MockIALCB) GetMarketSpread(v0 *bind.CallOpts) (*big.Int, error)

GetMarketSpread delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetMetamorphicContractAddress added in v0.0.8

func (m *MockIALCB) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetMintedTokensFromEth added in v0.0.8

func (m *MockIALCB) GetMintedTokensFromEth(v0 *bind.CallOpts, v1 *big.Int, v2 *big.Int) (*big.Int, error)

GetMintedTokensFromEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetPoolBalance added in v0.0.8

func (m *MockIALCB) GetPoolBalance(v0 *bind.CallOpts) (*big.Int, error)

GetPoolBalance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetTotalTokensDeposited added in v0.0.8

func (m *MockIALCB) GetTotalTokensDeposited(v0 *bind.CallOpts) (*big.Int, error)

GetTotalTokensDeposited delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) GetYield added in v0.0.8

func (m *MockIALCB) GetYield(v0 *bind.CallOpts) (*big.Int, error)

GetYield delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) IncreaseAllowance added in v0.0.8

func (m *MockIALCB) IncreaseAllowance(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

IncreaseAllowance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Mint added in v0.0.8

func (m *MockIALCB) Mint(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

Mint delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) MintDeposit added in v0.0.8

func (m *MockIALCB) MintDeposit(v0 *bind.TransactOpts, v1 uint8, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

MintDeposit delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) MintTo added in v0.0.8

func (m *MockIALCB) MintTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

MintTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Name added in v0.0.8

func (m *MockIALCB) Name(v0 *bind.CallOpts) (string, error)

Name delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) ParseApproval added in v0.0.8

func (m *MockIALCB) ParseApproval(v0 types.Log) (*bindings.ALCBApproval, error)

ParseApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) ParseDepositReceived added in v0.0.8

func (m *MockIALCB) ParseDepositReceived(v0 types.Log) (*bindings.ALCBDepositReceived, error)

ParseDepositReceived delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) ParseTransfer added in v0.0.8

func (m *MockIALCB) ParseTransfer(v0 types.Log) (*bindings.ALCBTransfer, error)

ParseTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) SetAccountType added in v0.0.8

func (m *MockIALCB) SetAccountType(v0 *bind.TransactOpts, v1 uint8, v2 bool) (*types.Transaction, error)

SetAccountType delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Symbol added in v0.0.8

func (m *MockIALCB) Symbol(v0 *bind.CallOpts) (string, error)

Symbol delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) TotalSupply added in v0.0.8

func (m *MockIALCB) TotalSupply(v0 *bind.CallOpts) (*big.Int, error)

TotalSupply delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) Transfer added in v0.0.8

func (m *MockIALCB) Transfer(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

Transfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) TransferFrom added in v0.0.8

func (m *MockIALCB) TransferFrom(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

TransferFrom delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) VirtualMintDeposit added in v0.0.8

func (m *MockIALCB) VirtualMintDeposit(v0 *bind.TransactOpts, v1 uint8, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

VirtualMintDeposit delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) WatchApproval added in v0.0.8

func (m *MockIALCB) WatchApproval(v0 *bind.WatchOpts, v1 chan<- *bindings.ALCBApproval, v2 []common.Address, v3 []common.Address) (event.Subscription, error)

WatchApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) WatchDepositReceived added in v0.0.8

func (m *MockIALCB) WatchDepositReceived(v0 *bind.WatchOpts, v1 chan<- *bindings.ALCBDepositReceived, v2 []*big.Int, v3 []uint8, v4 []common.Address) (event.Subscription, error)

WatchDepositReceived delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIALCB) WatchTransfer added in v0.0.8

func (m *MockIALCB) WatchTransfer(v0 *bind.WatchOpts, v1 chan<- *bindings.ALCBTransfer, v2 []common.Address, v3 []common.Address) (event.Subscription, error)

WatchTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIAliceNetFactory

type MockIAliceNetFactory struct {
	// AddNewExternalContractFunc is an instance of a mock function object
	// controlling the behavior of the method AddNewExternalContract.
	AddNewExternalContractFunc *IAliceNetFactoryAddNewExternalContractFunc
	// CallAnyFunc is an instance of a mock function object controlling the
	// behavior of the method CallAny.
	CallAnyFunc *IAliceNetFactoryCallAnyFunc
	// ContractsFunc is an instance of a mock function object controlling
	// the behavior of the method Contracts.
	ContractsFunc *IAliceNetFactoryContractsFunc
	// DeployCreateFunc is an instance of a mock function object controlling
	// the behavior of the method DeployCreate.
	DeployCreateFunc *IAliceNetFactoryDeployCreateFunc
	// DeployCreate2Func is an instance of a mock function object
	// controlling the behavior of the method DeployCreate2.
	DeployCreate2Func *IAliceNetFactoryDeployCreate2Func
	// DeployCreateAndRegisterFunc is an instance of a mock function object
	// controlling the behavior of the method DeployCreateAndRegister.
	DeployCreateAndRegisterFunc *IAliceNetFactoryDeployCreateAndRegisterFunc
	// DeployProxyFunc is an instance of a mock function object controlling
	// the behavior of the method DeployProxy.
	DeployProxyFunc *IAliceNetFactoryDeployProxyFunc
	// FallbackFunc is an instance of a mock function object controlling the
	// behavior of the method Fallback.
	FallbackFunc *IAliceNetFactoryFallbackFunc
	// FilterDeployedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterDeployed.
	FilterDeployedFunc *IAliceNetFactoryFilterDeployedFunc
	// FilterDeployedProxyFunc is an instance of a mock function object
	// controlling the behavior of the method FilterDeployedProxy.
	FilterDeployedProxyFunc *IAliceNetFactoryFilterDeployedProxyFunc
	// FilterDeployedRawFunc is an instance of a mock function object
	// controlling the behavior of the method FilterDeployedRaw.
	FilterDeployedRawFunc *IAliceNetFactoryFilterDeployedRawFunc
	// FilterDeployedStaticFunc is an instance of a mock function object
	// controlling the behavior of the method FilterDeployedStatic.
	FilterDeployedStaticFunc *IAliceNetFactoryFilterDeployedStaticFunc
	// FilterDeployedTemplateFunc is an instance of a mock function object
	// controlling the behavior of the method FilterDeployedTemplate.
	FilterDeployedTemplateFunc *IAliceNetFactoryFilterDeployedTemplateFunc
	// FilterUpgradedProxyFunc is an instance of a mock function object
	// controlling the behavior of the method FilterUpgradedProxy.
	FilterUpgradedProxyFunc *IAliceNetFactoryFilterUpgradedProxyFunc
	// GetALCAAddressFunc is an instance of a mock function object
	// controlling the behavior of the method GetALCAAddress.
	GetALCAAddressFunc *IAliceNetFactoryGetALCAAddressFunc
	// GetALCACreationCodeHashFunc is an instance of a mock function object
	// controlling the behavior of the method GetALCACreationCodeHash.
	GetALCACreationCodeHashFunc *IAliceNetFactoryGetALCACreationCodeHashFunc
	// GetImplementationFunc is an instance of a mock function object
	// controlling the behavior of the method GetImplementation.
	GetImplementationFunc *IAliceNetFactoryGetImplementationFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IAliceNetFactoryGetMetamorphicContractAddressFunc
	// GetNumContractsFunc is an instance of a mock function object
	// controlling the behavior of the method GetNumContracts.
	GetNumContractsFunc *IAliceNetFactoryGetNumContractsFunc
	// GetProxyImplementationFunc is an instance of a mock function object
	// controlling the behavior of the method GetProxyImplementation.
	GetProxyImplementationFunc *IAliceNetFactoryGetProxyImplementationFunc
	// InitializeContractFunc is an instance of a mock function object
	// controlling the behavior of the method InitializeContract.
	InitializeContractFunc *IAliceNetFactoryInitializeContractFunc
	// LookupFunc is an instance of a mock function object controlling the
	// behavior of the method Lookup.
	LookupFunc *IAliceNetFactoryLookupFunc
	// MultiCallFunc is an instance of a mock function object controlling
	// the behavior of the method MultiCall.
	MultiCallFunc *IAliceNetFactoryMultiCallFunc
	// OwnerFunc is an instance of a mock function object controlling the
	// behavior of the method Owner.
	OwnerFunc *IAliceNetFactoryOwnerFunc
	// ParseDeployedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDeployed.
	ParseDeployedFunc *IAliceNetFactoryParseDeployedFunc
	// ParseDeployedProxyFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDeployedProxy.
	ParseDeployedProxyFunc *IAliceNetFactoryParseDeployedProxyFunc
	// ParseDeployedRawFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDeployedRaw.
	ParseDeployedRawFunc *IAliceNetFactoryParseDeployedRawFunc
	// ParseDeployedStaticFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDeployedStatic.
	ParseDeployedStaticFunc *IAliceNetFactoryParseDeployedStaticFunc
	// ParseDeployedTemplateFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDeployedTemplate.
	ParseDeployedTemplateFunc *IAliceNetFactoryParseDeployedTemplateFunc
	// ParseUpgradedProxyFunc is an instance of a mock function object
	// controlling the behavior of the method ParseUpgradedProxy.
	ParseUpgradedProxyFunc *IAliceNetFactoryParseUpgradedProxyFunc
	// SetOwnerFunc is an instance of a mock function object controlling the
	// behavior of the method SetOwner.
	SetOwnerFunc *IAliceNetFactorySetOwnerFunc
	// UpgradeProxyFunc is an instance of a mock function object controlling
	// the behavior of the method UpgradeProxy.
	UpgradeProxyFunc *IAliceNetFactoryUpgradeProxyFunc
	// WatchDeployedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDeployed.
	WatchDeployedFunc *IAliceNetFactoryWatchDeployedFunc
	// WatchDeployedProxyFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDeployedProxy.
	WatchDeployedProxyFunc *IAliceNetFactoryWatchDeployedProxyFunc
	// WatchDeployedRawFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDeployedRaw.
	WatchDeployedRawFunc *IAliceNetFactoryWatchDeployedRawFunc
	// WatchDeployedStaticFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDeployedStatic.
	WatchDeployedStaticFunc *IAliceNetFactoryWatchDeployedStaticFunc
	// WatchDeployedTemplateFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDeployedTemplate.
	WatchDeployedTemplateFunc *IAliceNetFactoryWatchDeployedTemplateFunc
	// WatchUpgradedProxyFunc is an instance of a mock function object
	// controlling the behavior of the method WatchUpgradedProxy.
	WatchUpgradedProxyFunc *IAliceNetFactoryWatchUpgradedProxyFunc
}

MockIAliceNetFactory is a mock implementation of the IAliceNetFactory interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIAliceNetFactory

func NewMockIAliceNetFactory() *MockIAliceNetFactory

NewMockIAliceNetFactory creates a new mock of the IAliceNetFactory interface. All methods return zero values for all results, unless overwritten.

func NewMockIAliceNetFactoryFrom

func NewMockIAliceNetFactoryFrom(i bindings.IAliceNetFactory) *MockIAliceNetFactory

NewMockIAliceNetFactoryFrom creates a new mock of the MockIAliceNetFactory interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIAliceNetFactory

func NewStrictMockIAliceNetFactory() *MockIAliceNetFactory

NewStrictMockIAliceNetFactory creates a new mock of the IAliceNetFactory interface. All methods panic on invocation, unless overwritten.

func (*MockIAliceNetFactory) AddNewExternalContract added in v0.0.7

func (m *MockIAliceNetFactory) AddNewExternalContract(v0 *bind.TransactOpts, v1 [32]byte, v2 common.Address) (*types.Transaction, error)

AddNewExternalContract delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) CallAny

func (m *MockIAliceNetFactory) CallAny(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int, v3 []byte) (*types.Transaction, error)

CallAny delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) Contracts

func (m *MockIAliceNetFactory) Contracts(v0 *bind.CallOpts) ([][32]byte, error)

Contracts delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) DeployCreate

func (m *MockIAliceNetFactory) DeployCreate(v0 *bind.TransactOpts, v1 []byte) (*types.Transaction, error)

DeployCreate delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) DeployCreate2

func (m *MockIAliceNetFactory) DeployCreate2(v0 *bind.TransactOpts, v1 *big.Int, v2 [32]byte, v3 []byte) (*types.Transaction, error)

DeployCreate2 delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) DeployCreateAndRegister added in v0.0.8

func (m *MockIAliceNetFactory) DeployCreateAndRegister(v0 *bind.TransactOpts, v1 []byte, v2 [32]byte) (*types.Transaction, error)

DeployCreateAndRegister delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) DeployProxy

func (m *MockIAliceNetFactory) DeployProxy(v0 *bind.TransactOpts, v1 [32]byte) (*types.Transaction, error)

DeployProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) Fallback

func (m *MockIAliceNetFactory) Fallback(v0 *bind.TransactOpts, v1 []byte) (*types.Transaction, error)

Fallback delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) FilterDeployed

FilterDeployed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) FilterDeployedProxy

FilterDeployedProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) FilterDeployedRaw

FilterDeployedRaw delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) FilterDeployedStatic

FilterDeployedStatic delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) FilterDeployedTemplate

FilterDeployedTemplate delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) FilterUpgradedProxy added in v0.0.8

FilterUpgradedProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) GetALCAAddress added in v0.0.8

func (m *MockIAliceNetFactory) GetALCAAddress(v0 *bind.CallOpts) (common.Address, error)

GetALCAAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) GetALCACreationCodeHash added in v0.0.8

func (m *MockIAliceNetFactory) GetALCACreationCodeHash(v0 *bind.CallOpts) ([32]byte, error)

GetALCACreationCodeHash delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) GetImplementation

func (m *MockIAliceNetFactory) GetImplementation(v0 *bind.CallOpts) (common.Address, error)

GetImplementation delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) GetMetamorphicContractAddress

func (m *MockIAliceNetFactory) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) GetNumContracts

func (m *MockIAliceNetFactory) GetNumContracts(v0 *bind.CallOpts) (*big.Int, error)

GetNumContracts delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) GetProxyImplementation added in v0.0.8

func (m *MockIAliceNetFactory) GetProxyImplementation(v0 *bind.CallOpts, v1 common.Address) (common.Address, error)

GetProxyImplementation delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) InitializeContract

func (m *MockIAliceNetFactory) InitializeContract(v0 *bind.TransactOpts, v1 common.Address, v2 []byte) (*types.Transaction, error)

InitializeContract delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) Lookup

func (m *MockIAliceNetFactory) Lookup(v0 *bind.CallOpts, v1 [32]byte) (common.Address, error)

Lookup delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) MultiCall

MultiCall delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) Owner

Owner delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) ParseDeployed

ParseDeployed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) ParseDeployedProxy

ParseDeployedProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) ParseDeployedRaw

ParseDeployedRaw delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) ParseDeployedStatic

ParseDeployedStatic delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) ParseDeployedTemplate

ParseDeployedTemplate delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) ParseUpgradedProxy added in v0.0.8

ParseUpgradedProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) SetOwner

SetOwner delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) UpgradeProxy

func (m *MockIAliceNetFactory) UpgradeProxy(v0 *bind.TransactOpts, v1 [32]byte, v2 common.Address, v3 []byte) (*types.Transaction, error)

UpgradeProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) WatchDeployed

WatchDeployed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) WatchDeployedProxy

WatchDeployedProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) WatchDeployedRaw

WatchDeployedRaw delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) WatchDeployedStatic

WatchDeployedStatic delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) WatchDeployedTemplate

WatchDeployedTemplate delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIAliceNetFactory) WatchUpgradedProxy added in v0.0.8

WatchUpgradedProxy delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIDynamics added in v0.0.5

type MockIDynamics struct {
	// ChangeDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method ChangeDynamicValues.
	ChangeDynamicValuesFunc *IDynamicsChangeDynamicValuesFunc
	// DecodeDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method DecodeDynamicValues.
	DecodeDynamicValuesFunc *IDynamicsDecodeDynamicValuesFunc
	// DeployStorageFunc is an instance of a mock function object
	// controlling the behavior of the method DeployStorage.
	DeployStorageFunc *IDynamicsDeployStorageFunc
	// EncodeDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method EncodeDynamicValues.
	EncodeDynamicValuesFunc *IDynamicsEncodeDynamicValuesFunc
	// FilterDeployedStorageContractFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterDeployedStorageContract.
	FilterDeployedStorageContractFunc *IDynamicsFilterDeployedStorageContractFunc
	// FilterDynamicValueChangedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterDynamicValueChanged.
	FilterDynamicValueChangedFunc *IDynamicsFilterDynamicValueChangedFunc
	// FilterInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterInitialized.
	FilterInitializedFunc *IDynamicsFilterInitializedFunc
	// FilterNewAliceNetNodeVersionAvailableFunc is an instance of a mock
	// function object controlling the behavior of the method
	// FilterNewAliceNetNodeVersionAvailable.
	FilterNewAliceNetNodeVersionAvailableFunc *IDynamicsFilterNewAliceNetNodeVersionAvailableFunc
	// FilterNewCanonicalAliceNetNodeVersionFunc is an instance of a mock
	// function object controlling the behavior of the method
	// FilterNewCanonicalAliceNetNodeVersion.
	FilterNewCanonicalAliceNetNodeVersionFunc *IDynamicsFilterNewCanonicalAliceNetNodeVersionFunc
	// GetAllDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method GetAllDynamicValues.
	GetAllDynamicValuesFunc *IDynamicsGetAllDynamicValuesFunc
	// GetConfigurationFunc is an instance of a mock function object
	// controlling the behavior of the method GetConfiguration.
	GetConfigurationFunc *IDynamicsGetConfigurationFunc
	// GetEncodingVersionFunc is an instance of a mock function object
	// controlling the behavior of the method GetEncodingVersion.
	GetEncodingVersionFunc *IDynamicsGetEncodingVersionFunc
	// GetFurthestDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method GetFurthestDynamicValues.
	GetFurthestDynamicValuesFunc *IDynamicsGetFurthestDynamicValuesFunc
	// GetLatestAliceNetVersionFunc is an instance of a mock function object
	// controlling the behavior of the method GetLatestAliceNetVersion.
	GetLatestAliceNetVersionFunc *IDynamicsGetLatestAliceNetVersionFunc
	// GetLatestDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method GetLatestDynamicValues.
	GetLatestDynamicValuesFunc *IDynamicsGetLatestDynamicValuesFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IDynamicsGetMetamorphicContractAddressFunc
	// GetPreviousDynamicValuesFunc is an instance of a mock function object
	// controlling the behavior of the method GetPreviousDynamicValues.
	GetPreviousDynamicValuesFunc *IDynamicsGetPreviousDynamicValuesFunc
	// InitializeFunc is an instance of a mock function object controlling
	// the behavior of the method Initialize.
	InitializeFunc *IDynamicsInitializeFunc
	// ParseDeployedStorageContractFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseDeployedStorageContract.
	ParseDeployedStorageContractFunc *IDynamicsParseDeployedStorageContractFunc
	// ParseDynamicValueChangedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseDynamicValueChanged.
	ParseDynamicValueChangedFunc *IDynamicsParseDynamicValueChangedFunc
	// ParseInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseInitialized.
	ParseInitializedFunc *IDynamicsParseInitializedFunc
	// ParseNewAliceNetNodeVersionAvailableFunc is an instance of a mock
	// function object controlling the behavior of the method
	// ParseNewAliceNetNodeVersionAvailable.
	ParseNewAliceNetNodeVersionAvailableFunc *IDynamicsParseNewAliceNetNodeVersionAvailableFunc
	// ParseNewCanonicalAliceNetNodeVersionFunc is an instance of a mock
	// function object controlling the behavior of the method
	// ParseNewCanonicalAliceNetNodeVersion.
	ParseNewCanonicalAliceNetNodeVersionFunc *IDynamicsParseNewCanonicalAliceNetNodeVersionFunc
	// SetConfigurationFunc is an instance of a mock function object
	// controlling the behavior of the method SetConfiguration.
	SetConfigurationFunc *IDynamicsSetConfigurationFunc
	// UpdateAliceNetNodeVersionFunc is an instance of a mock function
	// object controlling the behavior of the method
	// UpdateAliceNetNodeVersion.
	UpdateAliceNetNodeVersionFunc *IDynamicsUpdateAliceNetNodeVersionFunc
	// UpdateHeadFunc is an instance of a mock function object controlling
	// the behavior of the method UpdateHead.
	UpdateHeadFunc *IDynamicsUpdateHeadFunc
	// WatchDeployedStorageContractFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchDeployedStorageContract.
	WatchDeployedStorageContractFunc *IDynamicsWatchDeployedStorageContractFunc
	// WatchDynamicValueChangedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchDynamicValueChanged.
	WatchDynamicValueChangedFunc *IDynamicsWatchDynamicValueChangedFunc
	// WatchInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchInitialized.
	WatchInitializedFunc *IDynamicsWatchInitializedFunc
	// WatchNewAliceNetNodeVersionAvailableFunc is an instance of a mock
	// function object controlling the behavior of the method
	// WatchNewAliceNetNodeVersionAvailable.
	WatchNewAliceNetNodeVersionAvailableFunc *IDynamicsWatchNewAliceNetNodeVersionAvailableFunc
	// WatchNewCanonicalAliceNetNodeVersionFunc is an instance of a mock
	// function object controlling the behavior of the method
	// WatchNewCanonicalAliceNetNodeVersion.
	WatchNewCanonicalAliceNetNodeVersionFunc *IDynamicsWatchNewCanonicalAliceNetNodeVersionFunc
}

MockIDynamics is a mock implementation of the IDynamics interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIDynamics added in v0.0.5

func NewMockIDynamics() *MockIDynamics

NewMockIDynamics creates a new mock of the IDynamics interface. All methods return zero values for all results, unless overwritten.

func NewMockIDynamicsFrom added in v0.0.5

func NewMockIDynamicsFrom(i bindings.IDynamics) *MockIDynamics

NewMockIDynamicsFrom creates a new mock of the MockIDynamics interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIDynamics added in v0.0.5

func NewStrictMockIDynamics() *MockIDynamics

NewStrictMockIDynamics creates a new mock of the IDynamics interface. All methods panic on invocation, unless overwritten.

func (*MockIDynamics) ChangeDynamicValues added in v0.0.5

func (m *MockIDynamics) ChangeDynamicValues(v0 *bind.TransactOpts, v1 uint32, v2 bindings.DynamicValues) (*types.Transaction, error)

ChangeDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) DecodeDynamicValues added in v0.0.5

func (m *MockIDynamics) DecodeDynamicValues(v0 *bind.CallOpts, v1 common.Address) (bindings.DynamicValues, error)

DecodeDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) DeployStorage added in v0.0.5

func (m *MockIDynamics) DeployStorage(v0 *bind.TransactOpts, v1 []byte) (*types.Transaction, error)

DeployStorage delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) EncodeDynamicValues added in v0.0.5

func (m *MockIDynamics) EncodeDynamicValues(v0 *bind.CallOpts, v1 bindings.DynamicValues) ([]byte, error)

EncodeDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) FilterDeployedStorageContract added in v0.0.5

func (m *MockIDynamics) FilterDeployedStorageContract(v0 *bind.FilterOpts) (*bindings.DynamicsDeployedStorageContractIterator, error)

FilterDeployedStorageContract delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) FilterDynamicValueChanged added in v0.0.5

func (m *MockIDynamics) FilterDynamicValueChanged(v0 *bind.FilterOpts) (*bindings.DynamicsDynamicValueChangedIterator, error)

FilterDynamicValueChanged delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) FilterInitialized added in v0.0.5

FilterInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) FilterNewAliceNetNodeVersionAvailable added in v0.0.5

func (m *MockIDynamics) FilterNewAliceNetNodeVersionAvailable(v0 *bind.FilterOpts) (*bindings.DynamicsNewAliceNetNodeVersionAvailableIterator, error)

FilterNewAliceNetNodeVersionAvailable delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) FilterNewCanonicalAliceNetNodeVersion added in v0.0.5

func (m *MockIDynamics) FilterNewCanonicalAliceNetNodeVersion(v0 *bind.FilterOpts) (*bindings.DynamicsNewCanonicalAliceNetNodeVersionIterator, error)

FilterNewCanonicalAliceNetNodeVersion delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetAllDynamicValues added in v0.0.9

func (m *MockIDynamics) GetAllDynamicValues(v0 *bind.CallOpts) ([]bindings.DynamicValues, error)

GetAllDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetConfiguration added in v0.0.5

func (m *MockIDynamics) GetConfiguration(v0 *bind.CallOpts) (bindings.Configuration, error)

GetConfiguration delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetEncodingVersion added in v0.0.5

func (m *MockIDynamics) GetEncodingVersion(v0 *bind.CallOpts) (uint8, error)

GetEncodingVersion delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetFurthestDynamicValues added in v0.0.9

func (m *MockIDynamics) GetFurthestDynamicValues(v0 *bind.CallOpts) (bindings.DynamicValues, error)

GetFurthestDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetLatestAliceNetVersion added in v0.0.5

func (m *MockIDynamics) GetLatestAliceNetVersion(v0 *bind.CallOpts) (bindings.CanonicalVersion, error)

GetLatestAliceNetVersion delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetLatestDynamicValues added in v0.0.5

func (m *MockIDynamics) GetLatestDynamicValues(v0 *bind.CallOpts) (bindings.DynamicValues, error)

GetLatestDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetMetamorphicContractAddress added in v0.0.5

func (m *MockIDynamics) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) GetPreviousDynamicValues added in v0.0.5

func (m *MockIDynamics) GetPreviousDynamicValues(v0 *bind.CallOpts, v1 *big.Int) (bindings.DynamicValues, error)

GetPreviousDynamicValues delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) Initialize added in v0.0.5

func (m *MockIDynamics) Initialize(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

Initialize delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) ParseDeployedStorageContract added in v0.0.5

func (m *MockIDynamics) ParseDeployedStorageContract(v0 types.Log) (*bindings.DynamicsDeployedStorageContract, error)

ParseDeployedStorageContract delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) ParseDynamicValueChanged added in v0.0.5

func (m *MockIDynamics) ParseDynamicValueChanged(v0 types.Log) (*bindings.DynamicsDynamicValueChanged, error)

ParseDynamicValueChanged delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) ParseInitialized added in v0.0.5

func (m *MockIDynamics) ParseInitialized(v0 types.Log) (*bindings.DynamicsInitialized, error)

ParseInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) ParseNewAliceNetNodeVersionAvailable added in v0.0.5

func (m *MockIDynamics) ParseNewAliceNetNodeVersionAvailable(v0 types.Log) (*bindings.DynamicsNewAliceNetNodeVersionAvailable, error)

ParseNewAliceNetNodeVersionAvailable delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) ParseNewCanonicalAliceNetNodeVersion added in v0.0.5

func (m *MockIDynamics) ParseNewCanonicalAliceNetNodeVersion(v0 types.Log) (*bindings.DynamicsNewCanonicalAliceNetNodeVersion, error)

ParseNewCanonicalAliceNetNodeVersion delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) SetConfiguration added in v0.0.5

func (m *MockIDynamics) SetConfiguration(v0 *bind.TransactOpts, v1 bindings.Configuration) (*types.Transaction, error)

SetConfiguration delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) UpdateAliceNetNodeVersion added in v0.0.5

func (m *MockIDynamics) UpdateAliceNetNodeVersion(v0 *bind.TransactOpts, v1 uint32, v2 uint32, v3 uint32, v4 uint32, v5 [32]byte) (*types.Transaction, error)

UpdateAliceNetNodeVersion delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) UpdateHead added in v0.0.5

func (m *MockIDynamics) UpdateHead(v0 *bind.TransactOpts, v1 uint32) (*types.Transaction, error)

UpdateHead delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) WatchDeployedStorageContract added in v0.0.5

func (m *MockIDynamics) WatchDeployedStorageContract(v0 *bind.WatchOpts, v1 chan<- *bindings.DynamicsDeployedStorageContract) (event.Subscription, error)

WatchDeployedStorageContract delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) WatchDynamicValueChanged added in v0.0.5

func (m *MockIDynamics) WatchDynamicValueChanged(v0 *bind.WatchOpts, v1 chan<- *bindings.DynamicsDynamicValueChanged) (event.Subscription, error)

WatchDynamicValueChanged delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) WatchInitialized added in v0.0.5

func (m *MockIDynamics) WatchInitialized(v0 *bind.WatchOpts, v1 chan<- *bindings.DynamicsInitialized) (event.Subscription, error)

WatchInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) WatchNewAliceNetNodeVersionAvailable added in v0.0.5

func (m *MockIDynamics) WatchNewAliceNetNodeVersionAvailable(v0 *bind.WatchOpts, v1 chan<- *bindings.DynamicsNewAliceNetNodeVersionAvailable) (event.Subscription, error)

WatchNewAliceNetNodeVersionAvailable delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIDynamics) WatchNewCanonicalAliceNetNodeVersion added in v0.0.5

func (m *MockIDynamics) WatchNewCanonicalAliceNetNodeVersion(v0 *bind.WatchOpts, v1 chan<- *bindings.DynamicsNewCanonicalAliceNetNodeVersion) (event.Subscription, error)

WatchNewCanonicalAliceNetNodeVersion delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIETHDKG

type MockIETHDKG struct {
	// AccuseParticipantDidNotDistributeSharesFunc is an instance of a mock
	// function object controlling the behavior of the method
	// AccuseParticipantDidNotDistributeShares.
	AccuseParticipantDidNotDistributeSharesFunc *IETHDKGAccuseParticipantDidNotDistributeSharesFunc
	// AccuseParticipantDidNotSubmitGPKJFunc is an instance of a mock
	// function object controlling the behavior of the method
	// AccuseParticipantDidNotSubmitGPKJ.
	AccuseParticipantDidNotSubmitGPKJFunc *IETHDKGAccuseParticipantDidNotSubmitGPKJFunc
	// AccuseParticipantDidNotSubmitKeySharesFunc is an instance of a mock
	// function object controlling the behavior of the method
	// AccuseParticipantDidNotSubmitKeyShares.
	AccuseParticipantDidNotSubmitKeySharesFunc *IETHDKGAccuseParticipantDidNotSubmitKeySharesFunc
	// AccuseParticipantDistributedBadSharesFunc is an instance of a mock
	// function object controlling the behavior of the method
	// AccuseParticipantDistributedBadShares.
	AccuseParticipantDistributedBadSharesFunc *IETHDKGAccuseParticipantDistributedBadSharesFunc
	// AccuseParticipantNotRegisteredFunc is an instance of a mock function
	// object controlling the behavior of the method
	// AccuseParticipantNotRegistered.
	AccuseParticipantNotRegisteredFunc *IETHDKGAccuseParticipantNotRegisteredFunc
	// AccuseParticipantSubmittedBadGPKJFunc is an instance of a mock
	// function object controlling the behavior of the method
	// AccuseParticipantSubmittedBadGPKJ.
	AccuseParticipantSubmittedBadGPKJFunc *IETHDKGAccuseParticipantSubmittedBadGPKJFunc
	// CompleteFunc is an instance of a mock function object controlling the
	// behavior of the method Complete.
	CompleteFunc *IETHDKGCompleteFunc
	// DistributeSharesFunc is an instance of a mock function object
	// controlling the behavior of the method DistributeShares.
	DistributeSharesFunc *IETHDKGDistributeSharesFunc
	// FilterAddressRegisteredFunc is an instance of a mock function object
	// controlling the behavior of the method FilterAddressRegistered.
	FilterAddressRegisteredFunc *IETHDKGFilterAddressRegisteredFunc
	// FilterGPKJSubmissionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterGPKJSubmissionComplete.
	FilterGPKJSubmissionCompleteFunc *IETHDKGFilterGPKJSubmissionCompleteFunc
	// FilterInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterInitialized.
	FilterInitializedFunc *IETHDKGFilterInitializedFunc
	// FilterKeyShareSubmissionCompleteFunc is an instance of a mock
	// function object controlling the behavior of the method
	// FilterKeyShareSubmissionComplete.
	FilterKeyShareSubmissionCompleteFunc *IETHDKGFilterKeyShareSubmissionCompleteFunc
	// FilterKeyShareSubmittedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterKeyShareSubmitted.
	FilterKeyShareSubmittedFunc *IETHDKGFilterKeyShareSubmittedFunc
	// FilterMPKSetFunc is an instance of a mock function object controlling
	// the behavior of the method FilterMPKSet.
	FilterMPKSetFunc *IETHDKGFilterMPKSetFunc
	// FilterRegistrationCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterRegistrationComplete.
	FilterRegistrationCompleteFunc *IETHDKGFilterRegistrationCompleteFunc
	// FilterRegistrationOpenedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterRegistrationOpened.
	FilterRegistrationOpenedFunc *IETHDKGFilterRegistrationOpenedFunc
	// FilterShareDistributionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterShareDistributionComplete.
	FilterShareDistributionCompleteFunc *IETHDKGFilterShareDistributionCompleteFunc
	// FilterSharesDistributedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterSharesDistributed.
	FilterSharesDistributedFunc *IETHDKGFilterSharesDistributedFunc
	// FilterValidatorMemberAddedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterValidatorMemberAdded.
	FilterValidatorMemberAddedFunc *IETHDKGFilterValidatorMemberAddedFunc
	// FilterValidatorSetCompletedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterValidatorSetCompleted.
	FilterValidatorSetCompletedFunc *IETHDKGFilterValidatorSetCompletedFunc
	// GetBadParticipantsFunc is an instance of a mock function object
	// controlling the behavior of the method GetBadParticipants.
	GetBadParticipantsFunc *IETHDKGGetBadParticipantsFunc
	// GetConfirmationLengthFunc is an instance of a mock function object
	// controlling the behavior of the method GetConfirmationLength.
	GetConfirmationLengthFunc *IETHDKGGetConfirmationLengthFunc
	// GetETHDKGPhaseFunc is an instance of a mock function object
	// controlling the behavior of the method GetETHDKGPhase.
	GetETHDKGPhaseFunc *IETHDKGGetETHDKGPhaseFunc
	// GetLastRoundParticipantIndexFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetLastRoundParticipantIndex.
	GetLastRoundParticipantIndexFunc *IETHDKGGetLastRoundParticipantIndexFunc
	// GetMasterPublicKeyFunc is an instance of a mock function object
	// controlling the behavior of the method GetMasterPublicKey.
	GetMasterPublicKeyFunc *IETHDKGGetMasterPublicKeyFunc
	// GetMasterPublicKeyHashFunc is an instance of a mock function object
	// controlling the behavior of the method GetMasterPublicKeyHash.
	GetMasterPublicKeyHashFunc *IETHDKGGetMasterPublicKeyHashFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IETHDKGGetMetamorphicContractAddressFunc
	// GetMinValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method GetMinValidators.
	GetMinValidatorsFunc *IETHDKGGetMinValidatorsFunc
	// GetNonceFunc is an instance of a mock function object controlling the
	// behavior of the method GetNonce.
	GetNonceFunc *IETHDKGGetNonceFunc
	// GetNumParticipantsFunc is an instance of a mock function object
	// controlling the behavior of the method GetNumParticipants.
	GetNumParticipantsFunc *IETHDKGGetNumParticipantsFunc
	// GetParticipantInternalStateFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetParticipantInternalState.
	GetParticipantInternalStateFunc *IETHDKGGetParticipantInternalStateFunc
	// GetParticipantsInternalStateFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetParticipantsInternalState.
	GetParticipantsInternalStateFunc *IETHDKGGetParticipantsInternalStateFunc
	// GetPhaseLengthFunc is an instance of a mock function object
	// controlling the behavior of the method GetPhaseLength.
	GetPhaseLengthFunc *IETHDKGGetPhaseLengthFunc
	// GetPhaseStartBlockFunc is an instance of a mock function object
	// controlling the behavior of the method GetPhaseStartBlock.
	GetPhaseStartBlockFunc *IETHDKGGetPhaseStartBlockFunc
	// InitializeFunc is an instance of a mock function object controlling
	// the behavior of the method Initialize.
	InitializeFunc *IETHDKGInitializeFunc
	// InitializeETHDKGFunc is an instance of a mock function object
	// controlling the behavior of the method InitializeETHDKG.
	InitializeETHDKGFunc *IETHDKGInitializeETHDKGFunc
	// IsETHDKGCompletedFunc is an instance of a mock function object
	// controlling the behavior of the method IsETHDKGCompleted.
	IsETHDKGCompletedFunc *IETHDKGIsETHDKGCompletedFunc
	// IsETHDKGHaltedFunc is an instance of a mock function object
	// controlling the behavior of the method IsETHDKGHalted.
	IsETHDKGHaltedFunc *IETHDKGIsETHDKGHaltedFunc
	// IsETHDKGRunningFunc is an instance of a mock function object
	// controlling the behavior of the method IsETHDKGRunning.
	IsETHDKGRunningFunc *IETHDKGIsETHDKGRunningFunc
	// IsMasterPublicKeySetFunc is an instance of a mock function object
	// controlling the behavior of the method IsMasterPublicKeySet.
	IsMasterPublicKeySetFunc *IETHDKGIsMasterPublicKeySetFunc
	// IsValidMasterPublicKeyFunc is an instance of a mock function object
	// controlling the behavior of the method IsValidMasterPublicKey.
	IsValidMasterPublicKeyFunc *IETHDKGIsValidMasterPublicKeyFunc
	// MigrateValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method MigrateValidators.
	MigrateValidatorsFunc *IETHDKGMigrateValidatorsFunc
	// ParseAddressRegisteredFunc is an instance of a mock function object
	// controlling the behavior of the method ParseAddressRegistered.
	ParseAddressRegisteredFunc *IETHDKGParseAddressRegisteredFunc
	// ParseGPKJSubmissionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseGPKJSubmissionComplete.
	ParseGPKJSubmissionCompleteFunc *IETHDKGParseGPKJSubmissionCompleteFunc
	// ParseInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseInitialized.
	ParseInitializedFunc *IETHDKGParseInitializedFunc
	// ParseKeyShareSubmissionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseKeyShareSubmissionComplete.
	ParseKeyShareSubmissionCompleteFunc *IETHDKGParseKeyShareSubmissionCompleteFunc
	// ParseKeyShareSubmittedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseKeyShareSubmitted.
	ParseKeyShareSubmittedFunc *IETHDKGParseKeyShareSubmittedFunc
	// ParseMPKSetFunc is an instance of a mock function object controlling
	// the behavior of the method ParseMPKSet.
	ParseMPKSetFunc *IETHDKGParseMPKSetFunc
	// ParseRegistrationCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseRegistrationComplete.
	ParseRegistrationCompleteFunc *IETHDKGParseRegistrationCompleteFunc
	// ParseRegistrationOpenedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseRegistrationOpened.
	ParseRegistrationOpenedFunc *IETHDKGParseRegistrationOpenedFunc
	// ParseShareDistributionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseShareDistributionComplete.
	ParseShareDistributionCompleteFunc *IETHDKGParseShareDistributionCompleteFunc
	// ParseSharesDistributedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseSharesDistributed.
	ParseSharesDistributedFunc *IETHDKGParseSharesDistributedFunc
	// ParseValidatorMemberAddedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseValidatorMemberAdded.
	ParseValidatorMemberAddedFunc *IETHDKGParseValidatorMemberAddedFunc
	// ParseValidatorSetCompletedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseValidatorSetCompleted.
	ParseValidatorSetCompletedFunc *IETHDKGParseValidatorSetCompletedFunc
	// RegisterFunc is an instance of a mock function object controlling the
	// behavior of the method Register.
	RegisterFunc *IETHDKGRegisterFunc
	// SetConfirmationLengthFunc is an instance of a mock function object
	// controlling the behavior of the method SetConfirmationLength.
	SetConfirmationLengthFunc *IETHDKGSetConfirmationLengthFunc
	// SetCustomAliceNetHeightFunc is an instance of a mock function object
	// controlling the behavior of the method SetCustomAliceNetHeight.
	SetCustomAliceNetHeightFunc *IETHDKGSetCustomAliceNetHeightFunc
	// SetPhaseLengthFunc is an instance of a mock function object
	// controlling the behavior of the method SetPhaseLength.
	SetPhaseLengthFunc *IETHDKGSetPhaseLengthFunc
	// SubmitGPKJFunc is an instance of a mock function object controlling
	// the behavior of the method SubmitGPKJ.
	SubmitGPKJFunc *IETHDKGSubmitGPKJFunc
	// SubmitKeyShareFunc is an instance of a mock function object
	// controlling the behavior of the method SubmitKeyShare.
	SubmitKeyShareFunc *IETHDKGSubmitKeyShareFunc
	// SubmitMasterPublicKeyFunc is an instance of a mock function object
	// controlling the behavior of the method SubmitMasterPublicKey.
	SubmitMasterPublicKeyFunc *IETHDKGSubmitMasterPublicKeyFunc
	// WatchAddressRegisteredFunc is an instance of a mock function object
	// controlling the behavior of the method WatchAddressRegistered.
	WatchAddressRegisteredFunc *IETHDKGWatchAddressRegisteredFunc
	// WatchGPKJSubmissionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchGPKJSubmissionComplete.
	WatchGPKJSubmissionCompleteFunc *IETHDKGWatchGPKJSubmissionCompleteFunc
	// WatchInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchInitialized.
	WatchInitializedFunc *IETHDKGWatchInitializedFunc
	// WatchKeyShareSubmissionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchKeyShareSubmissionComplete.
	WatchKeyShareSubmissionCompleteFunc *IETHDKGWatchKeyShareSubmissionCompleteFunc
	// WatchKeyShareSubmittedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchKeyShareSubmitted.
	WatchKeyShareSubmittedFunc *IETHDKGWatchKeyShareSubmittedFunc
	// WatchMPKSetFunc is an instance of a mock function object controlling
	// the behavior of the method WatchMPKSet.
	WatchMPKSetFunc *IETHDKGWatchMPKSetFunc
	// WatchRegistrationCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchRegistrationComplete.
	WatchRegistrationCompleteFunc *IETHDKGWatchRegistrationCompleteFunc
	// WatchRegistrationOpenedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchRegistrationOpened.
	WatchRegistrationOpenedFunc *IETHDKGWatchRegistrationOpenedFunc
	// WatchShareDistributionCompleteFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchShareDistributionComplete.
	WatchShareDistributionCompleteFunc *IETHDKGWatchShareDistributionCompleteFunc
	// WatchSharesDistributedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchSharesDistributed.
	WatchSharesDistributedFunc *IETHDKGWatchSharesDistributedFunc
	// WatchValidatorMemberAddedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchValidatorMemberAdded.
	WatchValidatorMemberAddedFunc *IETHDKGWatchValidatorMemberAddedFunc
	// WatchValidatorSetCompletedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchValidatorSetCompleted.
	WatchValidatorSetCompletedFunc *IETHDKGWatchValidatorSetCompletedFunc
}

MockIETHDKG is a mock implementation of the IETHDKG interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIETHDKG

func NewMockIETHDKG() *MockIETHDKG

NewMockIETHDKG creates a new mock of the IETHDKG interface. All methods return zero values for all results, unless overwritten.

func NewMockIETHDKGFrom

func NewMockIETHDKGFrom(i bindings.IETHDKG) *MockIETHDKG

NewMockIETHDKGFrom creates a new mock of the MockIETHDKG interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIETHDKG

func NewStrictMockIETHDKG() *MockIETHDKG

NewStrictMockIETHDKG creates a new mock of the IETHDKG interface. All methods panic on invocation, unless overwritten.

func (*MockIETHDKG) AccuseParticipantDidNotDistributeShares

func (m *MockIETHDKG) AccuseParticipantDidNotDistributeShares(v0 *bind.TransactOpts, v1 []common.Address) (*types.Transaction, error)

AccuseParticipantDidNotDistributeShares delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) AccuseParticipantDidNotSubmitGPKJ

func (m *MockIETHDKG) AccuseParticipantDidNotSubmitGPKJ(v0 *bind.TransactOpts, v1 []common.Address) (*types.Transaction, error)

AccuseParticipantDidNotSubmitGPKJ delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) AccuseParticipantDidNotSubmitKeyShares

func (m *MockIETHDKG) AccuseParticipantDidNotSubmitKeyShares(v0 *bind.TransactOpts, v1 []common.Address) (*types.Transaction, error)

AccuseParticipantDidNotSubmitKeyShares delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) AccuseParticipantDistributedBadShares

func (m *MockIETHDKG) AccuseParticipantDistributedBadShares(v0 *bind.TransactOpts, v1 common.Address, v2 []*big.Int, v3 [][2]*big.Int, v4 [2]*big.Int, v5 [2]*big.Int) (*types.Transaction, error)

AccuseParticipantDistributedBadShares delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) AccuseParticipantNotRegistered

func (m *MockIETHDKG) AccuseParticipantNotRegistered(v0 *bind.TransactOpts, v1 []common.Address) (*types.Transaction, error)

AccuseParticipantNotRegistered delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) AccuseParticipantSubmittedBadGPKJ

func (m *MockIETHDKG) AccuseParticipantSubmittedBadGPKJ(v0 *bind.TransactOpts, v1 []common.Address, v2 [][32]byte, v3 [][][2]*big.Int, v4 common.Address) (*types.Transaction, error)

AccuseParticipantSubmittedBadGPKJ delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) Complete

func (m *MockIETHDKG) Complete(v0 *bind.TransactOpts) (*types.Transaction, error)

Complete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) DistributeShares

func (m *MockIETHDKG) DistributeShares(v0 *bind.TransactOpts, v1 []*big.Int, v2 [][2]*big.Int) (*types.Transaction, error)

DistributeShares delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterAddressRegistered

func (m *MockIETHDKG) FilterAddressRegistered(v0 *bind.FilterOpts) (*bindings.ETHDKGAddressRegisteredIterator, error)

FilterAddressRegistered delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterGPKJSubmissionComplete

func (m *MockIETHDKG) FilterGPKJSubmissionComplete(v0 *bind.FilterOpts) (*bindings.ETHDKGGPKJSubmissionCompleteIterator, error)

FilterGPKJSubmissionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterInitialized added in v0.0.2

func (m *MockIETHDKG) FilterInitialized(v0 *bind.FilterOpts) (*bindings.ETHDKGInitializedIterator, error)

FilterInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterKeyShareSubmissionComplete

func (m *MockIETHDKG) FilterKeyShareSubmissionComplete(v0 *bind.FilterOpts) (*bindings.ETHDKGKeyShareSubmissionCompleteIterator, error)

FilterKeyShareSubmissionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterKeyShareSubmitted

func (m *MockIETHDKG) FilterKeyShareSubmitted(v0 *bind.FilterOpts) (*bindings.ETHDKGKeyShareSubmittedIterator, error)

FilterKeyShareSubmitted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterMPKSet

func (m *MockIETHDKG) FilterMPKSet(v0 *bind.FilterOpts) (*bindings.ETHDKGMPKSetIterator, error)

FilterMPKSet delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterRegistrationComplete

func (m *MockIETHDKG) FilterRegistrationComplete(v0 *bind.FilterOpts) (*bindings.ETHDKGRegistrationCompleteIterator, error)

FilterRegistrationComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterRegistrationOpened

func (m *MockIETHDKG) FilterRegistrationOpened(v0 *bind.FilterOpts) (*bindings.ETHDKGRegistrationOpenedIterator, error)

FilterRegistrationOpened delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterShareDistributionComplete

func (m *MockIETHDKG) FilterShareDistributionComplete(v0 *bind.FilterOpts) (*bindings.ETHDKGShareDistributionCompleteIterator, error)

FilterShareDistributionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterSharesDistributed

func (m *MockIETHDKG) FilterSharesDistributed(v0 *bind.FilterOpts) (*bindings.ETHDKGSharesDistributedIterator, error)

FilterSharesDistributed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterValidatorMemberAdded

func (m *MockIETHDKG) FilterValidatorMemberAdded(v0 *bind.FilterOpts) (*bindings.ETHDKGValidatorMemberAddedIterator, error)

FilterValidatorMemberAdded delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) FilterValidatorSetCompleted

func (m *MockIETHDKG) FilterValidatorSetCompleted(v0 *bind.FilterOpts) (*bindings.ETHDKGValidatorSetCompletedIterator, error)

FilterValidatorSetCompleted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetBadParticipants

func (m *MockIETHDKG) GetBadParticipants(v0 *bind.CallOpts) (*big.Int, error)

GetBadParticipants delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetConfirmationLength

func (m *MockIETHDKG) GetConfirmationLength(v0 *bind.CallOpts) (*big.Int, error)

GetConfirmationLength delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetETHDKGPhase

func (m *MockIETHDKG) GetETHDKGPhase(v0 *bind.CallOpts) (uint8, error)

GetETHDKGPhase delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetLastRoundParticipantIndex added in v0.0.5

func (m *MockIETHDKG) GetLastRoundParticipantIndex(v0 *bind.CallOpts, v1 common.Address) (*big.Int, error)

GetLastRoundParticipantIndex delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetMasterPublicKey

func (m *MockIETHDKG) GetMasterPublicKey(v0 *bind.CallOpts) ([4]*big.Int, error)

GetMasterPublicKey delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetMasterPublicKeyHash

func (m *MockIETHDKG) GetMasterPublicKeyHash(v0 *bind.CallOpts) ([32]byte, error)

GetMasterPublicKeyHash delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetMetamorphicContractAddress

func (m *MockIETHDKG) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetMinValidators

func (m *MockIETHDKG) GetMinValidators(v0 *bind.CallOpts) (*big.Int, error)

GetMinValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetNonce

func (m *MockIETHDKG) GetNonce(v0 *bind.CallOpts) (*big.Int, error)

GetNonce delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetNumParticipants

func (m *MockIETHDKG) GetNumParticipants(v0 *bind.CallOpts) (*big.Int, error)

GetNumParticipants delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetParticipantInternalState

func (m *MockIETHDKG) GetParticipantInternalState(v0 *bind.CallOpts, v1 common.Address) (bindings.Participant, error)

GetParticipantInternalState delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetParticipantsInternalState

func (m *MockIETHDKG) GetParticipantsInternalState(v0 *bind.CallOpts, v1 []common.Address) ([]bindings.Participant, error)

GetParticipantsInternalState delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetPhaseLength

func (m *MockIETHDKG) GetPhaseLength(v0 *bind.CallOpts) (*big.Int, error)

GetPhaseLength delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) GetPhaseStartBlock

func (m *MockIETHDKG) GetPhaseStartBlock(v0 *bind.CallOpts) (*big.Int, error)

GetPhaseStartBlock delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) Initialize

func (m *MockIETHDKG) Initialize(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int) (*types.Transaction, error)

Initialize delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) InitializeETHDKG

func (m *MockIETHDKG) InitializeETHDKG(v0 *bind.TransactOpts) (*types.Transaction, error)

InitializeETHDKG delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) IsETHDKGCompleted

func (m *MockIETHDKG) IsETHDKGCompleted(v0 *bind.CallOpts) (bool, error)

IsETHDKGCompleted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) IsETHDKGHalted

func (m *MockIETHDKG) IsETHDKGHalted(v0 *bind.CallOpts) (bool, error)

IsETHDKGHalted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) IsETHDKGRunning

func (m *MockIETHDKG) IsETHDKGRunning(v0 *bind.CallOpts) (bool, error)

IsETHDKGRunning delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) IsMasterPublicKeySet

func (m *MockIETHDKG) IsMasterPublicKeySet(v0 *bind.CallOpts) (bool, error)

IsMasterPublicKeySet delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) IsValidMasterPublicKey added in v0.0.8

func (m *MockIETHDKG) IsValidMasterPublicKey(v0 *bind.CallOpts, v1 [32]byte) (bool, error)

IsValidMasterPublicKey delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) MigrateValidators

func (m *MockIETHDKG) MigrateValidators(v0 *bind.TransactOpts, v1 []common.Address, v2 []*big.Int, v3 [][4]*big.Int, v4 uint8, v5 *big.Int, v6 *big.Int, v7 *big.Int, v8 [4]*big.Int) (*types.Transaction, error)

MigrateValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseAddressRegistered

func (m *MockIETHDKG) ParseAddressRegistered(v0 types.Log) (*bindings.ETHDKGAddressRegistered, error)

ParseAddressRegistered delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseGPKJSubmissionComplete

func (m *MockIETHDKG) ParseGPKJSubmissionComplete(v0 types.Log) (*bindings.ETHDKGGPKJSubmissionComplete, error)

ParseGPKJSubmissionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseInitialized added in v0.0.2

func (m *MockIETHDKG) ParseInitialized(v0 types.Log) (*bindings.ETHDKGInitialized, error)

ParseInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseKeyShareSubmissionComplete

func (m *MockIETHDKG) ParseKeyShareSubmissionComplete(v0 types.Log) (*bindings.ETHDKGKeyShareSubmissionComplete, error)

ParseKeyShareSubmissionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseKeyShareSubmitted

func (m *MockIETHDKG) ParseKeyShareSubmitted(v0 types.Log) (*bindings.ETHDKGKeyShareSubmitted, error)

ParseKeyShareSubmitted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseMPKSet

func (m *MockIETHDKG) ParseMPKSet(v0 types.Log) (*bindings.ETHDKGMPKSet, error)

ParseMPKSet delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseRegistrationComplete

func (m *MockIETHDKG) ParseRegistrationComplete(v0 types.Log) (*bindings.ETHDKGRegistrationComplete, error)

ParseRegistrationComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseRegistrationOpened

func (m *MockIETHDKG) ParseRegistrationOpened(v0 types.Log) (*bindings.ETHDKGRegistrationOpened, error)

ParseRegistrationOpened delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseShareDistributionComplete

func (m *MockIETHDKG) ParseShareDistributionComplete(v0 types.Log) (*bindings.ETHDKGShareDistributionComplete, error)

ParseShareDistributionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseSharesDistributed

func (m *MockIETHDKG) ParseSharesDistributed(v0 types.Log) (*bindings.ETHDKGSharesDistributed, error)

ParseSharesDistributed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseValidatorMemberAdded

func (m *MockIETHDKG) ParseValidatorMemberAdded(v0 types.Log) (*bindings.ETHDKGValidatorMemberAdded, error)

ParseValidatorMemberAdded delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) ParseValidatorSetCompleted

func (m *MockIETHDKG) ParseValidatorSetCompleted(v0 types.Log) (*bindings.ETHDKGValidatorSetCompleted, error)

ParseValidatorSetCompleted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) Register

func (m *MockIETHDKG) Register(v0 *bind.TransactOpts, v1 [2]*big.Int) (*types.Transaction, error)

Register delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) SetConfirmationLength

func (m *MockIETHDKG) SetConfirmationLength(v0 *bind.TransactOpts, v1 uint16) (*types.Transaction, error)

SetConfirmationLength delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) SetCustomAliceNetHeight

func (m *MockIETHDKG) SetCustomAliceNetHeight(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

SetCustomAliceNetHeight delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) SetPhaseLength

func (m *MockIETHDKG) SetPhaseLength(v0 *bind.TransactOpts, v1 uint16) (*types.Transaction, error)

SetPhaseLength delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) SubmitGPKJ

func (m *MockIETHDKG) SubmitGPKJ(v0 *bind.TransactOpts, v1 [4]*big.Int) (*types.Transaction, error)

SubmitGPKJ delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) SubmitKeyShare

func (m *MockIETHDKG) SubmitKeyShare(v0 *bind.TransactOpts, v1 [2]*big.Int, v2 [2]*big.Int, v3 [4]*big.Int) (*types.Transaction, error)

SubmitKeyShare delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) SubmitMasterPublicKey

func (m *MockIETHDKG) SubmitMasterPublicKey(v0 *bind.TransactOpts, v1 [4]*big.Int) (*types.Transaction, error)

SubmitMasterPublicKey delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchAddressRegistered

func (m *MockIETHDKG) WatchAddressRegistered(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGAddressRegistered) (event.Subscription, error)

WatchAddressRegistered delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchGPKJSubmissionComplete

func (m *MockIETHDKG) WatchGPKJSubmissionComplete(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGGPKJSubmissionComplete) (event.Subscription, error)

WatchGPKJSubmissionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchInitialized added in v0.0.2

func (m *MockIETHDKG) WatchInitialized(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGInitialized) (event.Subscription, error)

WatchInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchKeyShareSubmissionComplete

func (m *MockIETHDKG) WatchKeyShareSubmissionComplete(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGKeyShareSubmissionComplete) (event.Subscription, error)

WatchKeyShareSubmissionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchKeyShareSubmitted

func (m *MockIETHDKG) WatchKeyShareSubmitted(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGKeyShareSubmitted) (event.Subscription, error)

WatchKeyShareSubmitted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchMPKSet

func (m *MockIETHDKG) WatchMPKSet(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGMPKSet) (event.Subscription, error)

WatchMPKSet delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchRegistrationComplete

func (m *MockIETHDKG) WatchRegistrationComplete(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGRegistrationComplete) (event.Subscription, error)

WatchRegistrationComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchRegistrationOpened

func (m *MockIETHDKG) WatchRegistrationOpened(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGRegistrationOpened) (event.Subscription, error)

WatchRegistrationOpened delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchShareDistributionComplete

func (m *MockIETHDKG) WatchShareDistributionComplete(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGShareDistributionComplete) (event.Subscription, error)

WatchShareDistributionComplete delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchSharesDistributed

func (m *MockIETHDKG) WatchSharesDistributed(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGSharesDistributed) (event.Subscription, error)

WatchSharesDistributed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchValidatorMemberAdded

func (m *MockIETHDKG) WatchValidatorMemberAdded(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGValidatorMemberAdded) (event.Subscription, error)

WatchValidatorMemberAdded delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIETHDKG) WatchValidatorSetCompleted

func (m *MockIETHDKG) WatchValidatorSetCompleted(v0 *bind.WatchOpts, v1 chan<- *bindings.ETHDKGValidatorSetCompleted) (event.Subscription, error)

WatchValidatorSetCompleted delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIGovernance

type MockIGovernance struct {
	// FilterSnapshotTakenFunc is an instance of a mock function object
	// controlling the behavior of the method FilterSnapshotTaken.
	FilterSnapshotTakenFunc *IGovernanceFilterSnapshotTakenFunc
	// FilterValueUpdatedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterValueUpdated.
	FilterValueUpdatedFunc *IGovernanceFilterValueUpdatedFunc
	// ParseSnapshotTakenFunc is an instance of a mock function object
	// controlling the behavior of the method ParseSnapshotTaken.
	ParseSnapshotTakenFunc *IGovernanceParseSnapshotTakenFunc
	// ParseValueUpdatedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseValueUpdated.
	ParseValueUpdatedFunc *IGovernanceParseValueUpdatedFunc
	// UpdateValueFunc is an instance of a mock function object controlling
	// the behavior of the method UpdateValue.
	UpdateValueFunc *IGovernanceUpdateValueFunc
	// WatchSnapshotTakenFunc is an instance of a mock function object
	// controlling the behavior of the method WatchSnapshotTaken.
	WatchSnapshotTakenFunc *IGovernanceWatchSnapshotTakenFunc
	// WatchValueUpdatedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchValueUpdated.
	WatchValueUpdatedFunc *IGovernanceWatchValueUpdatedFunc
}

MockIGovernance is a mock implementation of the IGovernance interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIGovernance

func NewMockIGovernance() *MockIGovernance

NewMockIGovernance creates a new mock of the IGovernance interface. All methods return zero values for all results, unless overwritten.

func NewMockIGovernanceFrom

func NewMockIGovernanceFrom(i bindings.IGovernance) *MockIGovernance

NewMockIGovernanceFrom creates a new mock of the MockIGovernance interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIGovernance

func NewStrictMockIGovernance() *MockIGovernance

NewStrictMockIGovernance creates a new mock of the IGovernance interface. All methods panic on invocation, unless overwritten.

func (*MockIGovernance) FilterSnapshotTaken added in v0.0.5

func (m *MockIGovernance) FilterSnapshotTaken(v0 *bind.FilterOpts, v1 []*big.Int, v2 []common.Address) (*bindings.GovernanceSnapshotTakenIterator, error)

FilterSnapshotTaken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIGovernance) FilterValueUpdated

func (m *MockIGovernance) FilterValueUpdated(v0 *bind.FilterOpts, v1 []*big.Int, v2 []*big.Int, v3 [][32]byte) (*bindings.GovernanceValueUpdatedIterator, error)

FilterValueUpdated delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIGovernance) ParseSnapshotTaken added in v0.0.5

func (m *MockIGovernance) ParseSnapshotTaken(v0 types.Log) (*bindings.GovernanceSnapshotTaken, error)

ParseSnapshotTaken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIGovernance) ParseValueUpdated

func (m *MockIGovernance) ParseValueUpdated(v0 types.Log) (*bindings.GovernanceValueUpdated, error)

ParseValueUpdated delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIGovernance) UpdateValue

func (m *MockIGovernance) UpdateValue(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int, v3 [32]byte) (*types.Transaction, error)

UpdateValue delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIGovernance) WatchSnapshotTaken added in v0.0.5

func (m *MockIGovernance) WatchSnapshotTaken(v0 *bind.WatchOpts, v1 chan<- *bindings.GovernanceSnapshotTaken, v2 []*big.Int, v3 []common.Address) (event.Subscription, error)

WatchSnapshotTaken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIGovernance) WatchValueUpdated

func (m *MockIGovernance) WatchValueUpdated(v0 *bind.WatchOpts, v1 chan<- *bindings.GovernanceValueUpdated, v2 []*big.Int, v3 []*big.Int, v4 [][32]byte) (event.Subscription, error)

WatchValueUpdated delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIPublicStaking

type MockIPublicStaking struct {
	// ApproveFunc is an instance of a mock function object controlling the
	// behavior of the method Approve.
	ApproveFunc *IPublicStakingApproveFunc
	// BalanceOfFunc is an instance of a mock function object controlling
	// the behavior of the method BalanceOf.
	BalanceOfFunc *IPublicStakingBalanceOfFunc
	// BurnFunc is an instance of a mock function object controlling the
	// behavior of the method Burn.
	BurnFunc *IPublicStakingBurnFunc
	// BurnToFunc is an instance of a mock function object controlling the
	// behavior of the method BurnTo.
	BurnToFunc *IPublicStakingBurnToFunc
	// CircuitBreakerStateFunc is an instance of a mock function object
	// controlling the behavior of the method CircuitBreakerState.
	CircuitBreakerStateFunc *IPublicStakingCircuitBreakerStateFunc
	// CollectAllProfitsFunc is an instance of a mock function object
	// controlling the behavior of the method CollectAllProfits.
	CollectAllProfitsFunc *IPublicStakingCollectAllProfitsFunc
	// CollectAllProfitsToFunc is an instance of a mock function object
	// controlling the behavior of the method CollectAllProfitsTo.
	CollectAllProfitsToFunc *IPublicStakingCollectAllProfitsToFunc
	// CollectEthFunc is an instance of a mock function object controlling
	// the behavior of the method CollectEth.
	CollectEthFunc *IPublicStakingCollectEthFunc
	// CollectEthToFunc is an instance of a mock function object controlling
	// the behavior of the method CollectEthTo.
	CollectEthToFunc *IPublicStakingCollectEthToFunc
	// CollectTokenFunc is an instance of a mock function object controlling
	// the behavior of the method CollectToken.
	CollectTokenFunc *IPublicStakingCollectTokenFunc
	// CollectTokenToFunc is an instance of a mock function object
	// controlling the behavior of the method CollectTokenTo.
	CollectTokenToFunc *IPublicStakingCollectTokenToFunc
	// DepositEthFunc is an instance of a mock function object controlling
	// the behavior of the method DepositEth.
	DepositEthFunc *IPublicStakingDepositEthFunc
	// DepositTokenFunc is an instance of a mock function object controlling
	// the behavior of the method DepositToken.
	DepositTokenFunc *IPublicStakingDepositTokenFunc
	// EstimateAllProfitsFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateAllProfits.
	EstimateAllProfitsFunc *IPublicStakingEstimateAllProfitsFunc
	// EstimateEthCollectionFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateEthCollection.
	EstimateEthCollectionFunc *IPublicStakingEstimateEthCollectionFunc
	// EstimateExcessEthFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateExcessEth.
	EstimateExcessEthFunc *IPublicStakingEstimateExcessEthFunc
	// EstimateExcessTokenFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateExcessToken.
	EstimateExcessTokenFunc *IPublicStakingEstimateExcessTokenFunc
	// EstimateTokenCollectionFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateTokenCollection.
	EstimateTokenCollectionFunc *IPublicStakingEstimateTokenCollectionFunc
	// FilterApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method FilterApproval.
	FilterApprovalFunc *IPublicStakingFilterApprovalFunc
	// FilterApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method FilterApprovalForAll.
	FilterApprovalForAllFunc *IPublicStakingFilterApprovalForAllFunc
	// FilterInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterInitialized.
	FilterInitializedFunc *IPublicStakingFilterInitializedFunc
	// FilterTransferFunc is an instance of a mock function object
	// controlling the behavior of the method FilterTransfer.
	FilterTransferFunc *IPublicStakingFilterTransferFunc
	// GetAccumulatorScaleFactorFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetAccumulatorScaleFactor.
	GetAccumulatorScaleFactorFunc *IPublicStakingGetAccumulatorScaleFactorFunc
	// GetApprovedFunc is an instance of a mock function object controlling
	// the behavior of the method GetApproved.
	GetApprovedFunc *IPublicStakingGetApprovedFunc
	// GetEthAccumulatorFunc is an instance of a mock function object
	// controlling the behavior of the method GetEthAccumulator.
	GetEthAccumulatorFunc *IPublicStakingGetEthAccumulatorFunc
	// GetLatestMintedPositionIDFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetLatestMintedPositionID.
	GetLatestMintedPositionIDFunc *IPublicStakingGetLatestMintedPositionIDFunc
	// GetMaxGovernanceLockFunc is an instance of a mock function object
	// controlling the behavior of the method GetMaxGovernanceLock.
	GetMaxGovernanceLockFunc *IPublicStakingGetMaxGovernanceLockFunc
	// GetMaxMintLockFunc is an instance of a mock function object
	// controlling the behavior of the method GetMaxMintLock.
	GetMaxMintLockFunc *IPublicStakingGetMaxMintLockFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IPublicStakingGetMetamorphicContractAddressFunc
	// GetPositionFunc is an instance of a mock function object controlling
	// the behavior of the method GetPosition.
	GetPositionFunc *IPublicStakingGetPositionFunc
	// GetTokenAccumulatorFunc is an instance of a mock function object
	// controlling the behavior of the method GetTokenAccumulator.
	GetTokenAccumulatorFunc *IPublicStakingGetTokenAccumulatorFunc
	// GetTotalReserveALCAFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalReserveALCA.
	GetTotalReserveALCAFunc *IPublicStakingGetTotalReserveALCAFunc
	// GetTotalReserveEthFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalReserveEth.
	GetTotalReserveEthFunc *IPublicStakingGetTotalReserveEthFunc
	// GetTotalSharesFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalShares.
	GetTotalSharesFunc *IPublicStakingGetTotalSharesFunc
	// InitializeFunc is an instance of a mock function object controlling
	// the behavior of the method Initialize.
	InitializeFunc *IPublicStakingInitializeFunc
	// IsApprovedForAllFunc is an instance of a mock function object
	// controlling the behavior of the method IsApprovedForAll.
	IsApprovedForAllFunc *IPublicStakingIsApprovedForAllFunc
	// LockOwnPositionFunc is an instance of a mock function object
	// controlling the behavior of the method LockOwnPosition.
	LockOwnPositionFunc *IPublicStakingLockOwnPositionFunc
	// LockPositionFunc is an instance of a mock function object controlling
	// the behavior of the method LockPosition.
	LockPositionFunc *IPublicStakingLockPositionFunc
	// LockWithdrawFunc is an instance of a mock function object controlling
	// the behavior of the method LockWithdraw.
	LockWithdrawFunc *IPublicStakingLockWithdrawFunc
	// MintFunc is an instance of a mock function object controlling the
	// behavior of the method Mint.
	MintFunc *IPublicStakingMintFunc
	// MintToFunc is an instance of a mock function object controlling the
	// behavior of the method MintTo.
	MintToFunc *IPublicStakingMintToFunc
	// NameFunc is an instance of a mock function object controlling the
	// behavior of the method Name.
	NameFunc *IPublicStakingNameFunc
	// OwnerOfFunc is an instance of a mock function object controlling the
	// behavior of the method OwnerOf.
	OwnerOfFunc *IPublicStakingOwnerOfFunc
	// ParseApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method ParseApproval.
	ParseApprovalFunc *IPublicStakingParseApprovalFunc
	// ParseApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method ParseApprovalForAll.
	ParseApprovalForAllFunc *IPublicStakingParseApprovalForAllFunc
	// ParseInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseInitialized.
	ParseInitializedFunc *IPublicStakingParseInitializedFunc
	// ParseTransferFunc is an instance of a mock function object
	// controlling the behavior of the method ParseTransfer.
	ParseTransferFunc *IPublicStakingParseTransferFunc
	// SafeTransferFromFunc is an instance of a mock function object
	// controlling the behavior of the method SafeTransferFrom.
	SafeTransferFromFunc *IPublicStakingSafeTransferFromFunc
	// SafeTransferFrom0Func is an instance of a mock function object
	// controlling the behavior of the method SafeTransferFrom0.
	SafeTransferFrom0Func *IPublicStakingSafeTransferFrom0Func
	// SetApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method SetApprovalForAll.
	SetApprovalForAllFunc *IPublicStakingSetApprovalForAllFunc
	// SkimExcessEthFunc is an instance of a mock function object
	// controlling the behavior of the method SkimExcessEth.
	SkimExcessEthFunc *IPublicStakingSkimExcessEthFunc
	// SkimExcessTokenFunc is an instance of a mock function object
	// controlling the behavior of the method SkimExcessToken.
	SkimExcessTokenFunc *IPublicStakingSkimExcessTokenFunc
	// SupportsInterfaceFunc is an instance of a mock function object
	// controlling the behavior of the method SupportsInterface.
	SupportsInterfaceFunc *IPublicStakingSupportsInterfaceFunc
	// SymbolFunc is an instance of a mock function object controlling the
	// behavior of the method Symbol.
	SymbolFunc *IPublicStakingSymbolFunc
	// TokenByIndexFunc is an instance of a mock function object controlling
	// the behavior of the method TokenByIndex.
	TokenByIndexFunc *IPublicStakingTokenByIndexFunc
	// TokenOfOwnerByIndexFunc is an instance of a mock function object
	// controlling the behavior of the method TokenOfOwnerByIndex.
	TokenOfOwnerByIndexFunc *IPublicStakingTokenOfOwnerByIndexFunc
	// TokenURIFunc is an instance of a mock function object controlling the
	// behavior of the method TokenURI.
	TokenURIFunc *IPublicStakingTokenURIFunc
	// TotalSupplyFunc is an instance of a mock function object controlling
	// the behavior of the method TotalSupply.
	TotalSupplyFunc *IPublicStakingTotalSupplyFunc
	// TransferFromFunc is an instance of a mock function object controlling
	// the behavior of the method TransferFrom.
	TransferFromFunc *IPublicStakingTransferFromFunc
	// TripCBFunc is an instance of a mock function object controlling the
	// behavior of the method TripCB.
	TripCBFunc *IPublicStakingTripCBFunc
	// WatchApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method WatchApproval.
	WatchApprovalFunc *IPublicStakingWatchApprovalFunc
	// WatchApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method WatchApprovalForAll.
	WatchApprovalForAllFunc *IPublicStakingWatchApprovalForAllFunc
	// WatchInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchInitialized.
	WatchInitializedFunc *IPublicStakingWatchInitializedFunc
	// WatchTransferFunc is an instance of a mock function object
	// controlling the behavior of the method WatchTransfer.
	WatchTransferFunc *IPublicStakingWatchTransferFunc
}

MockIPublicStaking is a mock implementation of the IPublicStaking interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIPublicStaking

func NewMockIPublicStaking() *MockIPublicStaking

NewMockIPublicStaking creates a new mock of the IPublicStaking interface. All methods return zero values for all results, unless overwritten.

func NewMockIPublicStakingFrom

func NewMockIPublicStakingFrom(i bindings.IPublicStaking) *MockIPublicStaking

NewMockIPublicStakingFrom creates a new mock of the MockIPublicStaking interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIPublicStaking

func NewStrictMockIPublicStaking() *MockIPublicStaking

NewStrictMockIPublicStaking creates a new mock of the IPublicStaking interface. All methods panic on invocation, unless overwritten.

func (*MockIPublicStaking) Approve

Approve delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) BalanceOf

func (m *MockIPublicStaking) BalanceOf(v0 *bind.CallOpts, v1 common.Address) (*big.Int, error)

BalanceOf delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) Burn

Burn delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) BurnTo

BurnTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CircuitBreakerState

func (m *MockIPublicStaking) CircuitBreakerState(v0 *bind.CallOpts) (bool, error)

CircuitBreakerState delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CollectAllProfits added in v0.0.5

func (m *MockIPublicStaking) CollectAllProfits(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

CollectAllProfits delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CollectAllProfitsTo added in v0.0.5

func (m *MockIPublicStaking) CollectAllProfitsTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

CollectAllProfitsTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CollectEth

func (m *MockIPublicStaking) CollectEth(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

CollectEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CollectEthTo

func (m *MockIPublicStaking) CollectEthTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

CollectEthTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CollectToken

func (m *MockIPublicStaking) CollectToken(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

CollectToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) CollectTokenTo

func (m *MockIPublicStaking) CollectTokenTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

CollectTokenTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) DepositEth

func (m *MockIPublicStaking) DepositEth(v0 *bind.TransactOpts, v1 uint8) (*types.Transaction, error)

DepositEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) DepositToken

func (m *MockIPublicStaking) DepositToken(v0 *bind.TransactOpts, v1 uint8, v2 *big.Int) (*types.Transaction, error)

DepositToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) EstimateAllProfits added in v0.0.8

func (m *MockIPublicStaking) EstimateAllProfits(v0 *bind.CallOpts, v1 *big.Int) (struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, error)

EstimateAllProfits delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) EstimateEthCollection

func (m *MockIPublicStaking) EstimateEthCollection(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

EstimateEthCollection delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) EstimateExcessEth

func (m *MockIPublicStaking) EstimateExcessEth(v0 *bind.CallOpts) (*big.Int, error)

EstimateExcessEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) EstimateExcessToken

func (m *MockIPublicStaking) EstimateExcessToken(v0 *bind.CallOpts) (*big.Int, error)

EstimateExcessToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) EstimateTokenCollection

func (m *MockIPublicStaking) EstimateTokenCollection(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

EstimateTokenCollection delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) FilterApproval

FilterApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) FilterApprovalForAll

FilterApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) FilterInitialized added in v0.0.2

FilterInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) FilterTransfer

FilterTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetAccumulatorScaleFactor

func (m *MockIPublicStaking) GetAccumulatorScaleFactor(v0 *bind.CallOpts) (*big.Int, error)

GetAccumulatorScaleFactor delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetApproved

func (m *MockIPublicStaking) GetApproved(v0 *bind.CallOpts, v1 *big.Int) (common.Address, error)

GetApproved delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetEthAccumulator

func (m *MockIPublicStaking) GetEthAccumulator(v0 *bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error)

GetEthAccumulator delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetLatestMintedPositionID added in v0.0.5

func (m *MockIPublicStaking) GetLatestMintedPositionID(v0 *bind.CallOpts) (*big.Int, error)

GetLatestMintedPositionID delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetMaxGovernanceLock added in v0.0.4

func (m *MockIPublicStaking) GetMaxGovernanceLock(v0 *bind.CallOpts) (*big.Int, error)

GetMaxGovernanceLock delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetMaxMintLock

func (m *MockIPublicStaking) GetMaxMintLock(v0 *bind.CallOpts) (*big.Int, error)

GetMaxMintLock delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetMetamorphicContractAddress

func (m *MockIPublicStaking) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetPosition

func (m *MockIPublicStaking) GetPosition(v0 *bind.CallOpts, v1 *big.Int) (struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, error)

GetPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetTokenAccumulator

func (m *MockIPublicStaking) GetTokenAccumulator(v0 *bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error)

GetTokenAccumulator delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetTotalReserveALCA added in v0.0.8

func (m *MockIPublicStaking) GetTotalReserveALCA(v0 *bind.CallOpts) (*big.Int, error)

GetTotalReserveALCA delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetTotalReserveEth

func (m *MockIPublicStaking) GetTotalReserveEth(v0 *bind.CallOpts) (*big.Int, error)

GetTotalReserveEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) GetTotalShares

func (m *MockIPublicStaking) GetTotalShares(v0 *bind.CallOpts) (*big.Int, error)

GetTotalShares delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) Initialize

func (m *MockIPublicStaking) Initialize(v0 *bind.TransactOpts) (*types.Transaction, error)

Initialize delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) IsApprovedForAll

func (m *MockIPublicStaking) IsApprovedForAll(v0 *bind.CallOpts, v1 common.Address, v2 common.Address) (bool, error)

IsApprovedForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) LockOwnPosition

func (m *MockIPublicStaking) LockOwnPosition(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int) (*types.Transaction, error)

LockOwnPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) LockPosition

func (m *MockIPublicStaking) LockPosition(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int, v3 *big.Int) (*types.Transaction, error)

LockPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) LockWithdraw

func (m *MockIPublicStaking) LockWithdraw(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int) (*types.Transaction, error)

LockWithdraw delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) Mint

Mint delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) MintTo

MintTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) Name

func (m *MockIPublicStaking) Name(v0 *bind.CallOpts) (string, error)

Name delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) OwnerOf

func (m *MockIPublicStaking) OwnerOf(v0 *bind.CallOpts, v1 *big.Int) (common.Address, error)

OwnerOf delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) ParseApproval

ParseApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) ParseApprovalForAll

func (m *MockIPublicStaking) ParseApprovalForAll(v0 types.Log) (*bindings.PublicStakingApprovalForAll, error)

ParseApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) ParseInitialized added in v0.0.2

func (m *MockIPublicStaking) ParseInitialized(v0 types.Log) (*bindings.PublicStakingInitialized, error)

ParseInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) ParseTransfer

ParseTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) SafeTransferFrom

func (m *MockIPublicStaking) SafeTransferFrom(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

SafeTransferFrom delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) SafeTransferFrom0

func (m *MockIPublicStaking) SafeTransferFrom0(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int, v4 []byte) (*types.Transaction, error)

SafeTransferFrom0 delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) SetApprovalForAll

func (m *MockIPublicStaking) SetApprovalForAll(v0 *bind.TransactOpts, v1 common.Address, v2 bool) (*types.Transaction, error)

SetApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) SkimExcessEth

func (m *MockIPublicStaking) SkimExcessEth(v0 *bind.TransactOpts, v1 common.Address) (*types.Transaction, error)

SkimExcessEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) SkimExcessToken

func (m *MockIPublicStaking) SkimExcessToken(v0 *bind.TransactOpts, v1 common.Address) (*types.Transaction, error)

SkimExcessToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) SupportsInterface

func (m *MockIPublicStaking) SupportsInterface(v0 *bind.CallOpts, v1 [4]byte) (bool, error)

SupportsInterface delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) Symbol

func (m *MockIPublicStaking) Symbol(v0 *bind.CallOpts) (string, error)

Symbol delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) TokenByIndex added in v0.0.5

func (m *MockIPublicStaking) TokenByIndex(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

TokenByIndex delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) TokenOfOwnerByIndex added in v0.0.5

func (m *MockIPublicStaking) TokenOfOwnerByIndex(v0 *bind.CallOpts, v1 common.Address, v2 *big.Int) (*big.Int, error)

TokenOfOwnerByIndex delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) TokenURI

func (m *MockIPublicStaking) TokenURI(v0 *bind.CallOpts, v1 *big.Int) (string, error)

TokenURI delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) TotalSupply added in v0.0.5

func (m *MockIPublicStaking) TotalSupply(v0 *bind.CallOpts) (*big.Int, error)

TotalSupply delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) TransferFrom

func (m *MockIPublicStaking) TransferFrom(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

TransferFrom delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) TripCB

TripCB delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) WatchApproval

func (m *MockIPublicStaking) WatchApproval(v0 *bind.WatchOpts, v1 chan<- *bindings.PublicStakingApproval, v2 []common.Address, v3 []common.Address, v4 []*big.Int) (event.Subscription, error)

WatchApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) WatchApprovalForAll

WatchApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) WatchInitialized added in v0.0.2

WatchInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIPublicStaking) WatchTransfer

func (m *MockIPublicStaking) WatchTransfer(v0 *bind.WatchOpts, v1 chan<- *bindings.PublicStakingTransfer, v2 []common.Address, v3 []common.Address, v4 []*big.Int) (event.Subscription, error)

WatchTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockISnapshots

type MockISnapshots struct {
	// CheckBClaimsSignatureFunc is an instance of a mock function object
	// controlling the behavior of the method CheckBClaimsSignature.
	CheckBClaimsSignatureFunc *ISnapshotsCheckBClaimsSignatureFunc
	// FilterInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterInitialized.
	FilterInitializedFunc *ISnapshotsFilterInitializedFunc
	// FilterSnapshotTakenFunc is an instance of a mock function object
	// controlling the behavior of the method FilterSnapshotTaken.
	FilterSnapshotTakenFunc *ISnapshotsFilterSnapshotTakenFunc
	// GetAliceNetHeightFromLatestSnapshotFunc is an instance of a mock
	// function object controlling the behavior of the method
	// GetAliceNetHeightFromLatestSnapshot.
	GetAliceNetHeightFromLatestSnapshotFunc *ISnapshotsGetAliceNetHeightFromLatestSnapshotFunc
	// GetAliceNetHeightFromSnapshotFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetAliceNetHeightFromSnapshot.
	GetAliceNetHeightFromSnapshotFunc *ISnapshotsGetAliceNetHeightFromSnapshotFunc
	// GetBlockClaimsFromLatestSnapshotFunc is an instance of a mock
	// function object controlling the behavior of the method
	// GetBlockClaimsFromLatestSnapshot.
	GetBlockClaimsFromLatestSnapshotFunc *ISnapshotsGetBlockClaimsFromLatestSnapshotFunc
	// GetBlockClaimsFromSnapshotFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetBlockClaimsFromSnapshot.
	GetBlockClaimsFromSnapshotFunc *ISnapshotsGetBlockClaimsFromSnapshotFunc
	// GetChainIdFunc is an instance of a mock function object controlling
	// the behavior of the method GetChainId.
	GetChainIdFunc *ISnapshotsGetChainIdFunc
	// GetChainIdFromLatestSnapshotFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetChainIdFromLatestSnapshot.
	GetChainIdFromLatestSnapshotFunc *ISnapshotsGetChainIdFromLatestSnapshotFunc
	// GetChainIdFromSnapshotFunc is an instance of a mock function object
	// controlling the behavior of the method GetChainIdFromSnapshot.
	GetChainIdFromSnapshotFunc *ISnapshotsGetChainIdFromSnapshotFunc
	// GetCommittedHeightFromLatestSnapshotFunc is an instance of a mock
	// function object controlling the behavior of the method
	// GetCommittedHeightFromLatestSnapshot.
	GetCommittedHeightFromLatestSnapshotFunc *ISnapshotsGetCommittedHeightFromLatestSnapshotFunc
	// GetCommittedHeightFromSnapshotFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetCommittedHeightFromSnapshot.
	GetCommittedHeightFromSnapshotFunc *ISnapshotsGetCommittedHeightFromSnapshotFunc
	// GetEpochFunc is an instance of a mock function object controlling the
	// behavior of the method GetEpoch.
	GetEpochFunc *ISnapshotsGetEpochFunc
	// GetEpochFromHeightFunc is an instance of a mock function object
	// controlling the behavior of the method GetEpochFromHeight.
	GetEpochFromHeightFunc *ISnapshotsGetEpochFromHeightFunc
	// GetEpochLengthFunc is an instance of a mock function object
	// controlling the behavior of the method GetEpochLength.
	GetEpochLengthFunc *ISnapshotsGetEpochLengthFunc
	// GetLatestSnapshotFunc is an instance of a mock function object
	// controlling the behavior of the method GetLatestSnapshot.
	GetLatestSnapshotFunc *ISnapshotsGetLatestSnapshotFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *ISnapshotsGetMetamorphicContractAddressFunc
	// GetMinimumIntervalBetweenSnapshotsFunc is an instance of a mock
	// function object controlling the behavior of the method
	// GetMinimumIntervalBetweenSnapshots.
	GetMinimumIntervalBetweenSnapshotsFunc *ISnapshotsGetMinimumIntervalBetweenSnapshotsFunc
	// GetSnapshotFunc is an instance of a mock function object controlling
	// the behavior of the method GetSnapshot.
	GetSnapshotFunc *ISnapshotsGetSnapshotFunc
	// GetSnapshotDesperationDelayFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetSnapshotDesperationDelay.
	GetSnapshotDesperationDelayFunc *ISnapshotsGetSnapshotDesperationDelayFunc
	// GetSnapshotDesperationFactorFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetSnapshotDesperationFactor.
	GetSnapshotDesperationFactorFunc *ISnapshotsGetSnapshotDesperationFactorFunc
	// InitializeFunc is an instance of a mock function object controlling
	// the behavior of the method Initialize.
	InitializeFunc *ISnapshotsInitializeFunc
	// IsValidatorElectedToPerformSnapshotFunc is an instance of a mock
	// function object controlling the behavior of the method
	// IsValidatorElectedToPerformSnapshot.
	IsValidatorElectedToPerformSnapshotFunc *ISnapshotsIsValidatorElectedToPerformSnapshotFunc
	// MayValidatorSnapshotFunc is an instance of a mock function object
	// controlling the behavior of the method MayValidatorSnapshot.
	MayValidatorSnapshotFunc *ISnapshotsMayValidatorSnapshotFunc
	// MigrateSnapshotsFunc is an instance of a mock function object
	// controlling the behavior of the method MigrateSnapshots.
	MigrateSnapshotsFunc *ISnapshotsMigrateSnapshotsFunc
	// ParseInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseInitialized.
	ParseInitializedFunc *ISnapshotsParseInitializedFunc
	// ParseSnapshotTakenFunc is an instance of a mock function object
	// controlling the behavior of the method ParseSnapshotTaken.
	ParseSnapshotTakenFunc *ISnapshotsParseSnapshotTakenFunc
	// SetMinimumIntervalBetweenSnapshotsFunc is an instance of a mock
	// function object controlling the behavior of the method
	// SetMinimumIntervalBetweenSnapshots.
	SetMinimumIntervalBetweenSnapshotsFunc *ISnapshotsSetMinimumIntervalBetweenSnapshotsFunc
	// SetSnapshotDesperationDelayFunc is an instance of a mock function
	// object controlling the behavior of the method
	// SetSnapshotDesperationDelay.
	SetSnapshotDesperationDelayFunc *ISnapshotsSetSnapshotDesperationDelayFunc
	// SetSnapshotDesperationFactorFunc is an instance of a mock function
	// object controlling the behavior of the method
	// SetSnapshotDesperationFactor.
	SetSnapshotDesperationFactorFunc *ISnapshotsSetSnapshotDesperationFactorFunc
	// SnapshotFunc is an instance of a mock function object controlling the
	// behavior of the method Snapshot.
	SnapshotFunc *ISnapshotsSnapshotFunc
	// WatchInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchInitialized.
	WatchInitializedFunc *ISnapshotsWatchInitializedFunc
	// WatchSnapshotTakenFunc is an instance of a mock function object
	// controlling the behavior of the method WatchSnapshotTaken.
	WatchSnapshotTakenFunc *ISnapshotsWatchSnapshotTakenFunc
}

MockISnapshots is a mock implementation of the ISnapshots interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockISnapshots

func NewMockISnapshots() *MockISnapshots

NewMockISnapshots creates a new mock of the ISnapshots interface. All methods return zero values for all results, unless overwritten.

func NewMockISnapshotsFrom

func NewMockISnapshotsFrom(i bindings.ISnapshots) *MockISnapshots

NewMockISnapshotsFrom creates a new mock of the MockISnapshots interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockISnapshots

func NewStrictMockISnapshots() *MockISnapshots

NewStrictMockISnapshots creates a new mock of the ISnapshots interface. All methods panic on invocation, unless overwritten.

func (*MockISnapshots) CheckBClaimsSignature added in v0.0.5

func (m *MockISnapshots) CheckBClaimsSignature(v0 *bind.CallOpts, v1 []byte, v2 []byte) (bool, error)

CheckBClaimsSignature delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) FilterInitialized added in v0.0.2

FilterInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) FilterSnapshotTaken

func (m *MockISnapshots) FilterSnapshotTaken(v0 *bind.FilterOpts, v1 []*big.Int, v2 []common.Address) (*bindings.SnapshotsSnapshotTakenIterator, error)

FilterSnapshotTaken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetAliceNetHeightFromLatestSnapshot

func (m *MockISnapshots) GetAliceNetHeightFromLatestSnapshot(v0 *bind.CallOpts) (*big.Int, error)

GetAliceNetHeightFromLatestSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetAliceNetHeightFromSnapshot

func (m *MockISnapshots) GetAliceNetHeightFromSnapshot(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetAliceNetHeightFromSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetBlockClaimsFromLatestSnapshot

func (m *MockISnapshots) GetBlockClaimsFromLatestSnapshot(v0 *bind.CallOpts) (bindings.BClaimsParserLibraryBClaims, error)

GetBlockClaimsFromLatestSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetBlockClaimsFromSnapshot

func (m *MockISnapshots) GetBlockClaimsFromSnapshot(v0 *bind.CallOpts, v1 *big.Int) (bindings.BClaimsParserLibraryBClaims, error)

GetBlockClaimsFromSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetChainId

func (m *MockISnapshots) GetChainId(v0 *bind.CallOpts) (*big.Int, error)

GetChainId delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetChainIdFromLatestSnapshot

func (m *MockISnapshots) GetChainIdFromLatestSnapshot(v0 *bind.CallOpts) (*big.Int, error)

GetChainIdFromLatestSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetChainIdFromSnapshot

func (m *MockISnapshots) GetChainIdFromSnapshot(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetChainIdFromSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetCommittedHeightFromLatestSnapshot

func (m *MockISnapshots) GetCommittedHeightFromLatestSnapshot(v0 *bind.CallOpts) (*big.Int, error)

GetCommittedHeightFromLatestSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetCommittedHeightFromSnapshot

func (m *MockISnapshots) GetCommittedHeightFromSnapshot(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetCommittedHeightFromSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetEpoch

func (m *MockISnapshots) GetEpoch(v0 *bind.CallOpts) (*big.Int, error)

GetEpoch delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetEpochFromHeight

func (m *MockISnapshots) GetEpochFromHeight(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

GetEpochFromHeight delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetEpochLength

func (m *MockISnapshots) GetEpochLength(v0 *bind.CallOpts) (*big.Int, error)

GetEpochLength delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetLatestSnapshot

func (m *MockISnapshots) GetLatestSnapshot(v0 *bind.CallOpts) (bindings.Snapshot, error)

GetLatestSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetMetamorphicContractAddress

func (m *MockISnapshots) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetMinimumIntervalBetweenSnapshots

func (m *MockISnapshots) GetMinimumIntervalBetweenSnapshots(v0 *bind.CallOpts) (*big.Int, error)

GetMinimumIntervalBetweenSnapshots delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetSnapshot

func (m *MockISnapshots) GetSnapshot(v0 *bind.CallOpts, v1 *big.Int) (bindings.Snapshot, error)

GetSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetSnapshotDesperationDelay

func (m *MockISnapshots) GetSnapshotDesperationDelay(v0 *bind.CallOpts) (*big.Int, error)

GetSnapshotDesperationDelay delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) GetSnapshotDesperationFactor

func (m *MockISnapshots) GetSnapshotDesperationFactor(v0 *bind.CallOpts) (*big.Int, error)

GetSnapshotDesperationFactor delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) Initialize

func (m *MockISnapshots) Initialize(v0 *bind.TransactOpts, v1 uint32, v2 uint32) (*types.Transaction, error)

Initialize delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) IsValidatorElectedToPerformSnapshot added in v0.0.5

func (m *MockISnapshots) IsValidatorElectedToPerformSnapshot(v0 *bind.CallOpts, v1 common.Address, v2 *big.Int, v3 [32]byte) (bool, error)

IsValidatorElectedToPerformSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) MayValidatorSnapshot

func (m *MockISnapshots) MayValidatorSnapshot(v0 *bind.CallOpts, v1 *big.Int, v2 *big.Int, v3 *big.Int, v4 [32]byte, v5 *big.Int) (bool, error)

MayValidatorSnapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) MigrateSnapshots

func (m *MockISnapshots) MigrateSnapshots(v0 *bind.TransactOpts, v1 [][]byte, v2 [][]byte) (*types.Transaction, error)

MigrateSnapshots delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) ParseInitialized added in v0.0.2

func (m *MockISnapshots) ParseInitialized(v0 types.Log) (*bindings.SnapshotsInitialized, error)

ParseInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) ParseSnapshotTaken

func (m *MockISnapshots) ParseSnapshotTaken(v0 types.Log) (*bindings.SnapshotsSnapshotTaken, error)

ParseSnapshotTaken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) SetMinimumIntervalBetweenSnapshots

func (m *MockISnapshots) SetMinimumIntervalBetweenSnapshots(v0 *bind.TransactOpts, v1 uint32) (*types.Transaction, error)

SetMinimumIntervalBetweenSnapshots delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) SetSnapshotDesperationDelay

func (m *MockISnapshots) SetSnapshotDesperationDelay(v0 *bind.TransactOpts, v1 uint32) (*types.Transaction, error)

SetSnapshotDesperationDelay delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) SetSnapshotDesperationFactor

func (m *MockISnapshots) SetSnapshotDesperationFactor(v0 *bind.TransactOpts, v1 uint32) (*types.Transaction, error)

SetSnapshotDesperationFactor delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) Snapshot

func (m *MockISnapshots) Snapshot(v0 *bind.TransactOpts, v1 []byte, v2 []byte) (*types.Transaction, error)

Snapshot delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) WatchInitialized added in v0.0.2

func (m *MockISnapshots) WatchInitialized(v0 *bind.WatchOpts, v1 chan<- *bindings.SnapshotsInitialized) (event.Subscription, error)

WatchInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockISnapshots) WatchSnapshotTaken

func (m *MockISnapshots) WatchSnapshotTaken(v0 *bind.WatchOpts, v1 chan<- *bindings.SnapshotsSnapshotTaken, v2 []*big.Int, v3 []common.Address) (event.Subscription, error)

WatchSnapshotTaken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIValidatorPool

type MockIValidatorPool struct {
	// CLAIMPERIODFunc is an instance of a mock function object controlling
	// the behavior of the method CLAIMPERIOD.
	CLAIMPERIODFunc *IValidatorPoolCLAIMPERIODFunc
	// ClaimExitingNFTPositionFunc is an instance of a mock function object
	// controlling the behavior of the method ClaimExitingNFTPosition.
	ClaimExitingNFTPositionFunc *IValidatorPoolClaimExitingNFTPositionFunc
	// CollectProfitsFunc is an instance of a mock function object
	// controlling the behavior of the method CollectProfits.
	CollectProfitsFunc *IValidatorPoolCollectProfitsFunc
	// CompleteETHDKGFunc is an instance of a mock function object
	// controlling the behavior of the method CompleteETHDKG.
	CompleteETHDKGFunc *IValidatorPoolCompleteETHDKGFunc
	// FilterInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterInitialized.
	FilterInitializedFunc *IValidatorPoolFilterInitializedFunc
	// FilterMaintenanceScheduledFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterMaintenanceScheduled.
	FilterMaintenanceScheduledFunc *IValidatorPoolFilterMaintenanceScheduledFunc
	// FilterValidatorJoinedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterValidatorJoined.
	FilterValidatorJoinedFunc *IValidatorPoolFilterValidatorJoinedFunc
	// FilterValidatorLeftFunc is an instance of a mock function object
	// controlling the behavior of the method FilterValidatorLeft.
	FilterValidatorLeftFunc *IValidatorPoolFilterValidatorLeftFunc
	// FilterValidatorMajorSlashedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterValidatorMajorSlashed.
	FilterValidatorMajorSlashedFunc *IValidatorPoolFilterValidatorMajorSlashedFunc
	// FilterValidatorMinorSlashedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// FilterValidatorMinorSlashed.
	FilterValidatorMinorSlashedFunc *IValidatorPoolFilterValidatorMinorSlashedFunc
	// GetDisputerRewardFunc is an instance of a mock function object
	// controlling the behavior of the method GetDisputerReward.
	GetDisputerRewardFunc *IValidatorPoolGetDisputerRewardFunc
	// GetLocationFunc is an instance of a mock function object controlling
	// the behavior of the method GetLocation.
	GetLocationFunc *IValidatorPoolGetLocationFunc
	// GetLocationsFunc is an instance of a mock function object controlling
	// the behavior of the method GetLocations.
	GetLocationsFunc *IValidatorPoolGetLocationsFunc
	// GetMaxIntervalWithoutSnapshotsFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMaxIntervalWithoutSnapshots.
	GetMaxIntervalWithoutSnapshotsFunc *IValidatorPoolGetMaxIntervalWithoutSnapshotsFunc
	// GetMaxNumValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method GetMaxNumValidators.
	GetMaxNumValidatorsFunc *IValidatorPoolGetMaxNumValidatorsFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IValidatorPoolGetMetamorphicContractAddressFunc
	// GetStakeAmountFunc is an instance of a mock function object
	// controlling the behavior of the method GetStakeAmount.
	GetStakeAmountFunc *IValidatorPoolGetStakeAmountFunc
	// GetValidatorFunc is an instance of a mock function object controlling
	// the behavior of the method GetValidator.
	GetValidatorFunc *IValidatorPoolGetValidatorFunc
	// GetValidatorDataFunc is an instance of a mock function object
	// controlling the behavior of the method GetValidatorData.
	GetValidatorDataFunc *IValidatorPoolGetValidatorDataFunc
	// GetValidatorsAddressesFunc is an instance of a mock function object
	// controlling the behavior of the method GetValidatorsAddresses.
	GetValidatorsAddressesFunc *IValidatorPoolGetValidatorsAddressesFunc
	// GetValidatorsCountFunc is an instance of a mock function object
	// controlling the behavior of the method GetValidatorsCount.
	GetValidatorsCountFunc *IValidatorPoolGetValidatorsCountFunc
	// InitializeFunc is an instance of a mock function object controlling
	// the behavior of the method Initialize.
	InitializeFunc *IValidatorPoolInitializeFunc
	// InitializeETHDKGFunc is an instance of a mock function object
	// controlling the behavior of the method InitializeETHDKG.
	InitializeETHDKGFunc *IValidatorPoolInitializeETHDKGFunc
	// IsAccusableFunc is an instance of a mock function object controlling
	// the behavior of the method IsAccusable.
	IsAccusableFunc *IValidatorPoolIsAccusableFunc
	// IsConsensusRunningFunc is an instance of a mock function object
	// controlling the behavior of the method IsConsensusRunning.
	IsConsensusRunningFunc *IValidatorPoolIsConsensusRunningFunc
	// IsInExitingQueueFunc is an instance of a mock function object
	// controlling the behavior of the method IsInExitingQueue.
	IsInExitingQueueFunc *IValidatorPoolIsInExitingQueueFunc
	// IsMaintenanceScheduledFunc is an instance of a mock function object
	// controlling the behavior of the method IsMaintenanceScheduled.
	IsMaintenanceScheduledFunc *IValidatorPoolIsMaintenanceScheduledFunc
	// IsValidatorFunc is an instance of a mock function object controlling
	// the behavior of the method IsValidator.
	IsValidatorFunc *IValidatorPoolIsValidatorFunc
	// MajorSlashFunc is an instance of a mock function object controlling
	// the behavior of the method MajorSlash.
	MajorSlashFunc *IValidatorPoolMajorSlashFunc
	// MinorSlashFunc is an instance of a mock function object controlling
	// the behavior of the method MinorSlash.
	MinorSlashFunc *IValidatorPoolMinorSlashFunc
	// OnERC721ReceivedFunc is an instance of a mock function object
	// controlling the behavior of the method OnERC721Received.
	OnERC721ReceivedFunc *IValidatorPoolOnERC721ReceivedFunc
	// POSITIONLOCKPERIODFunc is an instance of a mock function object
	// controlling the behavior of the method POSITIONLOCKPERIOD.
	POSITIONLOCKPERIODFunc *IValidatorPoolPOSITIONLOCKPERIODFunc
	// ParseInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseInitialized.
	ParseInitializedFunc *IValidatorPoolParseInitializedFunc
	// ParseMaintenanceScheduledFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseMaintenanceScheduled.
	ParseMaintenanceScheduledFunc *IValidatorPoolParseMaintenanceScheduledFunc
	// ParseValidatorJoinedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseValidatorJoined.
	ParseValidatorJoinedFunc *IValidatorPoolParseValidatorJoinedFunc
	// ParseValidatorLeftFunc is an instance of a mock function object
	// controlling the behavior of the method ParseValidatorLeft.
	ParseValidatorLeftFunc *IValidatorPoolParseValidatorLeftFunc
	// ParseValidatorMajorSlashedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseValidatorMajorSlashed.
	ParseValidatorMajorSlashedFunc *IValidatorPoolParseValidatorMajorSlashedFunc
	// ParseValidatorMinorSlashedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// ParseValidatorMinorSlashed.
	ParseValidatorMinorSlashedFunc *IValidatorPoolParseValidatorMinorSlashedFunc
	// PauseConsensusFunc is an instance of a mock function object
	// controlling the behavior of the method PauseConsensus.
	PauseConsensusFunc *IValidatorPoolPauseConsensusFunc
	// PauseConsensusOnArbitraryHeightFunc is an instance of a mock function
	// object controlling the behavior of the method
	// PauseConsensusOnArbitraryHeight.
	PauseConsensusOnArbitraryHeightFunc *IValidatorPoolPauseConsensusOnArbitraryHeightFunc
	// ReceiveFunc is an instance of a mock function object controlling the
	// behavior of the method Receive.
	ReceiveFunc *IValidatorPoolReceiveFunc
	// RegisterValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method RegisterValidators.
	RegisterValidatorsFunc *IValidatorPoolRegisterValidatorsFunc
	// ScheduleMaintenanceFunc is an instance of a mock function object
	// controlling the behavior of the method ScheduleMaintenance.
	ScheduleMaintenanceFunc *IValidatorPoolScheduleMaintenanceFunc
	// SetDisputerRewardFunc is an instance of a mock function object
	// controlling the behavior of the method SetDisputerReward.
	SetDisputerRewardFunc *IValidatorPoolSetDisputerRewardFunc
	// SetLocationFunc is an instance of a mock function object controlling
	// the behavior of the method SetLocation.
	SetLocationFunc *IValidatorPoolSetLocationFunc
	// SetMaxIntervalWithoutSnapshotsFunc is an instance of a mock function
	// object controlling the behavior of the method
	// SetMaxIntervalWithoutSnapshots.
	SetMaxIntervalWithoutSnapshotsFunc *IValidatorPoolSetMaxIntervalWithoutSnapshotsFunc
	// SetMaxNumValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method SetMaxNumValidators.
	SetMaxNumValidatorsFunc *IValidatorPoolSetMaxNumValidatorsFunc
	// SetStakeAmountFunc is an instance of a mock function object
	// controlling the behavior of the method SetStakeAmount.
	SetStakeAmountFunc *IValidatorPoolSetStakeAmountFunc
	// SkimExcessEthFunc is an instance of a mock function object
	// controlling the behavior of the method SkimExcessEth.
	SkimExcessEthFunc *IValidatorPoolSkimExcessEthFunc
	// SkimExcessTokenFunc is an instance of a mock function object
	// controlling the behavior of the method SkimExcessToken.
	SkimExcessTokenFunc *IValidatorPoolSkimExcessTokenFunc
	// TryGetTokenIDFunc is an instance of a mock function object
	// controlling the behavior of the method TryGetTokenID.
	TryGetTokenIDFunc *IValidatorPoolTryGetTokenIDFunc
	// UnregisterAllValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method UnregisterAllValidators.
	UnregisterAllValidatorsFunc *IValidatorPoolUnregisterAllValidatorsFunc
	// UnregisterValidatorsFunc is an instance of a mock function object
	// controlling the behavior of the method UnregisterValidators.
	UnregisterValidatorsFunc *IValidatorPoolUnregisterValidatorsFunc
	// WatchInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchInitialized.
	WatchInitializedFunc *IValidatorPoolWatchInitializedFunc
	// WatchMaintenanceScheduledFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchMaintenanceScheduled.
	WatchMaintenanceScheduledFunc *IValidatorPoolWatchMaintenanceScheduledFunc
	// WatchValidatorJoinedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchValidatorJoined.
	WatchValidatorJoinedFunc *IValidatorPoolWatchValidatorJoinedFunc
	// WatchValidatorLeftFunc is an instance of a mock function object
	// controlling the behavior of the method WatchValidatorLeft.
	WatchValidatorLeftFunc *IValidatorPoolWatchValidatorLeftFunc
	// WatchValidatorMajorSlashedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchValidatorMajorSlashed.
	WatchValidatorMajorSlashedFunc *IValidatorPoolWatchValidatorMajorSlashedFunc
	// WatchValidatorMinorSlashedFunc is an instance of a mock function
	// object controlling the behavior of the method
	// WatchValidatorMinorSlashed.
	WatchValidatorMinorSlashedFunc *IValidatorPoolWatchValidatorMinorSlashedFunc
}

MockIValidatorPool is a mock implementation of the IValidatorPool interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIValidatorPool

func NewMockIValidatorPool() *MockIValidatorPool

NewMockIValidatorPool creates a new mock of the IValidatorPool interface. All methods return zero values for all results, unless overwritten.

func NewMockIValidatorPoolFrom

func NewMockIValidatorPoolFrom(i bindings.IValidatorPool) *MockIValidatorPool

NewMockIValidatorPoolFrom creates a new mock of the MockIValidatorPool interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIValidatorPool

func NewStrictMockIValidatorPool() *MockIValidatorPool

NewStrictMockIValidatorPool creates a new mock of the IValidatorPool interface. All methods panic on invocation, unless overwritten.

func (*MockIValidatorPool) CLAIMPERIOD

func (m *MockIValidatorPool) CLAIMPERIOD(v0 *bind.CallOpts) (*big.Int, error)

CLAIMPERIOD delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ClaimExitingNFTPosition

func (m *MockIValidatorPool) ClaimExitingNFTPosition(v0 *bind.TransactOpts) (*types.Transaction, error)

ClaimExitingNFTPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) CollectProfits

func (m *MockIValidatorPool) CollectProfits(v0 *bind.TransactOpts) (*types.Transaction, error)

CollectProfits delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) CompleteETHDKG

func (m *MockIValidatorPool) CompleteETHDKG(v0 *bind.TransactOpts) (*types.Transaction, error)

CompleteETHDKG delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) FilterInitialized added in v0.0.2

FilterInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) FilterMaintenanceScheduled

FilterMaintenanceScheduled delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) FilterValidatorJoined

FilterValidatorJoined delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) FilterValidatorLeft

FilterValidatorLeft delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) FilterValidatorMajorSlashed

FilterValidatorMajorSlashed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) FilterValidatorMinorSlashed

FilterValidatorMinorSlashed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetDisputerReward

func (m *MockIValidatorPool) GetDisputerReward(v0 *bind.CallOpts) (*big.Int, error)

GetDisputerReward delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetLocation

func (m *MockIValidatorPool) GetLocation(v0 *bind.CallOpts, v1 common.Address) (string, error)

GetLocation delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetLocations

func (m *MockIValidatorPool) GetLocations(v0 *bind.CallOpts, v1 []common.Address) ([]string, error)

GetLocations delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetMaxIntervalWithoutSnapshots added in v0.0.5

func (m *MockIValidatorPool) GetMaxIntervalWithoutSnapshots(v0 *bind.CallOpts) (*big.Int, error)

GetMaxIntervalWithoutSnapshots delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetMaxNumValidators

func (m *MockIValidatorPool) GetMaxNumValidators(v0 *bind.CallOpts) (*big.Int, error)

GetMaxNumValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetMetamorphicContractAddress

func (m *MockIValidatorPool) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetStakeAmount

func (m *MockIValidatorPool) GetStakeAmount(v0 *bind.CallOpts) (*big.Int, error)

GetStakeAmount delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetValidator

func (m *MockIValidatorPool) GetValidator(v0 *bind.CallOpts, v1 *big.Int) (common.Address, error)

GetValidator delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetValidatorData

func (m *MockIValidatorPool) GetValidatorData(v0 *bind.CallOpts, v1 *big.Int) (bindings.ValidatorData, error)

GetValidatorData delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetValidatorsAddresses

func (m *MockIValidatorPool) GetValidatorsAddresses(v0 *bind.CallOpts) ([]common.Address, error)

GetValidatorsAddresses delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) GetValidatorsCount

func (m *MockIValidatorPool) GetValidatorsCount(v0 *bind.CallOpts) (*big.Int, error)

GetValidatorsCount delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) Initialize

func (m *MockIValidatorPool) Initialize(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int, v3 *big.Int, v4 *big.Int) (*types.Transaction, error)

Initialize delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) InitializeETHDKG

func (m *MockIValidatorPool) InitializeETHDKG(v0 *bind.TransactOpts) (*types.Transaction, error)

InitializeETHDKG delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) IsAccusable

func (m *MockIValidatorPool) IsAccusable(v0 *bind.CallOpts, v1 common.Address) (bool, error)

IsAccusable delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) IsConsensusRunning

func (m *MockIValidatorPool) IsConsensusRunning(v0 *bind.CallOpts) (bool, error)

IsConsensusRunning delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) IsInExitingQueue

func (m *MockIValidatorPool) IsInExitingQueue(v0 *bind.CallOpts, v1 common.Address) (bool, error)

IsInExitingQueue delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) IsMaintenanceScheduled

func (m *MockIValidatorPool) IsMaintenanceScheduled(v0 *bind.CallOpts) (bool, error)

IsMaintenanceScheduled delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) IsValidator

func (m *MockIValidatorPool) IsValidator(v0 *bind.CallOpts, v1 common.Address) (bool, error)

IsValidator delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) MajorSlash

MajorSlash delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) MinorSlash

MinorSlash delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) OnERC721Received

func (m *MockIValidatorPool) OnERC721Received(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int, v4 []byte) (*types.Transaction, error)

OnERC721Received delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) POSITIONLOCKPERIOD

func (m *MockIValidatorPool) POSITIONLOCKPERIOD(v0 *bind.CallOpts) (*big.Int, error)

POSITIONLOCKPERIOD delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ParseInitialized added in v0.0.2

func (m *MockIValidatorPool) ParseInitialized(v0 types.Log) (*bindings.ValidatorPoolInitialized, error)

ParseInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ParseMaintenanceScheduled

func (m *MockIValidatorPool) ParseMaintenanceScheduled(v0 types.Log) (*bindings.ValidatorPoolMaintenanceScheduled, error)

ParseMaintenanceScheduled delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ParseValidatorJoined

func (m *MockIValidatorPool) ParseValidatorJoined(v0 types.Log) (*bindings.ValidatorPoolValidatorJoined, error)

ParseValidatorJoined delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ParseValidatorLeft

func (m *MockIValidatorPool) ParseValidatorLeft(v0 types.Log) (*bindings.ValidatorPoolValidatorLeft, error)

ParseValidatorLeft delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ParseValidatorMajorSlashed

func (m *MockIValidatorPool) ParseValidatorMajorSlashed(v0 types.Log) (*bindings.ValidatorPoolValidatorMajorSlashed, error)

ParseValidatorMajorSlashed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ParseValidatorMinorSlashed

func (m *MockIValidatorPool) ParseValidatorMinorSlashed(v0 types.Log) (*bindings.ValidatorPoolValidatorMinorSlashed, error)

ParseValidatorMinorSlashed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) PauseConsensus

func (m *MockIValidatorPool) PauseConsensus(v0 *bind.TransactOpts) (*types.Transaction, error)

PauseConsensus delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) PauseConsensusOnArbitraryHeight

func (m *MockIValidatorPool) PauseConsensusOnArbitraryHeight(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

PauseConsensusOnArbitraryHeight delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) Receive

Receive delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) RegisterValidators

func (m *MockIValidatorPool) RegisterValidators(v0 *bind.TransactOpts, v1 []common.Address, v2 []*big.Int) (*types.Transaction, error)

RegisterValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) ScheduleMaintenance

func (m *MockIValidatorPool) ScheduleMaintenance(v0 *bind.TransactOpts) (*types.Transaction, error)

ScheduleMaintenance delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SetDisputerReward

func (m *MockIValidatorPool) SetDisputerReward(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

SetDisputerReward delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SetLocation

func (m *MockIValidatorPool) SetLocation(v0 *bind.TransactOpts, v1 string) (*types.Transaction, error)

SetLocation delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SetMaxIntervalWithoutSnapshots added in v0.0.5

func (m *MockIValidatorPool) SetMaxIntervalWithoutSnapshots(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

SetMaxIntervalWithoutSnapshots delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SetMaxNumValidators

func (m *MockIValidatorPool) SetMaxNumValidators(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

SetMaxNumValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SetStakeAmount

func (m *MockIValidatorPool) SetStakeAmount(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

SetStakeAmount delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SkimExcessEth

func (m *MockIValidatorPool) SkimExcessEth(v0 *bind.TransactOpts, v1 common.Address) (*types.Transaction, error)

SkimExcessEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) SkimExcessToken

func (m *MockIValidatorPool) SkimExcessToken(v0 *bind.TransactOpts, v1 common.Address) (*types.Transaction, error)

SkimExcessToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) TryGetTokenID

func (m *MockIValidatorPool) TryGetTokenID(v0 *bind.CallOpts, v1 common.Address) (bool, common.Address, *big.Int, error)

TryGetTokenID delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) UnregisterAllValidators

func (m *MockIValidatorPool) UnregisterAllValidators(v0 *bind.TransactOpts) (*types.Transaction, error)

UnregisterAllValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) UnregisterValidators

func (m *MockIValidatorPool) UnregisterValidators(v0 *bind.TransactOpts, v1 []common.Address) (*types.Transaction, error)

UnregisterValidators delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) WatchInitialized added in v0.0.2

WatchInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) WatchMaintenanceScheduled

func (m *MockIValidatorPool) WatchMaintenanceScheduled(v0 *bind.WatchOpts, v1 chan<- *bindings.ValidatorPoolMaintenanceScheduled) (event.Subscription, error)

WatchMaintenanceScheduled delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) WatchValidatorJoined

func (m *MockIValidatorPool) WatchValidatorJoined(v0 *bind.WatchOpts, v1 chan<- *bindings.ValidatorPoolValidatorJoined, v2 []common.Address) (event.Subscription, error)

WatchValidatorJoined delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) WatchValidatorLeft

WatchValidatorLeft delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) WatchValidatorMajorSlashed

func (m *MockIValidatorPool) WatchValidatorMajorSlashed(v0 *bind.WatchOpts, v1 chan<- *bindings.ValidatorPoolValidatorMajorSlashed, v2 []common.Address) (event.Subscription, error)

WatchValidatorMajorSlashed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorPool) WatchValidatorMinorSlashed

func (m *MockIValidatorPool) WatchValidatorMinorSlashed(v0 *bind.WatchOpts, v1 chan<- *bindings.ValidatorPoolValidatorMinorSlashed, v2 []common.Address) (event.Subscription, error)

WatchValidatorMinorSlashed delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockIValidatorStaking

type MockIValidatorStaking struct {
	// ApproveFunc is an instance of a mock function object controlling the
	// behavior of the method Approve.
	ApproveFunc *IValidatorStakingApproveFunc
	// BalanceOfFunc is an instance of a mock function object controlling
	// the behavior of the method BalanceOf.
	BalanceOfFunc *IValidatorStakingBalanceOfFunc
	// BurnFunc is an instance of a mock function object controlling the
	// behavior of the method Burn.
	BurnFunc *IValidatorStakingBurnFunc
	// BurnToFunc is an instance of a mock function object controlling the
	// behavior of the method BurnTo.
	BurnToFunc *IValidatorStakingBurnToFunc
	// CircuitBreakerStateFunc is an instance of a mock function object
	// controlling the behavior of the method CircuitBreakerState.
	CircuitBreakerStateFunc *IValidatorStakingCircuitBreakerStateFunc
	// CollectAllProfitsFunc is an instance of a mock function object
	// controlling the behavior of the method CollectAllProfits.
	CollectAllProfitsFunc *IValidatorStakingCollectAllProfitsFunc
	// CollectAllProfitsToFunc is an instance of a mock function object
	// controlling the behavior of the method CollectAllProfitsTo.
	CollectAllProfitsToFunc *IValidatorStakingCollectAllProfitsToFunc
	// CollectEthFunc is an instance of a mock function object controlling
	// the behavior of the method CollectEth.
	CollectEthFunc *IValidatorStakingCollectEthFunc
	// CollectEthToFunc is an instance of a mock function object controlling
	// the behavior of the method CollectEthTo.
	CollectEthToFunc *IValidatorStakingCollectEthToFunc
	// CollectTokenFunc is an instance of a mock function object controlling
	// the behavior of the method CollectToken.
	CollectTokenFunc *IValidatorStakingCollectTokenFunc
	// CollectTokenToFunc is an instance of a mock function object
	// controlling the behavior of the method CollectTokenTo.
	CollectTokenToFunc *IValidatorStakingCollectTokenToFunc
	// DepositEthFunc is an instance of a mock function object controlling
	// the behavior of the method DepositEth.
	DepositEthFunc *IValidatorStakingDepositEthFunc
	// DepositTokenFunc is an instance of a mock function object controlling
	// the behavior of the method DepositToken.
	DepositTokenFunc *IValidatorStakingDepositTokenFunc
	// EstimateAllProfitsFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateAllProfits.
	EstimateAllProfitsFunc *IValidatorStakingEstimateAllProfitsFunc
	// EstimateEthCollectionFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateEthCollection.
	EstimateEthCollectionFunc *IValidatorStakingEstimateEthCollectionFunc
	// EstimateExcessEthFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateExcessEth.
	EstimateExcessEthFunc *IValidatorStakingEstimateExcessEthFunc
	// EstimateExcessTokenFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateExcessToken.
	EstimateExcessTokenFunc *IValidatorStakingEstimateExcessTokenFunc
	// EstimateTokenCollectionFunc is an instance of a mock function object
	// controlling the behavior of the method EstimateTokenCollection.
	EstimateTokenCollectionFunc *IValidatorStakingEstimateTokenCollectionFunc
	// FilterApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method FilterApproval.
	FilterApprovalFunc *IValidatorStakingFilterApprovalFunc
	// FilterApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method FilterApprovalForAll.
	FilterApprovalForAllFunc *IValidatorStakingFilterApprovalForAllFunc
	// FilterInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method FilterInitialized.
	FilterInitializedFunc *IValidatorStakingFilterInitializedFunc
	// FilterTransferFunc is an instance of a mock function object
	// controlling the behavior of the method FilterTransfer.
	FilterTransferFunc *IValidatorStakingFilterTransferFunc
	// GetAccumulatorScaleFactorFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetAccumulatorScaleFactor.
	GetAccumulatorScaleFactorFunc *IValidatorStakingGetAccumulatorScaleFactorFunc
	// GetApprovedFunc is an instance of a mock function object controlling
	// the behavior of the method GetApproved.
	GetApprovedFunc *IValidatorStakingGetApprovedFunc
	// GetEthAccumulatorFunc is an instance of a mock function object
	// controlling the behavior of the method GetEthAccumulator.
	GetEthAccumulatorFunc *IValidatorStakingGetEthAccumulatorFunc
	// GetLatestMintedPositionIDFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetLatestMintedPositionID.
	GetLatestMintedPositionIDFunc *IValidatorStakingGetLatestMintedPositionIDFunc
	// GetMaxGovernanceLockFunc is an instance of a mock function object
	// controlling the behavior of the method GetMaxGovernanceLock.
	GetMaxGovernanceLockFunc *IValidatorStakingGetMaxGovernanceLockFunc
	// GetMaxMintLockFunc is an instance of a mock function object
	// controlling the behavior of the method GetMaxMintLock.
	GetMaxMintLockFunc *IValidatorStakingGetMaxMintLockFunc
	// GetMetamorphicContractAddressFunc is an instance of a mock function
	// object controlling the behavior of the method
	// GetMetamorphicContractAddress.
	GetMetamorphicContractAddressFunc *IValidatorStakingGetMetamorphicContractAddressFunc
	// GetPositionFunc is an instance of a mock function object controlling
	// the behavior of the method GetPosition.
	GetPositionFunc *IValidatorStakingGetPositionFunc
	// GetTokenAccumulatorFunc is an instance of a mock function object
	// controlling the behavior of the method GetTokenAccumulator.
	GetTokenAccumulatorFunc *IValidatorStakingGetTokenAccumulatorFunc
	// GetTotalReserveALCAFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalReserveALCA.
	GetTotalReserveALCAFunc *IValidatorStakingGetTotalReserveALCAFunc
	// GetTotalReserveEthFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalReserveEth.
	GetTotalReserveEthFunc *IValidatorStakingGetTotalReserveEthFunc
	// GetTotalSharesFunc is an instance of a mock function object
	// controlling the behavior of the method GetTotalShares.
	GetTotalSharesFunc *IValidatorStakingGetTotalSharesFunc
	// InitializeFunc is an instance of a mock function object controlling
	// the behavior of the method Initialize.
	InitializeFunc *IValidatorStakingInitializeFunc
	// IsApprovedForAllFunc is an instance of a mock function object
	// controlling the behavior of the method IsApprovedForAll.
	IsApprovedForAllFunc *IValidatorStakingIsApprovedForAllFunc
	// LockOwnPositionFunc is an instance of a mock function object
	// controlling the behavior of the method LockOwnPosition.
	LockOwnPositionFunc *IValidatorStakingLockOwnPositionFunc
	// LockPositionFunc is an instance of a mock function object controlling
	// the behavior of the method LockPosition.
	LockPositionFunc *IValidatorStakingLockPositionFunc
	// LockWithdrawFunc is an instance of a mock function object controlling
	// the behavior of the method LockWithdraw.
	LockWithdrawFunc *IValidatorStakingLockWithdrawFunc
	// MintFunc is an instance of a mock function object controlling the
	// behavior of the method Mint.
	MintFunc *IValidatorStakingMintFunc
	// MintToFunc is an instance of a mock function object controlling the
	// behavior of the method MintTo.
	MintToFunc *IValidatorStakingMintToFunc
	// NameFunc is an instance of a mock function object controlling the
	// behavior of the method Name.
	NameFunc *IValidatorStakingNameFunc
	// OwnerOfFunc is an instance of a mock function object controlling the
	// behavior of the method OwnerOf.
	OwnerOfFunc *IValidatorStakingOwnerOfFunc
	// ParseApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method ParseApproval.
	ParseApprovalFunc *IValidatorStakingParseApprovalFunc
	// ParseApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method ParseApprovalForAll.
	ParseApprovalForAllFunc *IValidatorStakingParseApprovalForAllFunc
	// ParseInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method ParseInitialized.
	ParseInitializedFunc *IValidatorStakingParseInitializedFunc
	// ParseTransferFunc is an instance of a mock function object
	// controlling the behavior of the method ParseTransfer.
	ParseTransferFunc *IValidatorStakingParseTransferFunc
	// SafeTransferFromFunc is an instance of a mock function object
	// controlling the behavior of the method SafeTransferFrom.
	SafeTransferFromFunc *IValidatorStakingSafeTransferFromFunc
	// SafeTransferFrom0Func is an instance of a mock function object
	// controlling the behavior of the method SafeTransferFrom0.
	SafeTransferFrom0Func *IValidatorStakingSafeTransferFrom0Func
	// SetApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method SetApprovalForAll.
	SetApprovalForAllFunc *IValidatorStakingSetApprovalForAllFunc
	// SkimExcessEthFunc is an instance of a mock function object
	// controlling the behavior of the method SkimExcessEth.
	SkimExcessEthFunc *IValidatorStakingSkimExcessEthFunc
	// SkimExcessTokenFunc is an instance of a mock function object
	// controlling the behavior of the method SkimExcessToken.
	SkimExcessTokenFunc *IValidatorStakingSkimExcessTokenFunc
	// SupportsInterfaceFunc is an instance of a mock function object
	// controlling the behavior of the method SupportsInterface.
	SupportsInterfaceFunc *IValidatorStakingSupportsInterfaceFunc
	// SymbolFunc is an instance of a mock function object controlling the
	// behavior of the method Symbol.
	SymbolFunc *IValidatorStakingSymbolFunc
	// TokenByIndexFunc is an instance of a mock function object controlling
	// the behavior of the method TokenByIndex.
	TokenByIndexFunc *IValidatorStakingTokenByIndexFunc
	// TokenOfOwnerByIndexFunc is an instance of a mock function object
	// controlling the behavior of the method TokenOfOwnerByIndex.
	TokenOfOwnerByIndexFunc *IValidatorStakingTokenOfOwnerByIndexFunc
	// TokenURIFunc is an instance of a mock function object controlling the
	// behavior of the method TokenURI.
	TokenURIFunc *IValidatorStakingTokenURIFunc
	// TotalSupplyFunc is an instance of a mock function object controlling
	// the behavior of the method TotalSupply.
	TotalSupplyFunc *IValidatorStakingTotalSupplyFunc
	// TransferFromFunc is an instance of a mock function object controlling
	// the behavior of the method TransferFrom.
	TransferFromFunc *IValidatorStakingTransferFromFunc
	// TripCBFunc is an instance of a mock function object controlling the
	// behavior of the method TripCB.
	TripCBFunc *IValidatorStakingTripCBFunc
	// WatchApprovalFunc is an instance of a mock function object
	// controlling the behavior of the method WatchApproval.
	WatchApprovalFunc *IValidatorStakingWatchApprovalFunc
	// WatchApprovalForAllFunc is an instance of a mock function object
	// controlling the behavior of the method WatchApprovalForAll.
	WatchApprovalForAllFunc *IValidatorStakingWatchApprovalForAllFunc
	// WatchInitializedFunc is an instance of a mock function object
	// controlling the behavior of the method WatchInitialized.
	WatchInitializedFunc *IValidatorStakingWatchInitializedFunc
	// WatchTransferFunc is an instance of a mock function object
	// controlling the behavior of the method WatchTransfer.
	WatchTransferFunc *IValidatorStakingWatchTransferFunc
}

MockIValidatorStaking is a mock implementation of the IValidatorStaking interface (from the package github.com/alicenet/alicenet/bridge/bindings) used for unit testing.

func NewMockIValidatorStaking

func NewMockIValidatorStaking() *MockIValidatorStaking

NewMockIValidatorStaking creates a new mock of the IValidatorStaking interface. All methods return zero values for all results, unless overwritten.

func NewMockIValidatorStakingFrom

func NewMockIValidatorStakingFrom(i bindings.IValidatorStaking) *MockIValidatorStaking

NewMockIValidatorStakingFrom creates a new mock of the MockIValidatorStaking interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockIValidatorStaking

func NewStrictMockIValidatorStaking() *MockIValidatorStaking

NewStrictMockIValidatorStaking creates a new mock of the IValidatorStaking interface. All methods panic on invocation, unless overwritten.

func (*MockIValidatorStaking) Approve

Approve delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) BalanceOf

func (m *MockIValidatorStaking) BalanceOf(v0 *bind.CallOpts, v1 common.Address) (*big.Int, error)

BalanceOf delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) Burn

Burn delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) BurnTo

BurnTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CircuitBreakerState

func (m *MockIValidatorStaking) CircuitBreakerState(v0 *bind.CallOpts) (bool, error)

CircuitBreakerState delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CollectAllProfits added in v0.0.5

func (m *MockIValidatorStaking) CollectAllProfits(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

CollectAllProfits delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CollectAllProfitsTo added in v0.0.5

func (m *MockIValidatorStaking) CollectAllProfitsTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

CollectAllProfitsTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CollectEth

func (m *MockIValidatorStaking) CollectEth(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

CollectEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CollectEthTo

func (m *MockIValidatorStaking) CollectEthTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

CollectEthTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CollectToken

func (m *MockIValidatorStaking) CollectToken(v0 *bind.TransactOpts, v1 *big.Int) (*types.Transaction, error)

CollectToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) CollectTokenTo

func (m *MockIValidatorStaking) CollectTokenTo(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int) (*types.Transaction, error)

CollectTokenTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) DepositEth

func (m *MockIValidatorStaking) DepositEth(v0 *bind.TransactOpts, v1 uint8) (*types.Transaction, error)

DepositEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) DepositToken

func (m *MockIValidatorStaking) DepositToken(v0 *bind.TransactOpts, v1 uint8, v2 *big.Int) (*types.Transaction, error)

DepositToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) EstimateAllProfits added in v0.0.8

func (m *MockIValidatorStaking) EstimateAllProfits(v0 *bind.CallOpts, v1 *big.Int) (struct {
	PayoutEth   *big.Int
	PayoutToken *big.Int
}, error)

EstimateAllProfits delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) EstimateEthCollection

func (m *MockIValidatorStaking) EstimateEthCollection(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

EstimateEthCollection delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) EstimateExcessEth

func (m *MockIValidatorStaking) EstimateExcessEth(v0 *bind.CallOpts) (*big.Int, error)

EstimateExcessEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) EstimateExcessToken

func (m *MockIValidatorStaking) EstimateExcessToken(v0 *bind.CallOpts) (*big.Int, error)

EstimateExcessToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) EstimateTokenCollection

func (m *MockIValidatorStaking) EstimateTokenCollection(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

EstimateTokenCollection delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) FilterApproval

FilterApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) FilterApprovalForAll

FilterApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) FilterInitialized added in v0.0.2

FilterInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) FilterTransfer

FilterTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetAccumulatorScaleFactor

func (m *MockIValidatorStaking) GetAccumulatorScaleFactor(v0 *bind.CallOpts) (*big.Int, error)

GetAccumulatorScaleFactor delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetApproved

func (m *MockIValidatorStaking) GetApproved(v0 *bind.CallOpts, v1 *big.Int) (common.Address, error)

GetApproved delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetEthAccumulator

func (m *MockIValidatorStaking) GetEthAccumulator(v0 *bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error)

GetEthAccumulator delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetLatestMintedPositionID added in v0.0.5

func (m *MockIValidatorStaking) GetLatestMintedPositionID(v0 *bind.CallOpts) (*big.Int, error)

GetLatestMintedPositionID delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetMaxGovernanceLock added in v0.0.4

func (m *MockIValidatorStaking) GetMaxGovernanceLock(v0 *bind.CallOpts) (*big.Int, error)

GetMaxGovernanceLock delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetMaxMintLock

func (m *MockIValidatorStaking) GetMaxMintLock(v0 *bind.CallOpts) (*big.Int, error)

GetMaxMintLock delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetMetamorphicContractAddress

func (m *MockIValidatorStaking) GetMetamorphicContractAddress(v0 *bind.CallOpts, v1 [32]byte, v2 common.Address) (common.Address, error)

GetMetamorphicContractAddress delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetPosition

func (m *MockIValidatorStaking) GetPosition(v0 *bind.CallOpts, v1 *big.Int) (struct {
	Shares            *big.Int
	FreeAfter         *big.Int
	WithdrawFreeAfter *big.Int
	AccumulatorEth    *big.Int
	AccumulatorToken  *big.Int
}, error)

GetPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetTokenAccumulator

func (m *MockIValidatorStaking) GetTokenAccumulator(v0 *bind.CallOpts) (struct {
	Accumulator *big.Int
	Slush       *big.Int
}, error)

GetTokenAccumulator delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetTotalReserveALCA added in v0.0.8

func (m *MockIValidatorStaking) GetTotalReserveALCA(v0 *bind.CallOpts) (*big.Int, error)

GetTotalReserveALCA delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetTotalReserveEth

func (m *MockIValidatorStaking) GetTotalReserveEth(v0 *bind.CallOpts) (*big.Int, error)

GetTotalReserveEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) GetTotalShares

func (m *MockIValidatorStaking) GetTotalShares(v0 *bind.CallOpts) (*big.Int, error)

GetTotalShares delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) Initialize

Initialize delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) IsApprovedForAll

func (m *MockIValidatorStaking) IsApprovedForAll(v0 *bind.CallOpts, v1 common.Address, v2 common.Address) (bool, error)

IsApprovedForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) LockOwnPosition

func (m *MockIValidatorStaking) LockOwnPosition(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int) (*types.Transaction, error)

LockOwnPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) LockPosition

func (m *MockIValidatorStaking) LockPosition(v0 *bind.TransactOpts, v1 common.Address, v2 *big.Int, v3 *big.Int) (*types.Transaction, error)

LockPosition delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) LockWithdraw

func (m *MockIValidatorStaking) LockWithdraw(v0 *bind.TransactOpts, v1 *big.Int, v2 *big.Int) (*types.Transaction, error)

LockWithdraw delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) Mint

Mint delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) MintTo

MintTo delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) Name

Name delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) OwnerOf

func (m *MockIValidatorStaking) OwnerOf(v0 *bind.CallOpts, v1 *big.Int) (common.Address, error)

OwnerOf delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) ParseApproval

ParseApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) ParseApprovalForAll

ParseApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) ParseInitialized added in v0.0.2

ParseInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) ParseTransfer

ParseTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) SafeTransferFrom

func (m *MockIValidatorStaking) SafeTransferFrom(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int) (*types.Transaction, error)

SafeTransferFrom delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) SafeTransferFrom0

func (m *MockIValidatorStaking) SafeTransferFrom0(v0 *bind.TransactOpts, v1 common.Address, v2 common.Address, v3 *big.Int, v4 []byte) (*types.Transaction, error)

SafeTransferFrom0 delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) SetApprovalForAll

func (m *MockIValidatorStaking) SetApprovalForAll(v0 *bind.TransactOpts, v1 common.Address, v2 bool) (*types.Transaction, error)

SetApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) SkimExcessEth

SkimExcessEth delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) SkimExcessToken

func (m *MockIValidatorStaking) SkimExcessToken(v0 *bind.TransactOpts, v1 common.Address) (*types.Transaction, error)

SkimExcessToken delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) SupportsInterface

func (m *MockIValidatorStaking) SupportsInterface(v0 *bind.CallOpts, v1 [4]byte) (bool, error)

SupportsInterface delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) Symbol

func (m *MockIValidatorStaking) Symbol(v0 *bind.CallOpts) (string, error)

Symbol delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) TokenByIndex added in v0.0.5

func (m *MockIValidatorStaking) TokenByIndex(v0 *bind.CallOpts, v1 *big.Int) (*big.Int, error)

TokenByIndex delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) TokenOfOwnerByIndex added in v0.0.5

func (m *MockIValidatorStaking) TokenOfOwnerByIndex(v0 *bind.CallOpts, v1 common.Address, v2 *big.Int) (*big.Int, error)

TokenOfOwnerByIndex delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) TokenURI

func (m *MockIValidatorStaking) TokenURI(v0 *bind.CallOpts, v1 *big.Int) (string, error)

TokenURI delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) TotalSupply added in v0.0.5

func (m *MockIValidatorStaking) TotalSupply(v0 *bind.CallOpts) (*big.Int, error)

TotalSupply delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) TransferFrom

TransferFrom delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) TripCB

TripCB delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) WatchApproval

WatchApproval delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) WatchApprovalForAll

WatchApprovalForAll delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) WatchInitialized added in v0.0.2

WatchInitialized delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockIValidatorStaking) WatchTransfer

WatchTransfer delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockReceiptResponse

type MockReceiptResponse struct {
	// GetReceiptBlockingFunc is an instance of a mock function object
	// controlling the behavior of the method GetReceiptBlocking.
	GetReceiptBlockingFunc *ReceiptResponseGetReceiptBlockingFunc
	// IsReadyFunc is an instance of a mock function object controlling the
	// behavior of the method IsReady.
	IsReadyFunc *ReceiptResponseIsReadyFunc
}

MockReceiptResponse is a mock implementation of the ReceiptResponse interface (from the package github.com/alicenet/alicenet/layer1/transaction) used for unit testing.

func NewMockReceiptResponse

func NewMockReceiptResponse() *MockReceiptResponse

NewMockReceiptResponse creates a new mock of the ReceiptResponse interface. All methods return zero values for all results, unless overwritten.

func NewMockReceiptResponseFrom

func NewMockReceiptResponseFrom(i transaction.ReceiptResponse) *MockReceiptResponse

NewMockReceiptResponseFrom creates a new mock of the MockReceiptResponse interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockReceiptResponse

func NewStrictMockReceiptResponse() *MockReceiptResponse

NewStrictMockReceiptResponse creates a new mock of the ReceiptResponse interface. All methods panic on invocation, unless overwritten.

func (*MockReceiptResponse) GetReceiptBlocking

func (m *MockReceiptResponse) GetReceiptBlocking(v0 context.Context) (*types.Receipt, error)

GetReceiptBlocking delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockReceiptResponse) IsReady

func (m *MockReceiptResponse) IsReady() bool

IsReady delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type MockWatcher

type MockWatcher struct {
	// CloseFunc is an instance of a mock function object controlling the
	// behavior of the method Close.
	CloseFunc *WatcherCloseFunc
	// StartFunc is an instance of a mock function object controlling the
	// behavior of the method Start.
	StartFunc *WatcherStartFunc
	// SubscribeFunc is an instance of a mock function object controlling
	// the behavior of the method Subscribe.
	SubscribeFunc *WatcherSubscribeFunc
	// SubscribeAndWaitFunc is an instance of a mock function object
	// controlling the behavior of the method SubscribeAndWait.
	SubscribeAndWaitFunc *WatcherSubscribeAndWaitFunc
	// WaitFunc is an instance of a mock function object controlling the
	// behavior of the method Wait.
	WaitFunc *WatcherWaitFunc
}

MockWatcher is a mock implementation of the Watcher interface (from the package github.com/alicenet/alicenet/layer1/transaction) used for unit testing.

func NewMockWatcher

func NewMockWatcher() *MockWatcher

NewMockWatcher creates a new mock of the Watcher interface. All methods return zero values for all results, unless overwritten.

func NewMockWatcherFrom

func NewMockWatcherFrom(i transaction.Watcher) *MockWatcher

NewMockWatcherFrom creates a new mock of the MockWatcher interface. All methods delegate to the given implementation, unless overwritten.

func NewStrictMockWatcher

func NewStrictMockWatcher() *MockWatcher

NewStrictMockWatcher creates a new mock of the Watcher interface. All methods panic on invocation, unless overwritten.

func (*MockWatcher) Close

func (m *MockWatcher) Close()

Close delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockWatcher) Start

func (m *MockWatcher) Start() error

Start delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockWatcher) Subscribe

Subscribe delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockWatcher) SubscribeAndWait

SubscribeAndWait delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

func (*MockWatcher) Wait

Wait delegates to the next hook function in the queue and stores the parameter and result values of this invocation.

type ReceiptResponseGetReceiptBlockingFunc

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

ReceiptResponseGetReceiptBlockingFunc describes the behavior when the GetReceiptBlocking method of the parent MockReceiptResponse instance is invoked.

func (*ReceiptResponseGetReceiptBlockingFunc) History

History returns a sequence of ReceiptResponseGetReceiptBlockingFuncCall objects describing the invocations of this function.

func (*ReceiptResponseGetReceiptBlockingFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the GetReceiptBlocking method of the parent MockReceiptResponse instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ReceiptResponseGetReceiptBlockingFunc) PushReturn

PushReturn calls PushHook with a function that returns the given values.

func (*ReceiptResponseGetReceiptBlockingFunc) SetDefaultHook

func (f *ReceiptResponseGetReceiptBlockingFunc) SetDefaultHook(hook func(context.Context) (*types.Receipt, error))

SetDefaultHook sets function that is called when the GetReceiptBlocking method of the parent MockReceiptResponse instance is invoked and the hook queue is empty.

func (*ReceiptResponseGetReceiptBlockingFunc) SetDefaultReturn

func (f *ReceiptResponseGetReceiptBlockingFunc) SetDefaultReturn(r0 *types.Receipt, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ReceiptResponseGetReceiptBlockingFuncCall

type ReceiptResponseGetReceiptBlockingFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Receipt
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

ReceiptResponseGetReceiptBlockingFuncCall is an object that describes an invocation of method GetReceiptBlocking on an instance of MockReceiptResponse.

func (ReceiptResponseGetReceiptBlockingFuncCall) Args

func (c ReceiptResponseGetReceiptBlockingFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ReceiptResponseGetReceiptBlockingFuncCall) Results

func (c ReceiptResponseGetReceiptBlockingFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type ReceiptResponseIsReadyFunc

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

ReceiptResponseIsReadyFunc describes the behavior when the IsReady method of the parent MockReceiptResponse instance is invoked.

func (*ReceiptResponseIsReadyFunc) History

History returns a sequence of ReceiptResponseIsReadyFuncCall objects describing the invocations of this function.

func (*ReceiptResponseIsReadyFunc) PushHook

func (f *ReceiptResponseIsReadyFunc) PushHook(hook func() bool)

PushHook adds a function to the end of hook queue. Each invocation of the IsReady method of the parent MockReceiptResponse instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*ReceiptResponseIsReadyFunc) PushReturn

func (f *ReceiptResponseIsReadyFunc) PushReturn(r0 bool)

PushReturn calls PushHook with a function that returns the given values.

func (*ReceiptResponseIsReadyFunc) SetDefaultHook

func (f *ReceiptResponseIsReadyFunc) SetDefaultHook(hook func() bool)

SetDefaultHook sets function that is called when the IsReady method of the parent MockReceiptResponse instance is invoked and the hook queue is empty.

func (*ReceiptResponseIsReadyFunc) SetDefaultReturn

func (f *ReceiptResponseIsReadyFunc) SetDefaultReturn(r0 bool)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type ReceiptResponseIsReadyFuncCall

type ReceiptResponseIsReadyFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 bool
}

ReceiptResponseIsReadyFuncCall is an object that describes an invocation of method IsReady on an instance of MockReceiptResponse.

func (ReceiptResponseIsReadyFuncCall) Args

func (c ReceiptResponseIsReadyFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (ReceiptResponseIsReadyFuncCall) Results

func (c ReceiptResponseIsReadyFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type WatcherCloseFunc

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

WatcherCloseFunc describes the behavior when the Close method of the parent MockWatcher instance is invoked.

func (*WatcherCloseFunc) History

func (f *WatcherCloseFunc) History() []WatcherCloseFuncCall

History returns a sequence of WatcherCloseFuncCall objects describing the invocations of this function.

func (*WatcherCloseFunc) PushHook

func (f *WatcherCloseFunc) PushHook(hook func())

PushHook adds a function to the end of hook queue. Each invocation of the Close method of the parent MockWatcher instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*WatcherCloseFunc) PushReturn

func (f *WatcherCloseFunc) PushReturn()

PushReturn calls PushHook with a function that returns the given values.

func (*WatcherCloseFunc) SetDefaultHook

func (f *WatcherCloseFunc) SetDefaultHook(hook func())

SetDefaultHook sets function that is called when the Close method of the parent MockWatcher instance is invoked and the hook queue is empty.

func (*WatcherCloseFunc) SetDefaultReturn

func (f *WatcherCloseFunc) SetDefaultReturn()

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type WatcherCloseFuncCall

type WatcherCloseFuncCall struct{}

WatcherCloseFuncCall is an object that describes an invocation of method Close on an instance of MockWatcher.

func (WatcherCloseFuncCall) Args

func (c WatcherCloseFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (WatcherCloseFuncCall) Results

func (c WatcherCloseFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type WatcherStartFunc

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

WatcherStartFunc describes the behavior when the Start method of the parent MockWatcher instance is invoked.

func (*WatcherStartFunc) History

func (f *WatcherStartFunc) History() []WatcherStartFuncCall

History returns a sequence of WatcherStartFuncCall objects describing the invocations of this function.

func (*WatcherStartFunc) PushHook

func (f *WatcherStartFunc) PushHook(hook func() error)

PushHook adds a function to the end of hook queue. Each invocation of the Start method of the parent MockWatcher instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*WatcherStartFunc) PushReturn

func (f *WatcherStartFunc) PushReturn(r0 error)

PushReturn calls PushHook with a function that returns the given values.

func (*WatcherStartFunc) SetDefaultHook

func (f *WatcherStartFunc) SetDefaultHook(hook func() error)

SetDefaultHook sets function that is called when the Start method of the parent MockWatcher instance is invoked and the hook queue is empty.

func (*WatcherStartFunc) SetDefaultReturn

func (f *WatcherStartFunc) SetDefaultReturn(r0 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type WatcherStartFuncCall

type WatcherStartFuncCall struct {
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 error
}

WatcherStartFuncCall is an object that describes an invocation of method Start on an instance of MockWatcher.

func (WatcherStartFuncCall) Args

func (c WatcherStartFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (WatcherStartFuncCall) Results

func (c WatcherStartFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type WatcherSubscribeAndWaitFunc

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

WatcherSubscribeAndWaitFunc describes the behavior when the SubscribeAndWait method of the parent MockWatcher instance is invoked.

func (*WatcherSubscribeAndWaitFunc) History

History returns a sequence of WatcherSubscribeAndWaitFuncCall objects describing the invocations of this function.

func (*WatcherSubscribeAndWaitFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the SubscribeAndWait method of the parent MockWatcher instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*WatcherSubscribeAndWaitFunc) PushReturn

func (f *WatcherSubscribeAndWaitFunc) PushReturn(r0 *types.Receipt, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*WatcherSubscribeAndWaitFunc) SetDefaultHook

SetDefaultHook sets function that is called when the SubscribeAndWait method of the parent MockWatcher instance is invoked and the hook queue is empty.

func (*WatcherSubscribeAndWaitFunc) SetDefaultReturn

func (f *WatcherSubscribeAndWaitFunc) SetDefaultReturn(r0 *types.Receipt, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type WatcherSubscribeAndWaitFuncCall

type WatcherSubscribeAndWaitFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *types.Transaction
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *transaction.SubscribeOptions
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Receipt
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

WatcherSubscribeAndWaitFuncCall is an object that describes an invocation of method SubscribeAndWait on an instance of MockWatcher.

func (WatcherSubscribeAndWaitFuncCall) Args

func (c WatcherSubscribeAndWaitFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (WatcherSubscribeAndWaitFuncCall) Results

func (c WatcherSubscribeAndWaitFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type WatcherSubscribeFunc

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

WatcherSubscribeFunc describes the behavior when the Subscribe method of the parent MockWatcher instance is invoked.

func (*WatcherSubscribeFunc) History

History returns a sequence of WatcherSubscribeFuncCall objects describing the invocations of this function.

func (*WatcherSubscribeFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Subscribe method of the parent MockWatcher instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*WatcherSubscribeFunc) PushReturn

func (f *WatcherSubscribeFunc) PushReturn(r0 transaction.ReceiptResponse, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*WatcherSubscribeFunc) SetDefaultHook

SetDefaultHook sets function that is called when the Subscribe method of the parent MockWatcher instance is invoked and the hook queue is empty.

func (*WatcherSubscribeFunc) SetDefaultReturn

func (f *WatcherSubscribeFunc) SetDefaultReturn(r0 transaction.ReceiptResponse, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type WatcherSubscribeFuncCall

type WatcherSubscribeFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 *types.Transaction
	// Arg2 is the value of the 3rd argument passed to this method
	// invocation.
	Arg2 *transaction.SubscribeOptions
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 transaction.ReceiptResponse
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

WatcherSubscribeFuncCall is an object that describes an invocation of method Subscribe on an instance of MockWatcher.

func (WatcherSubscribeFuncCall) Args

func (c WatcherSubscribeFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (WatcherSubscribeFuncCall) Results

func (c WatcherSubscribeFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

type WatcherWaitFunc

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

WatcherWaitFunc describes the behavior when the Wait method of the parent MockWatcher instance is invoked.

func (*WatcherWaitFunc) History

func (f *WatcherWaitFunc) History() []WatcherWaitFuncCall

History returns a sequence of WatcherWaitFuncCall objects describing the invocations of this function.

func (*WatcherWaitFunc) PushHook

PushHook adds a function to the end of hook queue. Each invocation of the Wait method of the parent MockWatcher instance invokes the hook at the front of the queue and discards it. After the queue is empty, the default hook function is invoked for any future action.

func (*WatcherWaitFunc) PushReturn

func (f *WatcherWaitFunc) PushReturn(r0 *types.Receipt, r1 error)

PushReturn calls PushHook with a function that returns the given values.

func (*WatcherWaitFunc) SetDefaultHook

func (f *WatcherWaitFunc) SetDefaultHook(hook func(context.Context, transaction.ReceiptResponse) (*types.Receipt, error))

SetDefaultHook sets function that is called when the Wait method of the parent MockWatcher instance is invoked and the hook queue is empty.

func (*WatcherWaitFunc) SetDefaultReturn

func (f *WatcherWaitFunc) SetDefaultReturn(r0 *types.Receipt, r1 error)

SetDefaultReturn calls SetDefaultHook with a function that returns the given values.

type WatcherWaitFuncCall

type WatcherWaitFuncCall struct {
	// Arg0 is the value of the 1st argument passed to this method
	// invocation.
	Arg0 context.Context
	// Arg1 is the value of the 2nd argument passed to this method
	// invocation.
	Arg1 transaction.ReceiptResponse
	// Result0 is the value of the 1st result returned from this method
	// invocation.
	Result0 *types.Receipt
	// Result1 is the value of the 2nd result returned from this method
	// invocation.
	Result1 error
}

WatcherWaitFuncCall is an object that describes an invocation of method Wait on an instance of MockWatcher.

func (WatcherWaitFuncCall) Args

func (c WatcherWaitFuncCall) Args() []interface{}

Args returns an interface slice containing the arguments of this invocation.

func (WatcherWaitFuncCall) Results

func (c WatcherWaitFuncCall) Results() []interface{}

Results returns an interface slice containing the results of this invocation.

Jump to

Keyboard shortcuts

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