360 lines
13 KiB
Go
360 lines
13 KiB
Go
package electroncompat
|
|
|
|
// WalletService provides wallet management operations.
|
|
// This corresponds to the Wallet IPC service from the Electron app.
|
|
type WalletService struct{}
|
|
|
|
// NewWalletService creates a new WalletService instance.
|
|
func NewWalletService() *WalletService {
|
|
return &WalletService{}
|
|
}
|
|
|
|
// Start starts the wallet service.
|
|
func (s *WalletService) Start() error {
|
|
return notImplemented("Wallet", "start")
|
|
}
|
|
|
|
// GetAPIKey returns the wallet API key.
|
|
func (s *WalletService) GetAPIKey() (string, error) {
|
|
return "", notImplemented("Wallet", "getAPIKey")
|
|
}
|
|
|
|
// SetAPIKey sets the wallet API key.
|
|
func (s *WalletService) SetAPIKey(key string) error {
|
|
return notImplemented("Wallet", "setAPIKey")
|
|
}
|
|
|
|
// GetWalletInfo returns wallet information.
|
|
func (s *WalletService) GetWalletInfo(id string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getWalletInfo")
|
|
}
|
|
|
|
// GetAccountInfo returns account information.
|
|
func (s *WalletService) GetAccountInfo(walletID, account string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getAccountInfo")
|
|
}
|
|
|
|
// GetCoin returns a coin by outpoint.
|
|
func (s *WalletService) GetCoin(hash string, index int) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getCoin")
|
|
}
|
|
|
|
// GetTX returns a wallet transaction.
|
|
func (s *WalletService) GetTX(hash string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getTX")
|
|
}
|
|
|
|
// GetNames returns names owned by the wallet.
|
|
func (s *WalletService) GetNames(walletID string) ([]map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getNames")
|
|
}
|
|
|
|
// CreateNewWallet creates a new wallet.
|
|
func (s *WalletService) CreateNewWallet(id, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "createNewWallet")
|
|
}
|
|
|
|
// ImportSeed imports a wallet from seed.
|
|
func (s *WalletService) ImportSeed(id, passphrase, mnemonic string) error {
|
|
return notImplemented("Wallet", "importSeed")
|
|
}
|
|
|
|
// GenerateReceivingAddress generates a new receiving address.
|
|
func (s *WalletService) GenerateReceivingAddress(walletID, account string) (string, error) {
|
|
return "", notImplemented("Wallet", "generateReceivingAddress")
|
|
}
|
|
|
|
// GetAuctionInfo returns auction information for a name.
|
|
func (s *WalletService) GetAuctionInfo(name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getAuctionInfo")
|
|
}
|
|
|
|
// GetTransactionHistory returns transaction history.
|
|
func (s *WalletService) GetTransactionHistory(walletID string) ([]map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getTransactionHistory")
|
|
}
|
|
|
|
// GetPendingTransactions returns pending transactions.
|
|
func (s *WalletService) GetPendingTransactions(walletID string) ([]map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getPendingTransactions")
|
|
}
|
|
|
|
// GetBids returns bids for a name.
|
|
func (s *WalletService) GetBids(walletID string, own bool) ([]map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getBids")
|
|
}
|
|
|
|
// GetBlind returns a blind for a bid.
|
|
func (s *WalletService) GetBlind(value int64, nonce string) (string, error) {
|
|
return "", notImplemented("Wallet", "getBlind")
|
|
}
|
|
|
|
// GetMasterHDKey returns the master HD key.
|
|
func (s *WalletService) GetMasterHDKey(walletID, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getMasterHDKey")
|
|
}
|
|
|
|
// HasAddress checks if an address belongs to the wallet.
|
|
func (s *WalletService) HasAddress(walletID, address string) (bool, error) {
|
|
return false, notImplemented("Wallet", "hasAddress")
|
|
}
|
|
|
|
// SetPassphrase sets or changes the wallet passphrase.
|
|
func (s *WalletService) SetPassphrase(walletID, oldPassphrase, newPassphrase string) error {
|
|
return notImplemented("Wallet", "setPassphrase")
|
|
}
|
|
|
|
// RevealSeed reveals the wallet seed.
|
|
func (s *WalletService) RevealSeed(walletID, passphrase string) (string, error) {
|
|
return "", notImplemented("Wallet", "revealSeed")
|
|
}
|
|
|
|
// EstimateTxFee estimates the transaction fee.
|
|
func (s *WalletService) EstimateTxFee(rate int) (int64, error) {
|
|
return 0, notImplemented("Wallet", "estimateTxFee")
|
|
}
|
|
|
|
// EstimateMaxSend estimates the maximum sendable amount.
|
|
func (s *WalletService) EstimateMaxSend(walletID, account string, rate int) (int64, error) {
|
|
return 0, notImplemented("Wallet", "estimateMaxSend")
|
|
}
|
|
|
|
// RemoveWalletById removes a wallet.
|
|
func (s *WalletService) RemoveWalletById(id string) error {
|
|
return notImplemented("Wallet", "removeWalletById")
|
|
}
|
|
|
|
// UpdateAccountDepth updates the account lookahead depth.
|
|
func (s *WalletService) UpdateAccountDepth(walletID, account string, depth int) error {
|
|
return notImplemented("Wallet", "updateAccountDepth")
|
|
}
|
|
|
|
// FindNonce finds a nonce for a name.
|
|
func (s *WalletService) FindNonce(name, address string, value int64) (string, error) {
|
|
return "", notImplemented("Wallet", "findNonce")
|
|
}
|
|
|
|
// FindNonceCancel cancels a nonce search.
|
|
func (s *WalletService) FindNonceCancel() error {
|
|
return notImplemented("Wallet", "findNonceCancel")
|
|
}
|
|
|
|
// EncryptWallet encrypts the wallet.
|
|
func (s *WalletService) EncryptWallet(walletID, passphrase string) error {
|
|
return notImplemented("Wallet", "encryptWallet")
|
|
}
|
|
|
|
// Backup creates a wallet backup.
|
|
func (s *WalletService) Backup(walletID, path string) error {
|
|
return notImplemented("Wallet", "backup")
|
|
}
|
|
|
|
// Rescan rescans the blockchain.
|
|
func (s *WalletService) Rescan(height int) error {
|
|
return notImplemented("Wallet", "rescan")
|
|
}
|
|
|
|
// DeepClean performs a deep clean of the wallet.
|
|
func (s *WalletService) DeepClean(walletID string) error {
|
|
return notImplemented("Wallet", "deepClean")
|
|
}
|
|
|
|
// Reset resets the wallet database.
|
|
func (s *WalletService) Reset() error {
|
|
return notImplemented("Wallet", "reset")
|
|
}
|
|
|
|
// SendOpen sends an OPEN transaction for a name.
|
|
func (s *WalletService) SendOpen(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendOpen")
|
|
}
|
|
|
|
// SendBid sends a BID transaction.
|
|
func (s *WalletService) SendBid(walletID, passphrase, name string, bid, lockup int64) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendBid")
|
|
}
|
|
|
|
// SendRegister sends a REGISTER transaction.
|
|
func (s *WalletService) SendRegister(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendRegister")
|
|
}
|
|
|
|
// SendUpdate sends an UPDATE transaction.
|
|
func (s *WalletService) SendUpdate(walletID, passphrase, name string, data map[string]any) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendUpdate")
|
|
}
|
|
|
|
// SendReveal sends a REVEAL transaction.
|
|
func (s *WalletService) SendReveal(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendReveal")
|
|
}
|
|
|
|
// SendRedeem sends a REDEEM transaction.
|
|
func (s *WalletService) SendRedeem(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendRedeem")
|
|
}
|
|
|
|
// SendRenewal sends a RENEW transaction.
|
|
func (s *WalletService) SendRenewal(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendRenewal")
|
|
}
|
|
|
|
// SendRevealAll reveals all bids.
|
|
func (s *WalletService) SendRevealAll(walletID, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendRevealAll")
|
|
}
|
|
|
|
// SendRedeemAll redeems all names.
|
|
func (s *WalletService) SendRedeemAll(walletID, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendRedeemAll")
|
|
}
|
|
|
|
// SendRegisterAll registers all won auctions.
|
|
func (s *WalletService) SendRegisterAll(walletID, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendRegisterAll")
|
|
}
|
|
|
|
// SignMessageWithName signs a message with a name's key.
|
|
func (s *WalletService) SignMessageWithName(walletID, passphrase, name, message string) (string, error) {
|
|
return "", notImplemented("Wallet", "signMessageWithName")
|
|
}
|
|
|
|
// TransferMany transfers multiple names.
|
|
func (s *WalletService) TransferMany(walletID, passphrase string, names []string, address string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "transferMany")
|
|
}
|
|
|
|
// FinalizeAll finalizes all transfers.
|
|
func (s *WalletService) FinalizeAll(walletID, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "finalizeAll")
|
|
}
|
|
|
|
// FinalizeMany finalizes multiple transfers.
|
|
func (s *WalletService) FinalizeMany(walletID, passphrase string, names []string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "finalizeMany")
|
|
}
|
|
|
|
// RenewAll renews all names.
|
|
func (s *WalletService) RenewAll(walletID, passphrase string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "renewAll")
|
|
}
|
|
|
|
// RenewMany renews multiple names.
|
|
func (s *WalletService) RenewMany(walletID, passphrase string, names []string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "renewMany")
|
|
}
|
|
|
|
// SendTransfer initiates a name transfer.
|
|
func (s *WalletService) SendTransfer(walletID, passphrase, name, address string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendTransfer")
|
|
}
|
|
|
|
// CancelTransfer cancels a name transfer.
|
|
func (s *WalletService) CancelTransfer(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "cancelTransfer")
|
|
}
|
|
|
|
// FinalizeTransfer finalizes a name transfer.
|
|
func (s *WalletService) FinalizeTransfer(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "finalizeTransfer")
|
|
}
|
|
|
|
// FinalizeWithPayment finalizes a transfer with payment.
|
|
func (s *WalletService) FinalizeWithPayment(walletID, passphrase, name string, fundingAddr string, nameRecvAddr string, price int64) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "finalizeWithPayment")
|
|
}
|
|
|
|
// ClaimPaidTransfer claims a paid transfer.
|
|
func (s *WalletService) ClaimPaidTransfer(walletID, passphrase, hex string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "claimPaidTransfer")
|
|
}
|
|
|
|
// RevokeName revokes a name.
|
|
func (s *WalletService) RevokeName(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "revokeName")
|
|
}
|
|
|
|
// Send sends HNS to an address.
|
|
func (s *WalletService) Send(walletID, passphrase, address string, value int64) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "send")
|
|
}
|
|
|
|
// Lock locks the wallet.
|
|
func (s *WalletService) Lock(walletID string) error {
|
|
return notImplemented("Wallet", "lock")
|
|
}
|
|
|
|
// Unlock unlocks the wallet.
|
|
func (s *WalletService) Unlock(walletID, passphrase string, timeout int) error {
|
|
return notImplemented("Wallet", "unlock")
|
|
}
|
|
|
|
// IsLocked checks if the wallet is locked.
|
|
func (s *WalletService) IsLocked(walletID string) (bool, error) {
|
|
return false, notImplemented("Wallet", "isLocked")
|
|
}
|
|
|
|
// AddSharedKey adds a shared key.
|
|
func (s *WalletService) AddSharedKey(walletID, account, key string) error {
|
|
return notImplemented("Wallet", "addSharedKey")
|
|
}
|
|
|
|
// RemoveSharedKey removes a shared key.
|
|
func (s *WalletService) RemoveSharedKey(walletID, account, key string) error {
|
|
return notImplemented("Wallet", "removeSharedKey")
|
|
}
|
|
|
|
// GetNonce gets a nonce.
|
|
func (s *WalletService) GetNonce(walletID, name, address string, bid int64) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getNonce")
|
|
}
|
|
|
|
// ImportNonce imports a nonce.
|
|
func (s *WalletService) ImportNonce(walletID, name, address string, value int64) error {
|
|
return notImplemented("Wallet", "importNonce")
|
|
}
|
|
|
|
// Zap zaps pending transactions.
|
|
func (s *WalletService) Zap(walletID, account string, age int) error {
|
|
return notImplemented("Wallet", "zap")
|
|
}
|
|
|
|
// ImportName imports a name.
|
|
func (s *WalletService) ImportName(walletID, name string, height int) error {
|
|
return notImplemented("Wallet", "importName")
|
|
}
|
|
|
|
// RPCGetWalletInfo gets wallet info via RPC.
|
|
func (s *WalletService) RPCGetWalletInfo(walletID string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "rpcGetWalletInfo")
|
|
}
|
|
|
|
// LoadTransaction loads a transaction from hex.
|
|
func (s *WalletService) LoadTransaction(walletID, hex string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "loadTransaction")
|
|
}
|
|
|
|
// ListWallets lists all wallets.
|
|
func (s *WalletService) ListWallets() ([]string, error) {
|
|
return nil, notImplemented("Wallet", "listWallets")
|
|
}
|
|
|
|
// GetStats returns wallet statistics.
|
|
func (s *WalletService) GetStats(walletID string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "getStats")
|
|
}
|
|
|
|
// IsReady checks if the wallet is ready.
|
|
func (s *WalletService) IsReady() (bool, error) {
|
|
return false, notImplemented("Wallet", "isReady")
|
|
}
|
|
|
|
// CreateClaim creates a DNSSEC claim.
|
|
func (s *WalletService) CreateClaim(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "createClaim")
|
|
}
|
|
|
|
// SendClaim sends a DNSSEC claim.
|
|
func (s *WalletService) SendClaim(walletID, passphrase, name string) (map[string]any, error) {
|
|
return nil, notImplemented("Wallet", "sendClaim")
|
|
}
|