Documentation ¶
Index ¶
- type MockDiamondRouter
- func (m *MockDiamondRouter) Erc721Fee(opts *bind.CallOpts, _erc721 common.Address) (*big.Int, error)
- func (m *MockDiamondRouter) Erc721Payment(opts *bind.CallOpts, _erc721 common.Address) (common.Address, error)
- func (m *MockDiamondRouter) HasValidSignaturesLength(opts *bind.CallOpts, _n *big.Int) (bool, error)
- func (m *MockDiamondRouter) MemberAt(opts *bind.CallOpts, _index *big.Int) (common.Address, error)
- func (m *MockDiamondRouter) MembersCount(opts *bind.CallOpts) (*big.Int, error)
- func (m *MockDiamondRouter) ParseBurn(log types.Log) (*router.RouterBurn, error)
- func (m *MockDiamondRouter) ParseBurnERC721(log types.Log) (*router.RouterBurnERC721, error)
- func (m *MockDiamondRouter) ParseLock(log types.Log) (*router.RouterLock, error)
- func (m *MockDiamondRouter) ParseMint(log types.Log) (*router.RouterMint, error)
- func (m *MockDiamondRouter) ParseUnlock(log types.Log) (*router.RouterUnlock, error)
- func (m *MockDiamondRouter) TokenFeeData(opts *bind.CallOpts, _token common.Address) (struct{ ... }, error)
- func (m *MockDiamondRouter) WatchBurn(opts *bind.WatchOpts, sink chan<- *router.RouterBurn) (event.Subscription, error)
- func (m *MockDiamondRouter) WatchLock(opts *bind.WatchOpts, sink chan<- *router.RouterLock) (event.Subscription, error)
- type MockEVM
- func (m *MockEVM) BlockConfirmations() uint64
- func (m *MockEVM) BlockNumber(ctx context.Context) (uint64, error)
- func (m *MockEVM) CallContract(ctx context.Context, call ethereum.CallMsg, blockNumber *big.Int) ([]byte, error)
- func (m *MockEVM) ChainID(ctx context.Context) (*big.Int, error)
- func (m *MockEVM) CodeAt(ctx context.Context, contract common.Address, blockNumber *big.Int) ([]byte, error)
- func (m *MockEVM) EstimateGas(ctx context.Context, call ethereum.CallMsg) (gas uint64, err error)
- func (m *MockEVM) FilterLogs(ctx context.Context, q ethereum.FilterQuery) ([]types.Log, error)
- func (m *MockEVM) GetBlockTimestamp(blockNumber *big.Int) uint64
- func (m *MockEVM) GetChainID() uint64
- func (m *MockEVM) GetClient() client.Core
- func (m *MockEVM) GetPrivateKey() string
- func (m *MockEVM) HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error)
- func (m *MockEVM) PendingCodeAt(ctx context.Context, account common.Address) ([]byte, error)
- func (m *MockEVM) PendingNonceAt(ctx context.Context, account common.Address) (uint64, error)
- func (m *MockEVM) RetryBlockNumber() (uint64, error)
- func (m *MockEVM) RetryFilterLogs(q ethereum.FilterQuery) ([]types.Log, error)
- func (m *MockEVM) RetryTransactionByHash(hash common.Hash) (*types.Transaction, error)
- func (m *MockEVM) SendTransaction(ctx context.Context, tx *types.Transaction) error
- func (m *MockEVM) SetChainID(chainId uint64)
- func (m *MockEVM) SubscribeFilterLogs(ctx context.Context, query ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error)
- func (m *MockEVM) SuggestGasPrice(ctx context.Context) (*big.Int, error)
- func (m *MockEVM) SuggestGasTipCap(ctx context.Context) (*big.Int, error)
- func (m *MockEVM) ValidateContractDeployedAt(contractAddress string) (*common.Address, error)
- func (m *MockEVM) WaitForConfirmations(raw types.Log) error
- func (m *MockEVM) WaitForTransactionCallback(hex string, onSuccess, onRevert func(), onError func(err error))
- func (m *MockEVM) WaitForTransactionReceipt(hash common.Hash) (txReceipt *types.Receipt, err error)
- type MockEVMCore
- func (m *MockEVMCore) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error)
- func (m *MockEVMCore) BlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error)
- func (m *MockEVMCore) BlockNumber(ctx context.Context) (uint64, error)
- func (m *MockEVMCore) CallContract(ctx context.Context, call ethereum.CallMsg, blockNumber *big.Int) ([]byte, error)
- func (m *MockEVMCore) ChainID(ctx context.Context) (*big.Int, error)
- func (m *MockEVMCore) CodeAt(ctx context.Context, account common.Address, blockNumber *big.Int) ([]byte, error)
- func (m *MockEVMCore) EstimateGas(ctx context.Context, call ethereum.CallMsg) (gas uint64, err error)
- func (m *MockEVMCore) FilterLogs(ctx context.Context, q ethereum.FilterQuery) ([]types.Log, error)
- func (m *MockEVMCore) HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error)
- func (m *MockEVMCore) PendingCodeAt(ctx context.Context, account common.Address) ([]byte, error)
- func (m *MockEVMCore) PendingNonceAt(ctx context.Context, account common.Address) (uint64, error)
- func (m *MockEVMCore) SendTransaction(ctx context.Context, tx *types.Transaction) error
- func (m *MockEVMCore) SubscribeFilterLogs(ctx context.Context, query ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error)
- func (m *MockEVMCore) SuggestGasPrice(ctx context.Context) (*big.Int, error)
- func (m *MockEVMCore) SuggestGasTipCap(ctx context.Context) (*big.Int, error)
- func (m *MockEVMCore) TransactionByHash(ctx context.Context, hash common.Hash) (tx *types.Transaction, isPending bool, err error)
- func (m *MockEVMCore) TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error)
- type MockEvmFungibleToken
- func (m *MockEvmFungibleToken) BalanceOf(opts *bind.CallOpts, account common.Address) (*big.Int, error)
- func (m *MockEvmFungibleToken) Decimals(opts *bind.CallOpts) (uint8, error)
- func (m *MockEvmFungibleToken) Name(opts *bind.CallOpts) (string, error)
- func (m *MockEvmFungibleToken) Symbol(opts *bind.CallOpts) (string, error)
- func (m *MockEvmFungibleToken) TotalSupply(opts *bind.CallOpts) (*big.Int, error)
- type MockEvmNonFungibleToken
- type MockHederaMirror
- func (m *MockHederaMirror) AccountExists(accountID hedera.AccountID) bool
- func (m *MockHederaMirror) GetAccount(accountID string) (*account.AccountsResponse, error)
- func (m *MockHederaMirror) GetAccountByPublicKey(publicKey string) (*account.AccountsQueryResponse, error)
- func (m *MockHederaMirror) GetAccountCreditTransactionsAfterTimestamp(accountId hedera.AccountID, milestoneTimestamp int64) (*transaction.Response, error)
- func (m *MockHederaMirror) GetAccountCreditTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
- func (m *MockHederaMirror) GetAccountCreditTransactionsBetween(accountId hedera.AccountID, from, to int64) ([]transaction.Transaction, error)
- func (m *MockHederaMirror) GetAccountDebitTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
- func (m *MockHederaMirror) GetAccountTokenBurnTransactionsAfterTimestamp(accountId hedera.AccountID, from int64) (*transaction.Response, error)
- func (m *MockHederaMirror) GetAccountTokenBurnTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
- func (m *MockHederaMirror) GetAccountTokenMintTransactionsAfterTimestamp(accountId hedera.AccountID, from int64) (*transaction.Response, error)
- func (m *MockHederaMirror) GetAccountTokenMintTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
- func (m *MockHederaMirror) GetHBARUsdPrice() (price decimal.Decimal, err error)
- func (m *MockHederaMirror) GetLatestMessages(topicId hedera.TopicID, limit int64) ([]message.Message, error)
- func (m *MockHederaMirror) GetMessageBySequenceNumber(topicId hedera.TopicID, sequenceNumber int64) (*message.Message, error)
- func (m *MockHederaMirror) GetMessagesAfterTimestamp(topicId hedera.TopicID, from int64, limit int64) ([]message.Message, error)
- func (m *MockHederaMirror) GetMessagesForTopicBetween(topicId hedera.TopicID, from, to int64) ([]message.Message, error)
- func (m *MockHederaMirror) GetNft(tokenID string, serialNum int64) (*transaction.Nft, error)
- func (m *MockHederaMirror) GetNftTransactions(tokenID string, serialNum int64) (transaction.NftTransactionsResponse, error)
- func (m *MockHederaMirror) GetSchedule(scheduleID string) (*transaction.Schedule, error)
- func (m *MockHederaMirror) GetScheduledTransaction(transactionID string) (*transaction.Response, error)
- func (m *MockHederaMirror) GetStateProof(transactionID string) ([]byte, error)
- func (m *MockHederaMirror) GetSuccessfulTransaction(transactionID string) (transaction.Transaction, error)
- func (m *MockHederaMirror) GetToken(tokenID string) (*token.TokenResponse, error)
- func (m *MockHederaMirror) GetTransaction(transactionID string) (*transaction.Response, error)
- func (m *MockHederaMirror) GetTransactionsAfterTimestamp(accountId hedera.AccountID, startTimestamp int64, transactionType string) ([]transaction.Transaction, error)
- func (m *MockHederaMirror) QueryDefaultLimit() int64
- func (m *MockHederaMirror) QueryMaxLimit() int64
- func (m *MockHederaMirror) TopicExists(topicID hedera.TopicID) bool
- func (m *MockHederaMirror) WaitForScheduledTransaction(txId string, onSuccess, onFailure func())
- func (m *MockHederaMirror) WaitForTransaction(txId string, onSuccess, onFailure func())
- type MockHederaNode
- func (m *MockHederaNode) GetClient() *hedera.Client
- func (m *MockHederaNode) SubmitScheduleSign(scheduleID hedera.ScheduleID) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitScheduledHbarTransferTransaction(transfers []transfer.Hedera, payerAccountID hedera.AccountID, memo string) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitScheduledNftApproveTransaction(payer hedera.AccountID, memo string, nftId hedera.NftID, ...) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitScheduledNftTransferTransaction(nftID hedera.NftID, payerAccount hedera.AccountID, sender hedera.AccountID, ...) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitScheduledTokenBurnTransaction(id hedera.TokenID, amount int64, account hedera.AccountID, memo string) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitScheduledTokenMintTransaction(tokenID hedera.TokenID, amount int64, payerAccountID hedera.AccountID, ...) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitScheduledTokenTransferTransaction(tokenID hedera.TokenID, transfers []transfer.Hedera, ...) (*hedera.TransactionResponse, error)
- func (m *MockHederaNode) SubmitTopicConsensusMessage(topicId hedera.TopicID, message []byte) (*hedera.TransactionID, error)
- func (m *MockHederaNode) TransactionReceiptQuery(transactionID hedera.TransactionID, nodeAccIds []hedera.AccountID) (hedera.TransactionReceipt, error)
- type MockHttp
- type MockPricingClient
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockDiamondRouter ¶
func (*MockDiamondRouter) Erc721Payment ¶
func (*MockDiamondRouter) HasValidSignaturesLength ¶
func (*MockDiamondRouter) MembersCount ¶
func (*MockDiamondRouter) ParseBurn ¶
func (m *MockDiamondRouter) ParseBurn(log types.Log) (*router.RouterBurn, error)
func (*MockDiamondRouter) ParseBurnERC721 ¶
func (m *MockDiamondRouter) ParseBurnERC721(log types.Log) (*router.RouterBurnERC721, error)
func (*MockDiamondRouter) ParseLock ¶
func (m *MockDiamondRouter) ParseLock(log types.Log) (*router.RouterLock, error)
func (*MockDiamondRouter) ParseMint ¶
func (m *MockDiamondRouter) ParseMint(log types.Log) (*router.RouterMint, error)
func (*MockDiamondRouter) ParseUnlock ¶
func (m *MockDiamondRouter) ParseUnlock(log types.Log) (*router.RouterUnlock, error)
func (*MockDiamondRouter) TokenFeeData ¶
func (*MockDiamondRouter) WatchBurn ¶
func (m *MockDiamondRouter) WatchBurn(opts *bind.WatchOpts, sink chan<- *router.RouterBurn) (event.Subscription, error)
func (*MockDiamondRouter) WatchLock ¶
func (m *MockDiamondRouter) WatchLock(opts *bind.WatchOpts, sink chan<- *router.RouterLock) (event.Subscription, error)
type MockEVM ¶
func (*MockEVM) BlockConfirmations ¶
func (*MockEVM) CallContract ¶
func (*MockEVM) EstimateGas ¶
func (*MockEVM) FilterLogs ¶
func (*MockEVM) GetBlockTimestamp ¶
func (*MockEVM) GetChainID ¶
func (*MockEVM) GetPrivateKey ¶
func (*MockEVM) HeaderByNumber ¶
func (*MockEVM) PendingCodeAt ¶
func (*MockEVM) PendingNonceAt ¶
func (*MockEVM) RetryBlockNumber ¶
func (*MockEVM) RetryFilterLogs ¶
func (*MockEVM) RetryTransactionByHash ¶
func (*MockEVM) SendTransaction ¶
func (*MockEVM) SetChainID ¶
func (*MockEVM) SubscribeFilterLogs ¶
func (*MockEVM) SuggestGasPrice ¶
func (*MockEVM) SuggestGasTipCap ¶
func (*MockEVM) ValidateContractDeployedAt ¶
func (*MockEVM) WaitForTransactionCallback ¶
type MockEVMCore ¶
func (*MockEVMCore) BlockByHash ¶
func (*MockEVMCore) BlockByNumber ¶
func (*MockEVMCore) BlockNumber ¶
func (m *MockEVMCore) BlockNumber(ctx context.Context) (uint64, error)
func (*MockEVMCore) CallContract ¶
func (*MockEVMCore) EstimateGas ¶
func (m *MockEVMCore) EstimateGas(ctx context.Context, call ethereum.CallMsg) (gas uint64, err error)
func (*MockEVMCore) FilterLogs ¶
func (*MockEVMCore) HeaderByNumber ¶
func (*MockEVMCore) PendingCodeAt ¶
func (*MockEVMCore) PendingNonceAt ¶
func (*MockEVMCore) SendTransaction ¶
func (m *MockEVMCore) SendTransaction(ctx context.Context, tx *types.Transaction) error
func (*MockEVMCore) SubscribeFilterLogs ¶
func (*MockEVMCore) SuggestGasPrice ¶
func (*MockEVMCore) SuggestGasTipCap ¶
func (*MockEVMCore) TransactionByHash ¶
func (m *MockEVMCore) TransactionByHash(ctx context.Context, hash common.Hash) (tx *types.Transaction, isPending bool, err error)
func (*MockEVMCore) TransactionReceipt ¶
type MockEvmFungibleToken ¶
func (*MockEvmFungibleToken) Decimals ¶
func (m *MockEvmFungibleToken) Decimals(opts *bind.CallOpts) (uint8, error)
func (*MockEvmFungibleToken) Name ¶
func (m *MockEvmFungibleToken) Name(opts *bind.CallOpts) (string, error)
func (*MockEvmFungibleToken) Symbol ¶
func (m *MockEvmFungibleToken) Symbol(opts *bind.CallOpts) (string, error)
func (*MockEvmFungibleToken) TotalSupply ¶
type MockEvmNonFungibleToken ¶
type MockHederaMirror ¶
func (*MockHederaMirror) AccountExists ¶
func (m *MockHederaMirror) AccountExists(accountID hedera.AccountID) bool
func (*MockHederaMirror) GetAccount ¶
func (m *MockHederaMirror) GetAccount(accountID string) (*account.AccountsResponse, error)
func (*MockHederaMirror) GetAccountByPublicKey ¶ added in v1.5.2
func (m *MockHederaMirror) GetAccountByPublicKey(publicKey string) (*account.AccountsQueryResponse, error)
func (*MockHederaMirror) GetAccountCreditTransactionsAfterTimestamp ¶
func (m *MockHederaMirror) GetAccountCreditTransactionsAfterTimestamp(accountId hedera.AccountID, milestoneTimestamp int64) (*transaction.Response, error)
func (*MockHederaMirror) GetAccountCreditTransactionsAfterTimestampString ¶
func (m *MockHederaMirror) GetAccountCreditTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
func (*MockHederaMirror) GetAccountCreditTransactionsBetween ¶
func (m *MockHederaMirror) GetAccountCreditTransactionsBetween(accountId hedera.AccountID, from, to int64) ([]transaction.Transaction, error)
func (*MockHederaMirror) GetAccountDebitTransactionsAfterTimestampString ¶
func (m *MockHederaMirror) GetAccountDebitTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
func (*MockHederaMirror) GetAccountTokenBurnTransactionsAfterTimestamp ¶
func (m *MockHederaMirror) GetAccountTokenBurnTransactionsAfterTimestamp(accountId hedera.AccountID, from int64) (*transaction.Response, error)
func (*MockHederaMirror) GetAccountTokenBurnTransactionsAfterTimestampString ¶
func (m *MockHederaMirror) GetAccountTokenBurnTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
func (*MockHederaMirror) GetAccountTokenMintTransactionsAfterTimestamp ¶
func (m *MockHederaMirror) GetAccountTokenMintTransactionsAfterTimestamp(accountId hedera.AccountID, from int64) (*transaction.Response, error)
func (*MockHederaMirror) GetAccountTokenMintTransactionsAfterTimestampString ¶
func (m *MockHederaMirror) GetAccountTokenMintTransactionsAfterTimestampString(accountId hedera.AccountID, from string) (*transaction.Response, error)
func (*MockHederaMirror) GetHBARUsdPrice ¶
func (m *MockHederaMirror) GetHBARUsdPrice() (price decimal.Decimal, err error)
func (*MockHederaMirror) GetLatestMessages ¶
func (m *MockHederaMirror) GetLatestMessages(topicId hedera.TopicID, limit int64) ([]message.Message, error)
func (*MockHederaMirror) GetMessageBySequenceNumber ¶
func (m *MockHederaMirror) GetMessageBySequenceNumber(topicId hedera.TopicID, sequenceNumber int64) (*message.Message, error)
func (*MockHederaMirror) GetMessagesAfterTimestamp ¶
func (*MockHederaMirror) GetMessagesForTopicBetween ¶
func (m *MockHederaMirror) GetMessagesForTopicBetween(topicId hedera.TopicID, from, to int64) ([]message.Message, error)
func (*MockHederaMirror) GetNft ¶
func (m *MockHederaMirror) GetNft(tokenID string, serialNum int64) (*transaction.Nft, error)
func (*MockHederaMirror) GetNftTransactions ¶
func (m *MockHederaMirror) GetNftTransactions(tokenID string, serialNum int64) (transaction.NftTransactionsResponse, error)
func (*MockHederaMirror) GetSchedule ¶
func (m *MockHederaMirror) GetSchedule(scheduleID string) (*transaction.Schedule, error)
func (*MockHederaMirror) GetScheduledTransaction ¶
func (m *MockHederaMirror) GetScheduledTransaction(transactionID string) (*transaction.Response, error)
func (*MockHederaMirror) GetStateProof ¶
func (m *MockHederaMirror) GetStateProof(transactionID string) ([]byte, error)
func (*MockHederaMirror) GetSuccessfulTransaction ¶
func (m *MockHederaMirror) GetSuccessfulTransaction(transactionID string) (transaction.Transaction, error)
GetSuccessfulTransaction gets the success transaction by transaction id or returns an error
func (*MockHederaMirror) GetToken ¶
func (m *MockHederaMirror) GetToken(tokenID string) (*token.TokenResponse, error)
func (*MockHederaMirror) GetTransaction ¶
func (m *MockHederaMirror) GetTransaction(transactionID string) (*transaction.Response, error)
func (*MockHederaMirror) GetTransactionsAfterTimestamp ¶
func (m *MockHederaMirror) GetTransactionsAfterTimestamp(accountId hedera.AccountID, startTimestamp int64, transactionType string) ([]transaction.Transaction, error)
func (*MockHederaMirror) QueryDefaultLimit ¶
func (m *MockHederaMirror) QueryDefaultLimit() int64
func (*MockHederaMirror) QueryMaxLimit ¶
func (m *MockHederaMirror) QueryMaxLimit() int64
func (*MockHederaMirror) TopicExists ¶
func (m *MockHederaMirror) TopicExists(topicID hedera.TopicID) bool
func (*MockHederaMirror) WaitForScheduledTransaction ¶
func (m *MockHederaMirror) WaitForScheduledTransaction(txId string, onSuccess, onFailure func())
func (*MockHederaMirror) WaitForTransaction ¶
func (m *MockHederaMirror) WaitForTransaction(txId string, onSuccess, onFailure func())
type MockHederaNode ¶
func (*MockHederaNode) GetClient ¶
func (m *MockHederaNode) GetClient() *hedera.Client
func (*MockHederaNode) SubmitScheduleSign ¶
func (m *MockHederaNode) SubmitScheduleSign(scheduleID hedera.ScheduleID) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitScheduledHbarTransferTransaction ¶
func (m *MockHederaNode) SubmitScheduledHbarTransferTransaction( transfers []transfer.Hedera, payerAccountID hedera.AccountID, memo string) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitScheduledNftApproveTransaction ¶
func (m *MockHederaNode) SubmitScheduledNftApproveTransaction(payer hedera.AccountID, memo string, nftId hedera.NftID, owner, spender hedera.AccountID) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitScheduledNftTransferTransaction ¶
func (m *MockHederaNode) SubmitScheduledNftTransferTransaction(nftID hedera.NftID, payerAccount hedera.AccountID, sender hedera.AccountID, receiving hedera.AccountID, memo string, approved bool) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitScheduledTokenBurnTransaction ¶
func (m *MockHederaNode) SubmitScheduledTokenBurnTransaction(id hedera.TokenID, amount int64, account hedera.AccountID, memo string) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitScheduledTokenMintTransaction ¶
func (m *MockHederaNode) SubmitScheduledTokenMintTransaction(tokenID hedera.TokenID, amount int64, payerAccountID hedera.AccountID, memo string) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitScheduledTokenTransferTransaction ¶
func (m *MockHederaNode) SubmitScheduledTokenTransferTransaction( tokenID hedera.TokenID, transfers []transfer.Hedera, payerAccountID hedera.AccountID, memo string) (*hedera.TransactionResponse, error)
func (*MockHederaNode) SubmitTopicConsensusMessage ¶
func (m *MockHederaNode) SubmitTopicConsensusMessage(topicId hedera.TopicID, message []byte) (*hedera.TransactionID, error)
func (*MockHederaNode) TransactionReceiptQuery ¶
func (m *MockHederaNode) TransactionReceiptQuery(transactionID hedera.TransactionID, nodeAccIds []hedera.AccountID) (hedera.TransactionReceipt, error)
type MockPricingClient ¶
Click to show internal directories.
Click to hide internal directories.