Documentation ¶
Index ¶
- Constants
- type API
- func (api *API) AddCustomToken(ctx context.Context, token token.Token) error
- func (api *API) AddEthereumChain(ctx context.Context, network params.Network) error
- func (api *API) AddressExists(ctx context.Context, address types.Address) (bool, error)
- func (api *API) BuildRawTransaction(ctx context.Context, chainID uint64, sendTxArgsJSON string, signature string) (response *transfer.TxResponse, err error)
- func (api *API) BuildTransaction(ctx context.Context, chainID uint64, sendTxArgsJSON string) (response *transfer.TxResponse, err error)
- func (api *API) CancelActivityFilterTask(requestID int32) error
- func (api *API) CheckRecentHistory(ctx context.Context, addresses []common.Address) error
- func (api *API) CheckRecentHistoryForChainIDs(ctx context.Context, chainIDs []uint64, addresses []common.Address) error
- func (api *API) CreateMultiTransaction(ctx context.Context, multiTransactionCommand *transfer.MultiTransactionCommand, ...) (*transfer.MultiTransactionCommandResult, error)
- func (api *API) DeleteCustomToken(ctx context.Context, address common.Address) error
- func (api *API) DeleteCustomTokenByChainID(ctx context.Context, chainID uint64, address common.Address) error
- func (api *API) DeleteEthereumChain(ctx context.Context, chainID uint64) error
- func (api *API) DiscoverToken(ctx context.Context, chainID uint64, address common.Address) (*token.Token, error)
- func (api *API) FetchAllCurrencyFormats() (currency.FormatPerSymbol, error)
- func (api *API) FetchBalancesByOwnerAndContractAddress(ctx context.Context, chainID wcommon.ChainID, ownerAddress common.Address, ...) (thirdparty.TokenBalancesPerContractAddress, error)
- func (api *API) FetchChainIDForURL(ctx context.Context, rpcURL string) (*big.Int, error)
- func (api *API) FetchDecodedTxData(ctx context.Context, data string) (*thirdparty.DataParsed, error)
- func (api *API) FetchMarketValues(ctx context.Context, symbols []string, currency string) (map[string]thirdparty.TokenMarketValues, error)
- func (api *API) FetchOrGetCachedWalletBalances(ctx context.Context, addresses []common.Address) (map[common.Address][]Token, error)
- func (api *API) FetchPrices(ctx context.Context, symbols []string, currencies []string) (map[string]map[string]float64, error)
- func (api *API) FetchTokenDetails(ctx context.Context, symbols []string) (map[string]thirdparty.TokenDetails, error)
- func (api *API) FilterActivityAsync(requestID int32, addresses []common.Address, allAddresses bool, ...) error
- func (api *API) GetActivityCollectiblesAsync(requestID int32, chainIDs []wcommon.ChainID, addresses []common.Address, ...) error
- func (api *API) GetAddressDetails(ctx context.Context, chainID uint64, address string) (*DerivedAddress, error)
- func (api *API) GetBalanceHistory(ctx context.Context, chainIDs []uint64, addresses []common.Address, ...) ([]*history.ValuePoint, error)
- func (api *API) GetBalanceHistoryRange(ctx context.Context, chainIDs []uint64, addresses []common.Address, ...) ([]*history.ValuePoint, error)
- func (api *API) GetBalancesByChain(ctx context.Context, chainIDs []uint64, addresses, tokens []common.Address) (map[uint64]map[common.Address]map[common.Address]*hexutil.Big, error)
- func (api *API) GetCachedCurrencyFormats() (currency.FormatPerSymbol, error)
- func (api *API) GetCachedWalletTokensWithoutMarketData(ctx context.Context) (map[common.Address][]Token, error)
- func (api *API) GetCollectibleOwnersByContractAddress(ctx context.Context, chainID wcommon.ChainID, contractAddress common.Address) (*thirdparty.CollectibleContractOwnership, error)
- func (api *API) GetCollectibleOwnership(id thirdparty.CollectibleUniqueID) ([]thirdparty.AccountBalance, error)
- func (api *API) GetCollectiblesByUniqueIDAsync(requestID int32, uniqueIDs []thirdparty.CollectibleUniqueID, ...) error
- func (api *API) GetCryptoOnRamps(ctx context.Context) ([]CryptoOnRamp, error)
- func (api *API) GetCustomTokens(ctx context.Context) ([]*token.Token, error)
- func (api *API) GetDailyMarketValues(ctx context.Context, symbol string, currency string, limit int, allData bool, ...) ([]thirdparty.HistoricalPrice, error)
- func (api *API) GetDerivedAddresses(ctx context.Context, password string, derivedFrom string, paths []string) ([]*DerivedAddress, error)
- func (api *API) GetDerivedAddressesForMnemonic(ctx context.Context, mnemonic string, paths []string) ([]*DerivedAddress, error)
- func (api *API) GetEstimatedLatestBlockNumber(ctx context.Context, chainID uint64) (uint64, error)
- func (api *API) GetEthereumChains(ctx context.Context) ([]*network.CombinedNetwork, error)
- func (api *API) GetHourlyMarketValues(ctx context.Context, symbol string, currency string, limit int, aggregate int) ([]thirdparty.HistoricalPrice, error)
- func (api *API) GetMoreForActivityFilterSession(id activity.SessionID, pageCount int) error
- func (api *API) GetMultiTransactions(ctx context.Context, transactionIDs []wcommon.MultiTransactionIDType) ([]*transfer.MultiTransaction, error)
- func (api *API) GetMultiTxDetails(ctx context.Context, multiTxID int) (*activity.EntryDetails, error)
- func (api *API) GetOldestActivityTimestampAsync(requestID int32, addresses []common.Address) error
- func (api *API) GetOwnedCollectiblesAsync(requestID int32, chainIDs []wcommon.ChainID, addresses []common.Address, ...) error
- func (api *API) GetPairingsJSONFileContent() ([]byte, error)
- func (api *API) GetPendingTransactions(ctx context.Context) ([]*transactions.PendingTransaction, error)
- func (api *API) GetPendingTransactionsForIdentities(ctx context.Context, identities []transfer.TransactionIdentity) (result []*transactions.PendingTransaction, err error)
- func (api *API) GetRecipientsAsync(requestID int32, chainIDs []wcommon.ChainID, addresses []common.Address, ...) (ignored bool, err error)
- func (api *API) GetSuggestedFees(ctx context.Context, chainID uint64) (*SuggestedFees, error)
- func (api *API) GetSuggestedRoutes(ctx context.Context, sendType SendType, addrFrom common.Address, ...) (*SuggestedRoutes, error)
- func (api *API) GetTokenList(ctx context.Context) (*token.ListWrapper, error)
- func (api *API) GetTokens(ctx context.Context, chainID uint64) ([]*token.Token, error)
- func (api *API) GetTransactionEstimatedTime(ctx context.Context, chainID uint64, maxFeePerGas *big.Float) (TransactionEstimation, error)
- func (api *API) GetTransfersByAddress(ctx context.Context, address common.Address, toBlock, limit *hexutil.Big, ...) ([]transfer.View, error)
- func (api *API) GetTransfersByAddressAndChainID(ctx context.Context, chainID uint64, address common.Address, ...) ([]transfer.View, error)
- func (api *API) GetTransfersForIdentities(ctx context.Context, identities []transfer.TransactionIdentity) ([]transfer.View, error)
- func (api *API) GetTxDetails(ctx context.Context, id string) (*activity.EntryDetails, error)
- func (api *API) GetWalletToken(ctx context.Context, addresses []common.Address) (map[common.Address][]Token, error)
- func (api *API) GetWalletTokenBalances(ctx context.Context, addresses []common.Address) (map[common.Address][]Token, error)
- func (api *API) LoadTransferByHash(ctx context.Context, address common.Address, hash common.Hash) error
- func (api *API) ProceedWithTransactionsSignatures(ctx context.Context, signatures map[string]transfer.SignatureDetails) (*transfer.MultiTransactionCommandResult, error)
- func (api *API) RefetchOwnedCollectibles() error
- func (api *API) ResetActivityFilterSession(id activity.SessionID, firstPageCount int) error
- func (api *API) SearchCollectibles(ctx context.Context, chainID wcommon.ChainID, text string, cursor string, ...) (*thirdparty.FullCollectibleDataContainer, error)
- func (api *API) SearchCollections(ctx context.Context, chainID wcommon.ChainID, text string, cursor string, ...) (*thirdparty.CollectionDataContainer, error)
- func (api *API) SendTransactionWithSignature(ctx context.Context, chainID uint64, txType transactions.PendingTrxType, ...) (hash types.Hash, err error)
- func (api *API) SetPairingsJSONFileContent(content []byte) error
- func (api *API) SignMessage(ctx context.Context, message types.HexBytes, address common.Address, ...) (string, error)
- func (api *API) StartActivityFilterSession(addresses []common.Address, allAddresses bool, chainIDs []wcommon.ChainID, ...) (activity.SessionID, error)
- func (api *API) StartWallet(ctx context.Context) error
- func (api *API) StopActivityFilterSession(id activity.SessionID)
- func (api *API) StopWallet(ctx context.Context) error
- func (api *API) UpdateActivityFilterForSession(sessionID activity.SessionID, filter activity.Filter, firstPageCount int) error
- func (api *API) WCAuthRequest(ctx context.Context, address common.Address, authMessage string) (*transfer.TxResponse, error)
- func (api *API) WCChangeSessionState(ctx context.Context, topic walletconnect.Topic, active bool) error
- func (api *API) WCPairSessionProposal(ctx context.Context, sessionProposalJSON string) (*wc.PairSessionResponse, error)
- func (api *API) WCSaveOrUpdateSession(ctx context.Context, sessionProposalJSON string) error
- func (api *API) WCSessionRequest(ctx context.Context, sessionRequestJSON string) (*transfer.TxResponse, error)
- func (api *API) WatchTransactionByChainID(ctx context.Context, chainID uint64, transactionHash common.Hash) (err error)
- type ChainBalance
- type CryptoOnRamp
- type CryptoOnRampManager
- type CryptoOnRampOptions
- type DataSourceType
- type Decoder
- type DerivedAddress
- type FeeHistory
- type FeeManager
- type GasFeeMode
- type Graph
- type KeycardPairings
- type Node
- type Path
- type Persistence
- type Reader
- func (r *Reader) FetchOrGetCachedWalletBalances(ctx context.Context, addresses []common.Address) (map[common.Address][]Token, error)
- func (r *Reader) GetCachedWalletTokensWithoutMarketData() (map[common.Address][]Token, error)
- func (r *Reader) GetWalletToken(ctx context.Context, addresses []common.Address) (map[common.Address][]Token, error)
- func (r *Reader) GetWalletTokenBalances(ctx context.Context, addresses []common.Address) (map[common.Address][]Token, error)
- func (r *Reader) Start() error
- func (r *Reader) Stop()
- type Router
- type SavedAddress
- type SavedAddressesManager
- func (sam *SavedAddressesManager) AddSavedAddressIfNewerUpdate(sa SavedAddress) (insertedOrUpdated bool, err error)
- func (sam *SavedAddressesManager) DeleteSavedAddress(address common.Address, isTest bool, updateClock uint64) (deleted bool, err error)
- func (sam *SavedAddressesManager) DeleteSoftRemovedSavedAddresses(threshold uint64) error
- func (sam *SavedAddressesManager) GetRawSavedAddresses() ([]*SavedAddress, error)
- func (sam *SavedAddressesManager) GetSavedAddresses() ([]*SavedAddress, error)
- func (sam *SavedAddressesManager) UpdateMetadataAndUpsertSavedAddress(sa SavedAddress) error
- type SendType
- func (s SendType) EstimateGas(service *Service, network *params.Network, from common.Address, tokenID string) uint64
- func (s SendType) FetchPrices(service *Service, tokenID string) (map[string]float64, error)
- func (s SendType) FindToken(service *Service, account common.Address, network *params.Network, ...) *token.Token
- func (s SendType) IsCollectiblesTransfer() bool
- type Service
- func (s *Service) APIs() []gethrpc.API
- func (s *Service) IsStarted() bool
- func (s *Service) KeycardPairings() *KeycardPairings
- func (s *Service) Protocols() []p2p.Protocol
- func (s *Service) SetWalletCommunityInfoProvider(provider thirdparty.CommunityInfoProvider)
- func (s *Service) Start() error
- func (s *Service) Stop() error
- type SuggestedFees
- type SuggestedRoutes
- type Token
- type TokenMarketValues
- type TransactionEstimation
Constants ¶
const ERC1155TransferString = "ERC1155Transfer"
const ERC721TransferString = "ERC721Transfer"
const EstimatePubKey = "" /* 132-byte string literal not displayed */
const EstimateUsername = "RandomUsername"
const (
EventBlockchainStatusChanged walletevent.EventType = "wallet-blockchain-status-changed"
)
const EventWalletTickCheckConnected walletevent.EventType = "wallet-tick-check-connected"
const EventWalletTickReload walletevent.EventType = "wallet-tick-reload"
WalletTickReload emitted every 15mn to reload the wallet balance and history
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type API ¶
type API struct {
// contains filtered or unexported fields
}
API is class with methods available over RPC.
func (*API) AddCustomToken ¶ added in v0.38.1
func (*API) AddEthereumChain ¶ added in v0.86.7
func (*API) AddressExists ¶ added in v0.152.3
func (*API) BuildRawTransaction ¶ added in v0.171.27
func (*API) BuildTransaction ¶ added in v0.171.25
func (*API) CancelActivityFilterTask ¶ added in v0.167.5
@deprecated replaced by session APIs; see #12120
func (*API) CheckRecentHistory ¶ added in v0.75.0
@deprecated
func (*API) CheckRecentHistoryForChainIDs ¶ added in v0.86.7
func (api *API) CheckRecentHistoryForChainIDs(ctx context.Context, chainIDs []uint64, addresses []common.Address) error
@deprecated
func (*API) CreateMultiTransaction ¶ added in v0.103.2
func (api *API) CreateMultiTransaction(ctx context.Context, multiTransactionCommand *transfer.MultiTransactionCommand, data []*bridge.TransactionBridge, password string) (*transfer.MultiTransactionCommandResult, error)
func (*API) DeleteCustomToken ¶ added in v0.38.1
@deprecated
func (*API) DeleteCustomTokenByChainID ¶ added in v0.86.7
func (*API) DeleteEthereumChain ¶ added in v0.86.7
func (*API) DiscoverToken ¶ added in v0.98.1
func (*API) FetchAllCurrencyFormats ¶ added in v0.131.11
func (api *API) FetchAllCurrencyFormats() (currency.FormatPerSymbol, error)
func (*API) FetchBalancesByOwnerAndContractAddress ¶ added in v0.162.5
func (*API) FetchChainIDForURL ¶ added in v0.162.5
func (*API) FetchDecodedTxData ¶ added in v0.159.2
func (api *API) FetchDecodedTxData(ctx context.Context, data string) (*thirdparty.DataParsed, error)
func (*API) FetchMarketValues ¶ added in v0.106.1
func (api *API) FetchMarketValues(ctx context.Context, symbols []string, currency string) (map[string]thirdparty.TokenMarketValues, error)
@deprecated
func (*API) FetchOrGetCachedWalletBalances ¶ added in v0.173.0
func (*API) FetchPrices ¶ added in v0.96.4
func (api *API) FetchPrices(ctx context.Context, symbols []string, currencies []string) (map[string]map[string]float64, error)
@deprecated
func (*API) FetchTokenDetails ¶ added in v0.106.1
func (api *API) FetchTokenDetails(ctx context.Context, symbols []string) (map[string]thirdparty.TokenDetails, error)
@deprecated
func (*API) FilterActivityAsync ¶ added in v0.158.0
func (api *API) FilterActivityAsync(requestID int32, addresses []common.Address, allAddresses bool, chainIDs []wcommon.ChainID, filter activity.Filter, offset int, limit int) error
@deprecated replaced by session APIs; see #12120
func (*API) GetActivityCollectiblesAsync ¶ added in v0.167.5
func (*API) GetAddressDetails ¶ added in v0.142.1
func (api *API) GetAddressDetails(ctx context.Context, chainID uint64, address string) (*DerivedAddress, error)
Returns details for the passed address (response doesn't include derivation path)
func (*API) GetBalanceHistory ¶ added in v0.114.3
func (api *API) GetBalanceHistory(ctx context.Context, chainIDs []uint64, addresses []common.Address, tokenSymbol string, currencySymbol string, timeInterval history.TimeInterval) ([]*history.ValuePoint, error)
GetBalanceHistory retrieves token balance history for token identity on multiple chains
func (*API) GetBalanceHistoryRange ¶ added in v0.168.1
func (api *API) GetBalanceHistoryRange(ctx context.Context, chainIDs []uint64, addresses []common.Address, tokenSymbol string, currencySymbol string, fromTimestamp uint64, _ uint64) ([]*history.ValuePoint, error)
GetBalanceHistoryRange retrieves token balance history for token identity on multiple chains for a time range 'toTimestamp' is ignored for now, but will be used in the future to limit the range of the history
func (*API) GetBalancesByChain ¶ added in v0.171.39
func (api *API) GetBalancesByChain(ctx context.Context, chainIDs []uint64, addresses, tokens []common.Address) (map[uint64]map[common.Address]map[common.Address]*hexutil.Big, error)
GetBalancesByChain return a map with key as chain id and value as map of account address and map of token address and balance [chainID]account[token]balance
func (*API) GetCachedCurrencyFormats ¶ added in v0.131.11
func (api *API) GetCachedCurrencyFormats() (currency.FormatPerSymbol, error)
func (*API) GetCachedWalletTokensWithoutMarketData ¶ added in v0.151.13
func (*API) GetCollectibleOwnersByContractAddress ¶ added in v0.146.3
func (api *API) GetCollectibleOwnersByContractAddress(ctx context.Context, chainID wcommon.ChainID, contractAddress common.Address) (*thirdparty.CollectibleContractOwnership, error)
func (*API) GetCollectibleOwnership ¶ added in v0.175.3
func (api *API) GetCollectibleOwnership(id thirdparty.CollectibleUniqueID) ([]thirdparty.AccountBalance, error)
func (*API) GetCollectiblesByUniqueIDAsync ¶ added in v0.171.21
func (api *API) GetCollectiblesByUniqueIDAsync(requestID int32, uniqueIDs []thirdparty.CollectibleUniqueID, dataType collectibles.CollectibleDataType) error
func (*API) GetCryptoOnRamps ¶ added in v0.71.4
func (api *API) GetCryptoOnRamps(ctx context.Context) ([]CryptoOnRamp, error)
func (*API) GetCustomTokens ¶ added in v0.38.1
@deprecated
func (*API) GetDailyMarketValues ¶ added in v0.111.5
func (*API) GetDerivedAddresses ¶ added in v0.142.1
func (api *API) GetDerivedAddresses(ctx context.Context, password string, derivedFrom string, paths []string) ([]*DerivedAddress, error)
Generates addresses for the provided paths, response doesn't include `HasActivity` value (if you need it check `GetAddressDetails` function)
func (*API) GetDerivedAddressesForMnemonic ¶ added in v0.142.1
func (api *API) GetDerivedAddressesForMnemonic(ctx context.Context, mnemonic string, paths []string) ([]*DerivedAddress, error)
Generates addresses for the provided paths derived from the provided mnemonic, response doesn't include `HasActivity` value (if you need it check `GetAddressDetails` function)
func (*API) GetEstimatedLatestBlockNumber ¶ added in v0.166.7
func (*API) GetEthereumChains ¶ added in v0.86.7
func (*API) GetHourlyMarketValues ¶ added in v0.111.5
func (api *API) GetHourlyMarketValues(ctx context.Context, symbol string, currency string, limit int, aggregate int) ([]thirdparty.HistoricalPrice, error)
func (*API) GetMoreForActivityFilterSession ¶ added in v0.174.6
func (*API) GetMultiTransactions ¶ added in v0.138.1
func (api *API) GetMultiTransactions(ctx context.Context, transactionIDs []wcommon.MultiTransactionIDType) ([]*transfer.MultiTransaction, error)
func (*API) GetMultiTxDetails ¶ added in v0.166.1
func (*API) GetOldestActivityTimestampAsync ¶ added in v0.161.2
func (*API) GetOwnedCollectiblesAsync ¶ added in v0.171.21
func (api *API) GetOwnedCollectiblesAsync(requestID int32, chainIDs []wcommon.ChainID, addresses []common.Address, filter collectibles.Filter, offset int, limit int, dataType collectibles.CollectibleDataType, fetchCriteria collectibles.FetchCriteria) error
func (*API) GetPairingsJSONFileContent ¶ added in v0.166.11
func (*API) GetPendingTransactions ¶ added in v0.62.0
func (api *API) GetPendingTransactions(ctx context.Context) ([]*transactions.PendingTransaction, error)
@deprecated Not used by status-desktop anymore
func (*API) GetPendingTransactionsForIdentities ¶ added in v0.151.4
func (api *API) GetPendingTransactionsForIdentities(ctx context.Context, identities []transfer.TransactionIdentity) ( result []*transactions.PendingTransaction, err error)
@deprecated Not used by status-desktop anymore
func (*API) GetRecipientsAsync ¶ added in v0.161.2
func (*API) GetSuggestedFees ¶ added in v0.97.4
func (*API) GetSuggestedRoutes ¶ added in v0.101.1
func (api *API) GetSuggestedRoutes( ctx context.Context, sendType SendType, addrFrom common.Address, addrTo common.Address, amountIn *hexutil.Big, tokenID string, disabledFromChainIDs, disabledToChaindIDs, preferedChainIDs []uint64, gasFeeMode GasFeeMode, fromLockedAmount map[uint64]*hexutil.Big, ) (*SuggestedRoutes, error)
func (*API) GetTokenList ¶ added in v0.171.21
func (*API) GetTransactionEstimatedTime ¶ added in v0.103.2
func (api *API) GetTransactionEstimatedTime(ctx context.Context, chainID uint64, maxFeePerGas *big.Float) (TransactionEstimation, error)
@deprecated
func (*API) GetTransfersByAddress ¶
func (api *API) GetTransfersByAddress(ctx context.Context, address common.Address, toBlock, limit *hexutil.Big, fetchMore bool) ([]transfer.View, error)
@deprecated GetTransfersByAddress returns transfers for a single address
func (*API) GetTransfersByAddressAndChainID ¶ added in v0.86.7
func (api *API) GetTransfersByAddressAndChainID(ctx context.Context, chainID uint64, address common.Address, toBlock, limit *hexutil.Big, fetchMore bool) ([]transfer.View, error)
@deprecated
func (*API) GetTransfersForIdentities ¶ added in v0.151.4
func (api *API) GetTransfersForIdentities(ctx context.Context, identities []transfer.TransactionIdentity) ([]transfer.View, error)
@deprecated
func (*API) GetTxDetails ¶ added in v0.166.1
func (*API) GetWalletToken ¶ added in v0.115.5
func (*API) GetWalletTokenBalances ¶ added in v0.172.1
func (*API) LoadTransferByHash ¶ added in v0.91.10
func (api *API) LoadTransferByHash(ctx context.Context, address common.Address, hash common.Hash) error
@deprecated LoadTransferByHash loads transfer to the database Only used by status-mobile
func (*API) ProceedWithTransactionsSignatures ¶ added in v0.171.1
func (api *API) ProceedWithTransactionsSignatures(ctx context.Context, signatures map[string]transfer.SignatureDetails) (*transfer.MultiTransactionCommandResult, error)
func (*API) RefetchOwnedCollectibles ¶ added in v0.167.5
func (*API) ResetActivityFilterSession ¶ added in v0.174.6
func (*API) SearchCollectibles ¶ added in v0.177.0
func (*API) SearchCollections ¶ added in v0.177.0
func (*API) SendTransactionWithSignature ¶ added in v0.171.25
func (*API) SetPairingsJSONFileContent ¶ added in v0.166.11
func (*API) SignMessage ¶ added in v0.171.25
func (*API) StartActivityFilterSession ¶ added in v0.173.0
func (*API) StopActivityFilterSession ¶ added in v0.173.0
func (*API) UpdateActivityFilterForSession ¶ added in v0.176.3
func (*API) WCAuthRequest ¶ added in v0.171.30
func (api *API) WCAuthRequest(ctx context.Context, address common.Address, authMessage string) (*transfer.TxResponse, error)
WCAuthRequest responds to "auth_request" event
func (*API) WCChangeSessionState ¶ added in v0.171.33
func (api *API) WCChangeSessionState(ctx context.Context, topic walletconnect.Topic, active bool) error
WCChangeSessionState changes the active state of a session
func (*API) WCPairSessionProposal ¶ added in v0.171.21
func (api *API) WCPairSessionProposal(ctx context.Context, sessionProposalJSON string) (*wc.PairSessionResponse, error)
WCPairSessionProposal responds to "session_proposal" event
func (*API) WCSaveOrUpdateSession ¶ added in v0.171.33
WCSaveOrUpdateSession records a session established between Status app and dapp
func (*API) WCSessionRequest ¶ added in v0.171.21
func (api *API) WCSessionRequest(ctx context.Context, sessionRequestJSON string) (*transfer.TxResponse, error)
WCSessionRequest responds to "session_request" event
func (*API) WatchTransactionByChainID ¶ added in v0.86.7
func (api *API) WatchTransactionByChainID(ctx context.Context, chainID uint64, transactionHash common.Hash) (err error)
@deprecated TODO - #11861: Remove this and replace with EventPendingTransactionStatusChanged event and Delete to confirm the transaction where it is needed
type ChainBalance ¶ added in v0.115.5
type CryptoOnRamp ¶ added in v0.71.4
type CryptoOnRamp struct { Name string `json:"name"` Description string `json:"description"` Fees string `json:"fees"` LogoURL string `json:"logoUrl"` SiteURL string `json:"siteUrl"` Hostname string `json:"hostname"` Params map[string]string `json:"params"` // TODO implement params in JSON and parsing status-mobile }
type CryptoOnRampManager ¶ added in v0.71.4
func NewCryptoOnRampManager ¶ added in v0.71.4
func NewCryptoOnRampManager(options *CryptoOnRampOptions) *CryptoOnRampManager
func (*CryptoOnRampManager) Get ¶ added in v0.71.4
func (c *CryptoOnRampManager) Get() ([]CryptoOnRamp, error)
type CryptoOnRampOptions ¶ added in v0.71.4
type CryptoOnRampOptions struct {
// contains filtered or unexported fields
}
type DataSourceType ¶ added in v0.71.4
type DataSourceType int
const ( DataSourceHTTP DataSourceType = iota + 1 DataSourceStatic )
type Decoder ¶ added in v0.161.2
type Decoder struct { Main *fourbytegithub.Client Fallback *fourbyte.Client }
func NewDecoder ¶ added in v0.161.2
func NewDecoder() *Decoder
func (*Decoder) Decode ¶ added in v0.161.2
func (d *Decoder) Decode(data string) (*thirdparty.DataParsed, error)
type DerivedAddress ¶ added in v0.100.0
type FeeHistory ¶ added in v0.97.4
type FeeHistory struct {
BaseFeePerGas []string `json:"baseFeePerGas"`
}
type FeeManager ¶ added in v0.97.4
type GasFeeMode ¶ added in v0.113.0
type GasFeeMode int
const ( GasFeeLow GasFeeMode = iota GasFeeMedium GasFeeHigh )
type KeycardPairings ¶ added in v0.166.11
type KeycardPairings struct {
// contains filtered or unexported fields
}
func NewKeycardPairings ¶ added in v0.166.11
func NewKeycardPairings() *KeycardPairings
func (*KeycardPairings) GetPairingsJSONFileContent ¶ added in v0.166.11
func (kp *KeycardPairings) GetPairingsJSONFileContent() ([]byte, error)
func (*KeycardPairings) SetKeycardPairingsFile ¶ added in v0.166.11
func (kp *KeycardPairings) SetKeycardPairingsFile(filePath string)
func (*KeycardPairings) SetPairingsJSONFileContent ¶ added in v0.166.11
func (kp *KeycardPairings) SetPairingsJSONFileContent(content []byte) error
type Path ¶ added in v0.113.0
type Path struct { BridgeName string From *params.Network To *params.Network MaxAmountIn *hexutil.Big AmountIn *hexutil.Big AmountInLocked bool AmountOut *hexutil.Big GasAmount uint64 GasFees *SuggestedFees BonderFees *hexutil.Big TokenFees *big.Float Cost *big.Float EstimatedTime TransactionEstimation ApprovalRequired bool ApprovalGasFees *big.Float ApprovalAmountRequired *hexutil.Big ApprovalContractAddress *common.Address }
type Persistence ¶ added in v0.151.13
type Persistence struct {
// contains filtered or unexported fields
}
func NewPersistence ¶ added in v0.151.13
func NewPersistence(db *sql.DB) *Persistence
func (*Persistence) GetTokens ¶ added in v0.151.13
func (p *Persistence) GetTokens() (map[common.Address][]Token, error)
func (*Persistence) SaveTokens ¶ added in v0.151.13
func (p *Persistence) SaveTokens(tokens map[common.Address][]Token) (err error)
type Reader ¶ added in v0.100.0
type Reader struct {
// contains filtered or unexported fields
}
func (*Reader) FetchOrGetCachedWalletBalances ¶ added in v0.173.0
func (*Reader) GetCachedWalletTokensWithoutMarketData ¶ added in v0.151.13
GetCachedWalletTokensWithoutMarketData returns the latest fetched balances, minus price information
func (*Reader) GetWalletToken ¶ added in v0.115.5
func (*Reader) GetWalletTokenBalances ¶ added in v0.172.1
type SavedAddress ¶ added in v0.86.7
type SavedAddress struct { Address common.Address `json:"address"` // TODO: Add Emoji // Emoji string `json:"emoji"` Name string `json:"name"` ChainShortNames string `json:"chainShortNames"` // used with address only, not with ENSName ENSName string `json:"ens"` ColorID multiAccCommon.CustomizationColor `json:"colorId"` IsTest bool `json:"isTest"` CreatedAt int64 `json:"createdAt"` Removed bool `json:"removed"` // contains filtered or unexported fields }
func (*SavedAddress) ID ¶ added in v0.131.2
func (s *SavedAddress) ID() string
func (*SavedAddress) MarshalJSON ¶ added in v0.175.3
func (s *SavedAddress) MarshalJSON() ([]byte, error)
type SavedAddressesManager ¶ added in v0.86.7
type SavedAddressesManager struct {
// contains filtered or unexported fields
}
func NewSavedAddressesManager ¶ added in v0.111.5
func NewSavedAddressesManager(db *sql.DB) *SavedAddressesManager
func (*SavedAddressesManager) AddSavedAddressIfNewerUpdate ¶ added in v0.111.5
func (sam *SavedAddressesManager) AddSavedAddressIfNewerUpdate(sa SavedAddress) (insertedOrUpdated bool, err error)
func (*SavedAddressesManager) DeleteSavedAddress ¶ added in v0.86.7
func (*SavedAddressesManager) DeleteSoftRemovedSavedAddresses ¶ added in v0.111.5
func (sam *SavedAddressesManager) DeleteSoftRemovedSavedAddresses(threshold uint64) error
func (*SavedAddressesManager) GetRawSavedAddresses ¶ added in v0.111.5
func (sam *SavedAddressesManager) GetRawSavedAddresses() ([]*SavedAddress, error)
GetRawSavedAddresses provides access to the soft-delete and sync metadata
func (*SavedAddressesManager) GetSavedAddresses ¶ added in v0.86.7
func (sam *SavedAddressesManager) GetSavedAddresses() ([]*SavedAddress, error)
func (*SavedAddressesManager) UpdateMetadataAndUpsertSavedAddress ¶ added in v0.111.5
func (sam *SavedAddressesManager) UpdateMetadataAndUpsertSavedAddress(sa SavedAddress) error
type SendType ¶ added in v0.113.0
type SendType int
func (SendType) EstimateGas ¶ added in v0.113.0
func (SendType) FetchPrices ¶ added in v0.166.9
func (SendType) IsCollectiblesTransfer ¶ added in v0.174.1
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service is a wallet service.
func NewService ¶
func NewService( db *sql.DB, accountsDB *accounts.Database, appDB *sql.DB, rpcClient *rpc.Client, accountFeed *event.Feed, settingsFeed *event.Feed, gethManager *account.GethManager, transactor *transactions.Transactor, config *params.NodeConfig, ens *ens.Service, stickers *stickers.Service, pendingTxManager *transactions.PendingTxTracker, feed *event.Feed, mediaServer *server.MediaServer, ) *Service
NewService initializes service instance.
func (*Service) KeycardPairings ¶ added in v0.166.11
func (s *Service) KeycardPairings() *KeycardPairings
func (*Service) SetWalletCommunityInfoProvider ¶ added in v0.171.34
func (s *Service) SetWalletCommunityInfoProvider(provider thirdparty.CommunityInfoProvider)
Set external Collectibles community info provider
type SuggestedFees ¶ added in v0.97.4
type SuggestedFees struct { GasPrice *big.Float `json:"gasPrice"` BaseFee *big.Float `json:"baseFee"` MaxPriorityFeePerGas *big.Float `json:"maxPriorityFeePerGas"` MaxFeePerGasLow *big.Float `json:"maxFeePerGasLow"` MaxFeePerGasMedium *big.Float `json:"maxFeePerGasMedium"` MaxFeePerGasHigh *big.Float `json:"maxFeePerGasHigh"` EIP1559Enabled bool `json:"eip1559Enabled"` }
type SuggestedRoutes ¶ added in v0.101.1
type Token ¶ added in v0.38.1
type Token struct { Name string `json:"name"` Symbol string `json:"symbol"` Decimals uint `json:"decimals"` BalancesPerChain map[uint64]ChainBalance `json:"balancesPerChain"` Description string `json:"description"` AssetWebsiteURL string `json:"assetWebsiteUrl"` BuiltOn string `json:"builtOn"` MarketValuesPerCurrency map[string]TokenMarketValues `json:"marketValuesPerCurrency"` PegSymbol string `json:"pegSymbol"` Verified bool `json:"verified"` Image string `json:"image,omitempty"` CommunityData *community.Data `json:"community_data,omitempty"` }
type TokenMarketValues ¶ added in v0.125.0
type TokenMarketValues struct { MarketCap float64 `json:"marketCap"` HighDay float64 `json:"highDay"` LowDay float64 `json:"lowDay"` ChangePctHour float64 `json:"changePctHour"` ChangePctDay float64 `json:"changePctDay"` ChangePct24hour float64 `json:"changePct24hour"` Change24hour float64 `json:"change24hour"` Price float64 `json:"price"` HasError bool `json:"hasError"` }
type TransactionEstimation ¶ added in v0.103.2
type TransactionEstimation int
const ( Unknown TransactionEstimation = iota LessThanOneMinute LessThanThreeMinutes LessThanFiveMinutes MoreThanFiveMinutes )
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Moved here because transactions package depends on accounts package which depends on appdatabase where this functionality is needed
|
Moved here because transactions package depends on accounts package which depends on appdatabase where this functionality is needed |
alchemy
nolint: misspell
|
nolint: misspell |