mocks

package
v0.0.0-...-ded9150 Latest Latest
Warning

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

Go to latest
Published: Dec 5, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Overview

Code generated by MockGen. DO NOT EDIT. Source: github.com/Layr-Labs/eigensdk-go/chainio/clients/eth (interfaces: Client)

Generated by this command:

mockgen -destination=./mocks/eth_client.go -package=mocks github.com/Layr-Labs/eigensdk-go/chainio/clients/eth Client

Package mocks is a generated GoMock package.

Code generated by MockGen. DO NOT EDIT. Source: github.com/Nuffle-Labs/nffl/core/safeclient (interfaces: SafeClient)

Generated by this command:

mockgen -destination=./mocks/safe_client.go -package=mocks github.com/Nuffle-Labs/nffl/core/safeclient SafeClient

Package mocks is a generated GoMock package.

Code generated by MockGen. DO NOT EDIT. Source: github.com/ethereum/go-ethereum (interfaces: Subscription)

Generated by this command:

mockgen -destination=./mocks/subscription.go -package=mocks github.com/ethereum/go-ethereum Subscription

Package mocks is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockClient

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

MockClient is a mock of Client interface.

func NewMockClient

func NewMockClient(ctrl *gomock.Controller) *MockClient

NewMockClient creates a new mock instance.

func (*MockClient) BalanceAt

func (m *MockClient) BalanceAt(arg0 context.Context, arg1 common.Address, arg2 *big.Int) (*big.Int, error)

BalanceAt mocks base method.

func (*MockClient) BlockByHash

func (m *MockClient) BlockByHash(arg0 context.Context, arg1 common.Hash) (*types.Block, error)

BlockByHash mocks base method.

func (*MockClient) BlockByNumber

func (m *MockClient) BlockByNumber(arg0 context.Context, arg1 *big.Int) (*types.Block, error)

BlockByNumber mocks base method.

func (*MockClient) BlockNumber

func (m *MockClient) BlockNumber(arg0 context.Context) (uint64, error)

BlockNumber mocks base method.

func (*MockClient) CallContract

func (m *MockClient) CallContract(arg0 context.Context, arg1 ethereum.CallMsg, arg2 *big.Int) ([]byte, error)

CallContract mocks base method.

func (*MockClient) CallContractAtHash

func (m *MockClient) CallContractAtHash(arg0 context.Context, arg1 ethereum.CallMsg, arg2 common.Hash) ([]byte, error)

CallContractAtHash mocks base method.

func (*MockClient) ChainID

func (m *MockClient) ChainID(arg0 context.Context) (*big.Int, error)

ChainID mocks base method.

func (*MockClient) CodeAt

func (m *MockClient) CodeAt(arg0 context.Context, arg1 common.Address, arg2 *big.Int) ([]byte, error)

CodeAt mocks base method.

func (*MockClient) EXPECT

func (m *MockClient) EXPECT() *MockClientMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockClient) EstimateGas

func (m *MockClient) EstimateGas(arg0 context.Context, arg1 ethereum.CallMsg) (uint64, error)

EstimateGas mocks base method.

func (*MockClient) FeeHistory

func (m *MockClient) FeeHistory(arg0 context.Context, arg1 uint64, arg2 *big.Int, arg3 []float64) (*ethereum.FeeHistory, error)

FeeHistory mocks base method.

func (*MockClient) FilterLogs

func (m *MockClient) FilterLogs(arg0 context.Context, arg1 ethereum.FilterQuery) ([]types.Log, error)

FilterLogs mocks base method.

func (*MockClient) HeaderByHash

func (m *MockClient) HeaderByHash(arg0 context.Context, arg1 common.Hash) (*types.Header, error)

HeaderByHash mocks base method.

func (*MockClient) HeaderByNumber

func (m *MockClient) HeaderByNumber(arg0 context.Context, arg1 *big.Int) (*types.Header, error)

HeaderByNumber mocks base method.

func (*MockClient) NetworkID

func (m *MockClient) NetworkID(arg0 context.Context) (*big.Int, error)

NetworkID mocks base method.

func (*MockClient) NonceAt

func (m *MockClient) NonceAt(arg0 context.Context, arg1 common.Address, arg2 *big.Int) (uint64, error)

NonceAt mocks base method.

func (*MockClient) PeerCount

func (m *MockClient) PeerCount(arg0 context.Context) (uint64, error)

PeerCount mocks base method.

func (*MockClient) PendingBalanceAt

func (m *MockClient) PendingBalanceAt(arg0 context.Context, arg1 common.Address) (*big.Int, error)

PendingBalanceAt mocks base method.

func (*MockClient) PendingCallContract

func (m *MockClient) PendingCallContract(arg0 context.Context, arg1 ethereum.CallMsg) ([]byte, error)

PendingCallContract mocks base method.

func (*MockClient) PendingCodeAt

func (m *MockClient) PendingCodeAt(arg0 context.Context, arg1 common.Address) ([]byte, error)

PendingCodeAt mocks base method.

func (*MockClient) PendingNonceAt

func (m *MockClient) PendingNonceAt(arg0 context.Context, arg1 common.Address) (uint64, error)

PendingNonceAt mocks base method.

func (*MockClient) PendingStorageAt

func (m *MockClient) PendingStorageAt(arg0 context.Context, arg1 common.Address, arg2 common.Hash) ([]byte, error)

PendingStorageAt mocks base method.

func (*MockClient) PendingTransactionCount

func (m *MockClient) PendingTransactionCount(arg0 context.Context) (uint, error)

PendingTransactionCount mocks base method.

func (*MockClient) SendTransaction

func (m *MockClient) SendTransaction(arg0 context.Context, arg1 *types.Transaction) error

SendTransaction mocks base method.

func (*MockClient) StorageAt

func (m *MockClient) StorageAt(arg0 context.Context, arg1 common.Address, arg2 common.Hash, arg3 *big.Int) ([]byte, error)

StorageAt mocks base method.

func (*MockClient) SubscribeFilterLogs

func (m *MockClient) SubscribeFilterLogs(arg0 context.Context, arg1 ethereum.FilterQuery, arg2 chan<- types.Log) (ethereum.Subscription, error)

SubscribeFilterLogs mocks base method.

func (*MockClient) SubscribeNewHead

func (m *MockClient) SubscribeNewHead(arg0 context.Context, arg1 chan<- *types.Header) (ethereum.Subscription, error)

SubscribeNewHead mocks base method.

func (*MockClient) SuggestGasPrice

func (m *MockClient) SuggestGasPrice(arg0 context.Context) (*big.Int, error)

SuggestGasPrice mocks base method.

func (*MockClient) SuggestGasTipCap

func (m *MockClient) SuggestGasTipCap(arg0 context.Context) (*big.Int, error)

SuggestGasTipCap mocks base method.

func (*MockClient) SyncProgress

func (m *MockClient) SyncProgress(arg0 context.Context) (*ethereum.SyncProgress, error)

SyncProgress mocks base method.

func (*MockClient) TransactionByHash

func (m *MockClient) TransactionByHash(arg0 context.Context, arg1 common.Hash) (*types.Transaction, bool, error)

TransactionByHash mocks base method.

func (*MockClient) TransactionCount

func (m *MockClient) TransactionCount(arg0 context.Context, arg1 common.Hash) (uint, error)

TransactionCount mocks base method.

func (*MockClient) TransactionInBlock

func (m *MockClient) TransactionInBlock(arg0 context.Context, arg1 common.Hash, arg2 uint) (*types.Transaction, error)

TransactionInBlock mocks base method.

func (*MockClient) TransactionReceipt

func (m *MockClient) TransactionReceipt(arg0 context.Context, arg1 common.Hash) (*types.Receipt, error)

TransactionReceipt mocks base method.

func (*MockClient) TransactionSender

func (m *MockClient) TransactionSender(arg0 context.Context, arg1 *types.Transaction, arg2 common.Hash, arg3 uint) (common.Address, error)

TransactionSender mocks base method.

type MockClientMockRecorder

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

MockClientMockRecorder is the mock recorder for MockClient.

func (*MockClientMockRecorder) BalanceAt

func (mr *MockClientMockRecorder) BalanceAt(arg0, arg1, arg2 any) *gomock.Call

BalanceAt indicates an expected call of BalanceAt.

func (*MockClientMockRecorder) BlockByHash

func (mr *MockClientMockRecorder) BlockByHash(arg0, arg1 any) *gomock.Call

BlockByHash indicates an expected call of BlockByHash.

func (*MockClientMockRecorder) BlockByNumber

func (mr *MockClientMockRecorder) BlockByNumber(arg0, arg1 any) *gomock.Call

BlockByNumber indicates an expected call of BlockByNumber.

func (*MockClientMockRecorder) BlockNumber

func (mr *MockClientMockRecorder) BlockNumber(arg0 any) *gomock.Call

BlockNumber indicates an expected call of BlockNumber.

func (*MockClientMockRecorder) CallContract

func (mr *MockClientMockRecorder) CallContract(arg0, arg1, arg2 any) *gomock.Call

CallContract indicates an expected call of CallContract.

func (*MockClientMockRecorder) CallContractAtHash

func (mr *MockClientMockRecorder) CallContractAtHash(arg0, arg1, arg2 any) *gomock.Call

CallContractAtHash indicates an expected call of CallContractAtHash.

func (*MockClientMockRecorder) ChainID

func (mr *MockClientMockRecorder) ChainID(arg0 any) *gomock.Call

ChainID indicates an expected call of ChainID.

func (*MockClientMockRecorder) CodeAt

func (mr *MockClientMockRecorder) CodeAt(arg0, arg1, arg2 any) *gomock.Call

CodeAt indicates an expected call of CodeAt.

func (*MockClientMockRecorder) EstimateGas

func (mr *MockClientMockRecorder) EstimateGas(arg0, arg1 any) *gomock.Call

EstimateGas indicates an expected call of EstimateGas.

func (*MockClientMockRecorder) FeeHistory

func (mr *MockClientMockRecorder) FeeHistory(arg0, arg1, arg2, arg3 any) *gomock.Call

FeeHistory indicates an expected call of FeeHistory.

func (*MockClientMockRecorder) FilterLogs

func (mr *MockClientMockRecorder) FilterLogs(arg0, arg1 any) *gomock.Call

FilterLogs indicates an expected call of FilterLogs.

func (*MockClientMockRecorder) HeaderByHash

func (mr *MockClientMockRecorder) HeaderByHash(arg0, arg1 any) *gomock.Call

HeaderByHash indicates an expected call of HeaderByHash.

func (*MockClientMockRecorder) HeaderByNumber

func (mr *MockClientMockRecorder) HeaderByNumber(arg0, arg1 any) *gomock.Call

HeaderByNumber indicates an expected call of HeaderByNumber.

func (*MockClientMockRecorder) NetworkID

func (mr *MockClientMockRecorder) NetworkID(arg0 any) *gomock.Call

NetworkID indicates an expected call of NetworkID.

func (*MockClientMockRecorder) NonceAt

func (mr *MockClientMockRecorder) NonceAt(arg0, arg1, arg2 any) *gomock.Call

NonceAt indicates an expected call of NonceAt.

func (*MockClientMockRecorder) PeerCount

func (mr *MockClientMockRecorder) PeerCount(arg0 any) *gomock.Call

PeerCount indicates an expected call of PeerCount.

func (*MockClientMockRecorder) PendingBalanceAt

func (mr *MockClientMockRecorder) PendingBalanceAt(arg0, arg1 any) *gomock.Call

PendingBalanceAt indicates an expected call of PendingBalanceAt.

func (*MockClientMockRecorder) PendingCallContract

func (mr *MockClientMockRecorder) PendingCallContract(arg0, arg1 any) *gomock.Call

PendingCallContract indicates an expected call of PendingCallContract.

func (*MockClientMockRecorder) PendingCodeAt

func (mr *MockClientMockRecorder) PendingCodeAt(arg0, arg1 any) *gomock.Call

PendingCodeAt indicates an expected call of PendingCodeAt.

func (*MockClientMockRecorder) PendingNonceAt

func (mr *MockClientMockRecorder) PendingNonceAt(arg0, arg1 any) *gomock.Call

PendingNonceAt indicates an expected call of PendingNonceAt.

func (*MockClientMockRecorder) PendingStorageAt

func (mr *MockClientMockRecorder) PendingStorageAt(arg0, arg1, arg2 any) *gomock.Call

PendingStorageAt indicates an expected call of PendingStorageAt.

func (*MockClientMockRecorder) PendingTransactionCount

func (mr *MockClientMockRecorder) PendingTransactionCount(arg0 any) *gomock.Call

PendingTransactionCount indicates an expected call of PendingTransactionCount.

func (*MockClientMockRecorder) SendTransaction

func (mr *MockClientMockRecorder) SendTransaction(arg0, arg1 any) *gomock.Call

SendTransaction indicates an expected call of SendTransaction.

func (*MockClientMockRecorder) StorageAt

func (mr *MockClientMockRecorder) StorageAt(arg0, arg1, arg2, arg3 any) *gomock.Call

StorageAt indicates an expected call of StorageAt.

func (*MockClientMockRecorder) SubscribeFilterLogs

func (mr *MockClientMockRecorder) SubscribeFilterLogs(arg0, arg1, arg2 any) *gomock.Call

SubscribeFilterLogs indicates an expected call of SubscribeFilterLogs.

func (*MockClientMockRecorder) SubscribeNewHead

func (mr *MockClientMockRecorder) SubscribeNewHead(arg0, arg1 any) *gomock.Call

SubscribeNewHead indicates an expected call of SubscribeNewHead.

func (*MockClientMockRecorder) SuggestGasPrice

func (mr *MockClientMockRecorder) SuggestGasPrice(arg0 any) *gomock.Call

SuggestGasPrice indicates an expected call of SuggestGasPrice.

func (*MockClientMockRecorder) SuggestGasTipCap

func (mr *MockClientMockRecorder) SuggestGasTipCap(arg0 any) *gomock.Call

SuggestGasTipCap indicates an expected call of SuggestGasTipCap.

func (*MockClientMockRecorder) SyncProgress

func (mr *MockClientMockRecorder) SyncProgress(arg0 any) *gomock.Call

SyncProgress indicates an expected call of SyncProgress.

func (*MockClientMockRecorder) TransactionByHash

func (mr *MockClientMockRecorder) TransactionByHash(arg0, arg1 any) *gomock.Call

TransactionByHash indicates an expected call of TransactionByHash.

func (*MockClientMockRecorder) TransactionCount

func (mr *MockClientMockRecorder) TransactionCount(arg0, arg1 any) *gomock.Call

TransactionCount indicates an expected call of TransactionCount.

func (*MockClientMockRecorder) TransactionInBlock

func (mr *MockClientMockRecorder) TransactionInBlock(arg0, arg1, arg2 any) *gomock.Call

TransactionInBlock indicates an expected call of TransactionInBlock.

func (*MockClientMockRecorder) TransactionReceipt

func (mr *MockClientMockRecorder) TransactionReceipt(arg0, arg1 any) *gomock.Call

TransactionReceipt indicates an expected call of TransactionReceipt.

func (*MockClientMockRecorder) TransactionSender

func (mr *MockClientMockRecorder) TransactionSender(arg0, arg1, arg2, arg3 any) *gomock.Call

TransactionSender indicates an expected call of TransactionSender.

type MockSafeClient

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

MockSafeClient is a mock of SafeClient interface.

func NewMockSafeClient

func NewMockSafeClient(ctrl *gomock.Controller) *MockSafeClient

NewMockSafeClient creates a new mock instance.

func (*MockSafeClient) BalanceAt

func (m *MockSafeClient) BalanceAt(arg0 context.Context, arg1 common.Address, arg2 *big.Int) (*big.Int, error)

BalanceAt mocks base method.

func (*MockSafeClient) BlockByHash

func (m *MockSafeClient) BlockByHash(arg0 context.Context, arg1 common.Hash) (*types.Block, error)

BlockByHash mocks base method.

func (*MockSafeClient) BlockByNumber

func (m *MockSafeClient) BlockByNumber(arg0 context.Context, arg1 *big.Int) (*types.Block, error)

BlockByNumber mocks base method.

func (*MockSafeClient) BlockNumber

func (m *MockSafeClient) BlockNumber(arg0 context.Context) (uint64, error)

BlockNumber mocks base method.

func (*MockSafeClient) CallContract

func (m *MockSafeClient) CallContract(arg0 context.Context, arg1 ethereum.CallMsg, arg2 *big.Int) ([]byte, error)

CallContract mocks base method.

func (*MockSafeClient) CallContractAtHash

func (m *MockSafeClient) CallContractAtHash(arg0 context.Context, arg1 ethereum.CallMsg, arg2 common.Hash) ([]byte, error)

CallContractAtHash mocks base method.

func (*MockSafeClient) ChainID

func (m *MockSafeClient) ChainID(arg0 context.Context) (*big.Int, error)

ChainID mocks base method.

func (*MockSafeClient) Close

func (m *MockSafeClient) Close()

Close mocks base method.

func (*MockSafeClient) CodeAt

func (m *MockSafeClient) CodeAt(arg0 context.Context, arg1 common.Address, arg2 *big.Int) ([]byte, error)

CodeAt mocks base method.

func (*MockSafeClient) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockSafeClient) EstimateGas

func (m *MockSafeClient) EstimateGas(arg0 context.Context, arg1 ethereum.CallMsg) (uint64, error)

EstimateGas mocks base method.

func (*MockSafeClient) FeeHistory

func (m *MockSafeClient) FeeHistory(arg0 context.Context, arg1 uint64, arg2 *big.Int, arg3 []float64) (*ethereum.FeeHistory, error)

FeeHistory mocks base method.

func (*MockSafeClient) FilterLogs

func (m *MockSafeClient) FilterLogs(arg0 context.Context, arg1 ethereum.FilterQuery) ([]types.Log, error)

FilterLogs mocks base method.

func (*MockSafeClient) HeaderByHash

func (m *MockSafeClient) HeaderByHash(arg0 context.Context, arg1 common.Hash) (*types.Header, error)

HeaderByHash mocks base method.

func (*MockSafeClient) HeaderByNumber

func (m *MockSafeClient) HeaderByNumber(arg0 context.Context, arg1 *big.Int) (*types.Header, error)

HeaderByNumber mocks base method.

func (*MockSafeClient) NetworkID

func (m *MockSafeClient) NetworkID(arg0 context.Context) (*big.Int, error)

NetworkID mocks base method.

func (*MockSafeClient) NonceAt

func (m *MockSafeClient) NonceAt(arg0 context.Context, arg1 common.Address, arg2 *big.Int) (uint64, error)

NonceAt mocks base method.

func (*MockSafeClient) PeerCount

func (m *MockSafeClient) PeerCount(arg0 context.Context) (uint64, error)

PeerCount mocks base method.

func (*MockSafeClient) PendingBalanceAt

func (m *MockSafeClient) PendingBalanceAt(arg0 context.Context, arg1 common.Address) (*big.Int, error)

PendingBalanceAt mocks base method.

func (*MockSafeClient) PendingCallContract

func (m *MockSafeClient) PendingCallContract(arg0 context.Context, arg1 ethereum.CallMsg) ([]byte, error)

PendingCallContract mocks base method.

func (*MockSafeClient) PendingCodeAt

func (m *MockSafeClient) PendingCodeAt(arg0 context.Context, arg1 common.Address) ([]byte, error)

PendingCodeAt mocks base method.

func (*MockSafeClient) PendingNonceAt

func (m *MockSafeClient) PendingNonceAt(arg0 context.Context, arg1 common.Address) (uint64, error)

PendingNonceAt mocks base method.

func (*MockSafeClient) PendingStorageAt

func (m *MockSafeClient) PendingStorageAt(arg0 context.Context, arg1 common.Address, arg2 common.Hash) ([]byte, error)

PendingStorageAt mocks base method.

func (*MockSafeClient) PendingTransactionCount

func (m *MockSafeClient) PendingTransactionCount(arg0 context.Context) (uint, error)

PendingTransactionCount mocks base method.

func (*MockSafeClient) SendTransaction

func (m *MockSafeClient) SendTransaction(arg0 context.Context, arg1 *types.Transaction) error

SendTransaction mocks base method.

func (*MockSafeClient) StorageAt

func (m *MockSafeClient) StorageAt(arg0 context.Context, arg1 common.Address, arg2 common.Hash, arg3 *big.Int) ([]byte, error)

StorageAt mocks base method.

func (*MockSafeClient) SubscribeFilterLogs

func (m *MockSafeClient) SubscribeFilterLogs(arg0 context.Context, arg1 ethereum.FilterQuery, arg2 chan<- types.Log) (ethereum.Subscription, error)

SubscribeFilterLogs mocks base method.

func (*MockSafeClient) SubscribeNewHead

func (m *MockSafeClient) SubscribeNewHead(arg0 context.Context, arg1 chan<- *types.Header) (ethereum.Subscription, error)

SubscribeNewHead mocks base method.

func (*MockSafeClient) SuggestGasPrice

func (m *MockSafeClient) SuggestGasPrice(arg0 context.Context) (*big.Int, error)

SuggestGasPrice mocks base method.

func (*MockSafeClient) SuggestGasTipCap

func (m *MockSafeClient) SuggestGasTipCap(arg0 context.Context) (*big.Int, error)

SuggestGasTipCap mocks base method.

func (*MockSafeClient) SyncProgress

func (m *MockSafeClient) SyncProgress(arg0 context.Context) (*ethereum.SyncProgress, error)

SyncProgress mocks base method.

func (*MockSafeClient) TransactionByHash

func (m *MockSafeClient) TransactionByHash(arg0 context.Context, arg1 common.Hash) (*types.Transaction, bool, error)

TransactionByHash mocks base method.

func (*MockSafeClient) TransactionCount

func (m *MockSafeClient) TransactionCount(arg0 context.Context, arg1 common.Hash) (uint, error)

TransactionCount mocks base method.

func (*MockSafeClient) TransactionInBlock

func (m *MockSafeClient) TransactionInBlock(arg0 context.Context, arg1 common.Hash, arg2 uint) (*types.Transaction, error)

TransactionInBlock mocks base method.

func (*MockSafeClient) TransactionReceipt

func (m *MockSafeClient) TransactionReceipt(arg0 context.Context, arg1 common.Hash) (*types.Receipt, error)

TransactionReceipt mocks base method.

func (*MockSafeClient) TransactionSender

func (m *MockSafeClient) TransactionSender(arg0 context.Context, arg1 *types.Transaction, arg2 common.Hash, arg3 uint) (common.Address, error)

TransactionSender mocks base method.

type MockSafeClientMockRecorder

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

MockSafeClientMockRecorder is the mock recorder for MockSafeClient.

func (*MockSafeClientMockRecorder) BalanceAt

func (mr *MockSafeClientMockRecorder) BalanceAt(arg0, arg1, arg2 any) *gomock.Call

BalanceAt indicates an expected call of BalanceAt.

func (*MockSafeClientMockRecorder) BlockByHash

func (mr *MockSafeClientMockRecorder) BlockByHash(arg0, arg1 any) *gomock.Call

BlockByHash indicates an expected call of BlockByHash.

func (*MockSafeClientMockRecorder) BlockByNumber

func (mr *MockSafeClientMockRecorder) BlockByNumber(arg0, arg1 any) *gomock.Call

BlockByNumber indicates an expected call of BlockByNumber.

func (*MockSafeClientMockRecorder) BlockNumber

func (mr *MockSafeClientMockRecorder) BlockNumber(arg0 any) *gomock.Call

BlockNumber indicates an expected call of BlockNumber.

func (*MockSafeClientMockRecorder) CallContract

func (mr *MockSafeClientMockRecorder) CallContract(arg0, arg1, arg2 any) *gomock.Call

CallContract indicates an expected call of CallContract.

func (*MockSafeClientMockRecorder) CallContractAtHash

func (mr *MockSafeClientMockRecorder) CallContractAtHash(arg0, arg1, arg2 any) *gomock.Call

CallContractAtHash indicates an expected call of CallContractAtHash.

func (*MockSafeClientMockRecorder) ChainID

func (mr *MockSafeClientMockRecorder) ChainID(arg0 any) *gomock.Call

ChainID indicates an expected call of ChainID.

func (*MockSafeClientMockRecorder) Close

func (mr *MockSafeClientMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close.

func (*MockSafeClientMockRecorder) CodeAt

func (mr *MockSafeClientMockRecorder) CodeAt(arg0, arg1, arg2 any) *gomock.Call

CodeAt indicates an expected call of CodeAt.

func (*MockSafeClientMockRecorder) EstimateGas

func (mr *MockSafeClientMockRecorder) EstimateGas(arg0, arg1 any) *gomock.Call

EstimateGas indicates an expected call of EstimateGas.

func (*MockSafeClientMockRecorder) FeeHistory

func (mr *MockSafeClientMockRecorder) FeeHistory(arg0, arg1, arg2, arg3 any) *gomock.Call

FeeHistory indicates an expected call of FeeHistory.

func (*MockSafeClientMockRecorder) FilterLogs

func (mr *MockSafeClientMockRecorder) FilterLogs(arg0, arg1 any) *gomock.Call

FilterLogs indicates an expected call of FilterLogs.

func (*MockSafeClientMockRecorder) HeaderByHash

func (mr *MockSafeClientMockRecorder) HeaderByHash(arg0, arg1 any) *gomock.Call

HeaderByHash indicates an expected call of HeaderByHash.

func (*MockSafeClientMockRecorder) HeaderByNumber

func (mr *MockSafeClientMockRecorder) HeaderByNumber(arg0, arg1 any) *gomock.Call

HeaderByNumber indicates an expected call of HeaderByNumber.

func (*MockSafeClientMockRecorder) NetworkID

func (mr *MockSafeClientMockRecorder) NetworkID(arg0 any) *gomock.Call

NetworkID indicates an expected call of NetworkID.

func (*MockSafeClientMockRecorder) NonceAt

func (mr *MockSafeClientMockRecorder) NonceAt(arg0, arg1, arg2 any) *gomock.Call

NonceAt indicates an expected call of NonceAt.

func (*MockSafeClientMockRecorder) PeerCount

func (mr *MockSafeClientMockRecorder) PeerCount(arg0 any) *gomock.Call

PeerCount indicates an expected call of PeerCount.

func (*MockSafeClientMockRecorder) PendingBalanceAt

func (mr *MockSafeClientMockRecorder) PendingBalanceAt(arg0, arg1 any) *gomock.Call

PendingBalanceAt indicates an expected call of PendingBalanceAt.

func (*MockSafeClientMockRecorder) PendingCallContract

func (mr *MockSafeClientMockRecorder) PendingCallContract(arg0, arg1 any) *gomock.Call

PendingCallContract indicates an expected call of PendingCallContract.

func (*MockSafeClientMockRecorder) PendingCodeAt

func (mr *MockSafeClientMockRecorder) PendingCodeAt(arg0, arg1 any) *gomock.Call

PendingCodeAt indicates an expected call of PendingCodeAt.

func (*MockSafeClientMockRecorder) PendingNonceAt

func (mr *MockSafeClientMockRecorder) PendingNonceAt(arg0, arg1 any) *gomock.Call

PendingNonceAt indicates an expected call of PendingNonceAt.

func (*MockSafeClientMockRecorder) PendingStorageAt

func (mr *MockSafeClientMockRecorder) PendingStorageAt(arg0, arg1, arg2 any) *gomock.Call

PendingStorageAt indicates an expected call of PendingStorageAt.

func (*MockSafeClientMockRecorder) PendingTransactionCount

func (mr *MockSafeClientMockRecorder) PendingTransactionCount(arg0 any) *gomock.Call

PendingTransactionCount indicates an expected call of PendingTransactionCount.

func (*MockSafeClientMockRecorder) SendTransaction

func (mr *MockSafeClientMockRecorder) SendTransaction(arg0, arg1 any) *gomock.Call

SendTransaction indicates an expected call of SendTransaction.

func (*MockSafeClientMockRecorder) StorageAt

func (mr *MockSafeClientMockRecorder) StorageAt(arg0, arg1, arg2, arg3 any) *gomock.Call

StorageAt indicates an expected call of StorageAt.

func (*MockSafeClientMockRecorder) SubscribeFilterLogs

func (mr *MockSafeClientMockRecorder) SubscribeFilterLogs(arg0, arg1, arg2 any) *gomock.Call

SubscribeFilterLogs indicates an expected call of SubscribeFilterLogs.

func (*MockSafeClientMockRecorder) SubscribeNewHead

func (mr *MockSafeClientMockRecorder) SubscribeNewHead(arg0, arg1 any) *gomock.Call

SubscribeNewHead indicates an expected call of SubscribeNewHead.

func (*MockSafeClientMockRecorder) SuggestGasPrice

func (mr *MockSafeClientMockRecorder) SuggestGasPrice(arg0 any) *gomock.Call

SuggestGasPrice indicates an expected call of SuggestGasPrice.

func (*MockSafeClientMockRecorder) SuggestGasTipCap

func (mr *MockSafeClientMockRecorder) SuggestGasTipCap(arg0 any) *gomock.Call

SuggestGasTipCap indicates an expected call of SuggestGasTipCap.

func (*MockSafeClientMockRecorder) SyncProgress

func (mr *MockSafeClientMockRecorder) SyncProgress(arg0 any) *gomock.Call

SyncProgress indicates an expected call of SyncProgress.

func (*MockSafeClientMockRecorder) TransactionByHash

func (mr *MockSafeClientMockRecorder) TransactionByHash(arg0, arg1 any) *gomock.Call

TransactionByHash indicates an expected call of TransactionByHash.

func (*MockSafeClientMockRecorder) TransactionCount

func (mr *MockSafeClientMockRecorder) TransactionCount(arg0, arg1 any) *gomock.Call

TransactionCount indicates an expected call of TransactionCount.

func (*MockSafeClientMockRecorder) TransactionInBlock

func (mr *MockSafeClientMockRecorder) TransactionInBlock(arg0, arg1, arg2 any) *gomock.Call

TransactionInBlock indicates an expected call of TransactionInBlock.

func (*MockSafeClientMockRecorder) TransactionReceipt

func (mr *MockSafeClientMockRecorder) TransactionReceipt(arg0, arg1 any) *gomock.Call

TransactionReceipt indicates an expected call of TransactionReceipt.

func (*MockSafeClientMockRecorder) TransactionSender

func (mr *MockSafeClientMockRecorder) TransactionSender(arg0, arg1, arg2, arg3 any) *gomock.Call

TransactionSender indicates an expected call of TransactionSender.

type MockSubscription

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

MockSubscription is a mock of Subscription interface.

func NewMockSubscription

func NewMockSubscription(ctrl *gomock.Controller) *MockSubscription

NewMockSubscription creates a new mock instance.

func (*MockSubscription) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockSubscription) Err

func (m *MockSubscription) Err() <-chan error

Err mocks base method.

func (*MockSubscription) Unsubscribe

func (m *MockSubscription) Unsubscribe()

Unsubscribe mocks base method.

type MockSubscriptionMockRecorder

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

MockSubscriptionMockRecorder is the mock recorder for MockSubscription.

func (*MockSubscriptionMockRecorder) Err

Err indicates an expected call of Err.

func (*MockSubscriptionMockRecorder) Unsubscribe

func (mr *MockSubscriptionMockRecorder) Unsubscribe() *gomock.Call

Unsubscribe indicates an expected call of Unsubscribe.

Jump to

Keyboard shortcuts

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