Documentation ¶
Index ¶
- Variables
- type CasesDB
- func (c *CasesDB) Count() int
- func (c *CasesDB) Delete(orderID string) error
- func (c *CasesDB) GetAll(stateFilter []pb.OrderState, searchTerm string, sortByAscending bool, ...) ([]repo.Case, int, error)
- func (c *CasesDB) GetCaseMetadata(caseID string) (buyerContract, vendorContract *pb.RicardianContract, ...)
- func (c *CasesDB) GetPayoutDetails(caseID string) (buyerContract, vendorContract *pb.RicardianContract, ...)
- func (c *CasesDB) MarkAsClosed(caseID string, resolution *pb.DisputeResolution) error
- func (c *CasesDB) MarkAsRead(orderID string) error
- func (c *CasesDB) MarkAsUnread(orderID string) error
- func (c *CasesDB) Put(caseID string, state pb.OrderState, buyerOpened bool, claim string) error
- func (c *CasesDB) UpdateBuyerInfo(caseID string, buyerContract *pb.RicardianContract, ...) error
- func (c *CasesDB) UpdateVendorInfo(caseID string, vendorContract *pb.RicardianContract, ...) error
- type ChatDB
- func (c *ChatDB) DeleteConversation(peerId string) error
- func (c *ChatDB) DeleteMessage(msgID string) error
- func (c *ChatDB) GetConversations() []repo.ChatConversation
- func (c *ChatDB) GetMessages(peerID string, subject string, offsetId string, limit int) []repo.ChatMessage
- func (c *ChatDB) GetUnreadCount(subject string) (int, error)
- func (c *ChatDB) MarkAsRead(peerID string, subject string, outgoing bool, messageId string) (string, bool, error)
- func (c *ChatDB) Put(messageId string, peerId string, subject string, message string, ...) error
- type ConfigDB
- func (c *ConfigDB) GetCreationDate() (time.Time, error)
- func (c *ConfigDB) GetIdentityKey() ([]byte, error)
- func (c *ConfigDB) GetMnemonic() (string, error)
- func (c *ConfigDB) Init(mnemonic string, identityKey []byte, password string, creationDate time.Time) error
- func (c *ConfigDB) IsEncrypted() bool
- type CouponDB
- type FollowerDB
- type FollowingDB
- type InventoryDB
- func (i *InventoryDB) Delete(slug string, variantIndex int) error
- func (i *InventoryDB) DeleteAll(slug string) error
- func (i *InventoryDB) Get(slug string) (map[int]int, error)
- func (i *InventoryDB) GetAll() (map[string]map[int]int, error)
- func (i *InventoryDB) GetSpecific(slug string, variantIndex int) (int, error)
- func (i *InventoryDB) Put(slug string, variantIndex int, count int) error
- type KeysDB
- func (k *KeysDB) GetAll() ([]wallet.KeyPath, error)
- func (k *KeysDB) GetImported() ([]*btcec.PrivateKey, error)
- func (k *KeysDB) GetKey(scriptAddress []byte) (*btcec.PrivateKey, error)
- func (k *KeysDB) GetLastKeyIndex(purpose wallet.KeyPurpose) (int, bool, error)
- func (k *KeysDB) GetLookaheadWindows() map[wallet.KeyPurpose]int
- func (k *KeysDB) GetPathForKey(scriptAddress []byte) (wallet.KeyPath, error)
- func (k *KeysDB) GetUnused(purpose wallet.KeyPurpose) ([]int, error)
- func (k *KeysDB) ImportKey(scriptAddress []byte, key *btcec.PrivateKey) error
- func (k *KeysDB) MarkKeyAsUsed(scriptAddress []byte) error
- func (k *KeysDB) Put(scriptAddress []byte, keyPath wallet.KeyPath) error
- type ModeratedDB
- type NotficationsDB
- func (n *NotficationsDB) Delete(notifID string) error
- func (n *NotficationsDB) GetAll(offsetId string, limit int, typeFilter []string) ([]notif.Notification, int, error)
- func (n *NotficationsDB) GetUnreadCount() (int, error)
- func (n *NotficationsDB) MarkAllAsRead() error
- func (n *NotficationsDB) MarkAsRead(notifID string) error
- func (n *NotficationsDB) Put(notifID string, notification notif.Data, notifType string, timestamp time.Time) error
- type OfflineMessagesDB
- func (o *OfflineMessagesDB) DeleteMessage(url string) error
- func (o *OfflineMessagesDB) GetMessages() (map[string][]byte, error)
- func (o *OfflineMessagesDB) Has(url string) bool
- func (o *OfflineMessagesDB) Put(url string) error
- func (o *OfflineMessagesDB) SetMessage(url string, message []byte) error
- type PointersDB
- func (p *PointersDB) Delete(id peer.ID) error
- func (p *PointersDB) DeleteAll(purpose ipfs.Purpose) error
- func (p *PointersDB) Get(id peer.ID) (ipfs.Pointer, error)
- func (p *PointersDB) GetAll() ([]ipfs.Pointer, error)
- func (p *PointersDB) GetByPurpose(purpose ipfs.Purpose) ([]ipfs.Pointer, error)
- func (p *PointersDB) Put(pointer ipfs.Pointer) error
- type PurchasesDB
- func (p *PurchasesDB) Count() int
- func (p *PurchasesDB) Delete(orderID string) error
- func (p *PurchasesDB) GetAll(stateFilter []pb.OrderState, searchTerm string, sortByAscending bool, ...) ([]repo.Purchase, int, error)
- func (p *PurchasesDB) GetByOrderId(orderId string) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, bool, ...)
- func (p *PurchasesDB) GetByPaymentAddress(addr btc.Address) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, error)
- func (p *PurchasesDB) MarkAsRead(orderID string) error
- func (p *PurchasesDB) MarkAsUnread(orderID string) error
- func (p *PurchasesDB) Put(orderID string, contract pb.RicardianContract, state pb.OrderState, read bool) error
- func (p *PurchasesDB) UpdateFunding(orderId string, funded bool, records []*wallet.TransactionRecord) error
- type SQLiteDatastore
- func (d *SQLiteDatastore) Cases() repo.Cases
- func (d *SQLiteDatastore) Chat() repo.Chat
- func (d *SQLiteDatastore) Close()
- func (d *SQLiteDatastore) Config() repo.Config
- func (d *SQLiteDatastore) Copy(dbPath string, password string) error
- func (d *SQLiteDatastore) Coupons() repo.Coupons
- func (d *SQLiteDatastore) Followers() repo.Followers
- func (d *SQLiteDatastore) Following() repo.Following
- func (s *SQLiteDatastore) InitTables(password string) error
- func (d *SQLiteDatastore) Inventory() repo.Inventory
- func (d *SQLiteDatastore) Keys() wallet.Keys
- func (d *SQLiteDatastore) ModeratedStores() repo.ModeratedStores
- func (d *SQLiteDatastore) Notifications() repo.Notifications
- func (d *SQLiteDatastore) OfflineMessages() repo.OfflineMessages
- func (d *SQLiteDatastore) Ping() error
- func (d *SQLiteDatastore) Pointers() repo.Pointers
- func (d *SQLiteDatastore) Purchases() repo.Purchases
- func (d *SQLiteDatastore) Sales() repo.Sales
- func (d *SQLiteDatastore) Settings() repo.Settings
- func (d *SQLiteDatastore) Stxos() wallet.Stxos
- func (d *SQLiteDatastore) TxMetadata() repo.TxMetadata
- func (d *SQLiteDatastore) Txns() wallet.Txns
- func (d *SQLiteDatastore) Utxos() wallet.Utxos
- func (d *SQLiteDatastore) WatchedScripts() wallet.WatchedScripts
- type SalesDB
- func (s *SalesDB) Count() int
- func (s *SalesDB) Delete(orderID string) error
- func (s *SalesDB) GetAll(stateFilter []pb.OrderState, searchTerm string, sortByAscending bool, ...) ([]repo.Sale, int, error)
- func (s *SalesDB) GetByOrderId(orderId string) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, bool, ...)
- func (s *SalesDB) GetByPaymentAddress(addr btc.Address) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, error)
- func (s *SalesDB) GetNeedsResync() ([]repo.UnfundedSale, error)
- func (s *SalesDB) MarkAsRead(orderID string) error
- func (s *SalesDB) MarkAsUnread(orderID string) error
- func (s *SalesDB) Put(orderID string, contract pb.RicardianContract, state pb.OrderState, read bool) error
- func (s *SalesDB) SetNeedsResync(orderId string, needsResync bool) error
- func (s *SalesDB) UpdateFunding(orderId string, funded bool, records []*wallet.TransactionRecord) error
- type SettingsDB
- type StxoDB
- type TxMetadataDB
- type TxnsDB
- func (t *TxnsDB) Delete(txid *chainhash.Hash) error
- func (t *TxnsDB) Get(txid chainhash.Hash) (*wire.MsgTx, wallet.Txn, error)
- func (t *TxnsDB) GetAll(includeWatchOnly bool) ([]wallet.Txn, error)
- func (t *TxnsDB) Put(txn *wire.MsgTx, value, height int, timestamp time.Time, watchOnly bool) error
- func (t *TxnsDB) UpdateHeight(txid chainhash.Hash, height int) error
- type UtxoDB
- type WatchedScriptsDB
Constants ¶
This section is empty.
Variables ¶
View Source
var SettingsNotSetError error = errors.New("Settings not set")
Functions ¶
This section is empty.
Types ¶
type CasesDB ¶ added in v0.3.0
type CasesDB struct {
// contains filtered or unexported fields
}
func (*CasesDB) GetCaseMetadata ¶ added in v0.3.0
func (c *CasesDB) GetCaseMetadata(caseID string) (buyerContract, vendorContract *pb.RicardianContract, buyerValidationErrors, vendorValidationErrors []string, state pb.OrderState, read bool, timestamp time.Time, buyerOpened bool, claim string, resolution *pb.DisputeResolution, err error)
func (*CasesDB) GetPayoutDetails ¶ added in v0.3.0
func (c *CasesDB) GetPayoutDetails(caseID string) (buyerContract, vendorContract *pb.RicardianContract, buyerPayoutAddress, vendorPayoutAddress string, buyerOutpoints, vendorOutpoints []*pb.Outpoint, state pb.OrderState, err error)
func (*CasesDB) MarkAsClosed ¶ added in v0.3.0
func (c *CasesDB) MarkAsClosed(caseID string, resolution *pb.DisputeResolution) error
func (*CasesDB) MarkAsRead ¶ added in v0.3.0
func (*CasesDB) MarkAsUnread ¶ added in v0.6.1
func (*CasesDB) UpdateBuyerInfo ¶ added in v0.3.0
type ChatDB ¶ added in v0.3.1
type ChatDB struct {
// contains filtered or unexported fields
}
func (*ChatDB) DeleteConversation ¶ added in v0.3.1
func (*ChatDB) DeleteMessage ¶ added in v0.3.1
func (*ChatDB) GetConversations ¶ added in v0.3.1
func (c *ChatDB) GetConversations() []repo.ChatConversation
func (*ChatDB) GetMessages ¶ added in v0.3.1
func (*ChatDB) GetUnreadCount ¶ added in v0.5.1
func (*ChatDB) MarkAsRead ¶ added in v0.3.1
type ConfigDB ¶
type ConfigDB struct {
// contains filtered or unexported fields
}
func (*ConfigDB) GetCreationDate ¶ added in v0.6.4
func (*ConfigDB) GetIdentityKey ¶
func (*ConfigDB) GetMnemonic ¶
func (*ConfigDB) IsEncrypted ¶
type FollowerDB ¶
type FollowerDB struct {
// contains filtered or unexported fields
}
func (*FollowerDB) Count ¶
func (f *FollowerDB) Count() int
func (*FollowerDB) Delete ¶
func (f *FollowerDB) Delete(follower string) error
func (*FollowerDB) FollowsMe ¶ added in v0.2.0
func (f *FollowerDB) FollowsMe(peerId string) bool
type FollowingDB ¶
type FollowingDB struct {
// contains filtered or unexported fields
}
func (*FollowingDB) Count ¶
func (f *FollowingDB) Count() int
func (*FollowingDB) Delete ¶
func (f *FollowingDB) Delete(follower string) error
func (*FollowingDB) IsFollowing ¶ added in v0.2.0
func (f *FollowingDB) IsFollowing(peerId string) bool
func (*FollowingDB) Put ¶
func (f *FollowingDB) Put(follower string) error
type InventoryDB ¶
type InventoryDB struct {
// contains filtered or unexported fields
}
func (*InventoryDB) DeleteAll ¶ added in v0.1.1
func (i *InventoryDB) DeleteAll(slug string) error
func (*InventoryDB) GetSpecific ¶ added in v0.1.1
func (i *InventoryDB) GetSpecific(slug string, variantIndex int) (int, error)
type KeysDB ¶
type KeysDB struct {
// contains filtered or unexported fields
}
func (*KeysDB) GetImported ¶ added in v0.9.2
func (k *KeysDB) GetImported() ([]*btcec.PrivateKey, error)
func (*KeysDB) GetKey ¶ added in v0.7.0
func (k *KeysDB) GetKey(scriptAddress []byte) (*btcec.PrivateKey, error)
func (*KeysDB) GetLastKeyIndex ¶
func (*KeysDB) GetLookaheadWindows ¶
func (*KeysDB) GetPathForKey ¶ added in v0.7.0
func (*KeysDB) ImportKey ¶ added in v0.4.2
func (k *KeysDB) ImportKey(scriptAddress []byte, key *btcec.PrivateKey) error
func (*KeysDB) MarkKeyAsUsed ¶
type ModeratedDB ¶ added in v0.5.1
type ModeratedDB struct {
// contains filtered or unexported fields
}
func (*ModeratedDB) Delete ¶ added in v0.5.1
func (m *ModeratedDB) Delete(follower string) error
func (*ModeratedDB) Get ¶ added in v0.5.1
func (m *ModeratedDB) Get(offsetId string, limit int) ([]string, error)
func (*ModeratedDB) Put ¶ added in v0.5.1
func (m *ModeratedDB) Put(peerId string) error
type NotficationsDB ¶ added in v0.3.1
type NotficationsDB struct {
// contains filtered or unexported fields
}
func (*NotficationsDB) Delete ¶ added in v0.3.1
func (n *NotficationsDB) Delete(notifID string) error
func (*NotficationsDB) GetAll ¶ added in v0.3.1
func (n *NotficationsDB) GetAll(offsetId string, limit int, typeFilter []string) ([]notif.Notification, int, error)
func (*NotficationsDB) GetUnreadCount ¶ added in v0.5.6
func (n *NotficationsDB) GetUnreadCount() (int, error)
func (*NotficationsDB) MarkAllAsRead ¶ added in v0.6.4
func (n *NotficationsDB) MarkAllAsRead() error
func (*NotficationsDB) MarkAsRead ¶ added in v0.3.1
func (n *NotficationsDB) MarkAsRead(notifID string) error
type OfflineMessagesDB ¶
type OfflineMessagesDB struct {
// contains filtered or unexported fields
}
func (*OfflineMessagesDB) DeleteMessage ¶ added in v0.6.3
func (o *OfflineMessagesDB) DeleteMessage(url string) error
func (*OfflineMessagesDB) GetMessages ¶ added in v0.6.3
func (o *OfflineMessagesDB) GetMessages() (map[string][]byte, error)
func (*OfflineMessagesDB) Has ¶
func (o *OfflineMessagesDB) Has(url string) bool
func (*OfflineMessagesDB) Put ¶
func (o *OfflineMessagesDB) Put(url string) error
func (*OfflineMessagesDB) SetMessage ¶ added in v0.6.3
func (o *OfflineMessagesDB) SetMessage(url string, message []byte) error
type PointersDB ¶
type PointersDB struct {
// contains filtered or unexported fields
}
func (*PointersDB) DeleteAll ¶ added in v0.1.1
func (p *PointersDB) DeleteAll(purpose ipfs.Purpose) error
func (*PointersDB) GetByPurpose ¶ added in v0.5.3
type PurchasesDB ¶ added in v0.1.2
type PurchasesDB struct {
// contains filtered or unexported fields
}
func (*PurchasesDB) Count ¶ added in v0.6.0
func (p *PurchasesDB) Count() int
func (*PurchasesDB) Delete ¶ added in v0.1.2
func (p *PurchasesDB) Delete(orderID string) error
func (*PurchasesDB) GetByOrderId ¶ added in v0.2.0
func (p *PurchasesDB) GetByOrderId(orderId string) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, bool, error)
func (*PurchasesDB) GetByPaymentAddress ¶ added in v0.2.0
func (p *PurchasesDB) GetByPaymentAddress(addr btc.Address) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, error)
func (*PurchasesDB) MarkAsRead ¶ added in v0.1.2
func (p *PurchasesDB) MarkAsRead(orderID string) error
func (*PurchasesDB) MarkAsUnread ¶ added in v0.6.1
func (p *PurchasesDB) MarkAsUnread(orderID string) error
func (*PurchasesDB) Put ¶ added in v0.1.2
func (p *PurchasesDB) Put(orderID string, contract pb.RicardianContract, state pb.OrderState, read bool) error
func (*PurchasesDB) UpdateFunding ¶ added in v0.2.0
func (p *PurchasesDB) UpdateFunding(orderId string, funded bool, records []*wallet.TransactionRecord) error
type SQLiteDatastore ¶
type SQLiteDatastore struct {
// contains filtered or unexported fields
}
func (*SQLiteDatastore) Cases ¶ added in v0.3.0
func (d *SQLiteDatastore) Cases() repo.Cases
func (*SQLiteDatastore) Chat ¶ added in v0.3.1
func (d *SQLiteDatastore) Chat() repo.Chat
func (*SQLiteDatastore) Close ¶
func (d *SQLiteDatastore) Close()
func (*SQLiteDatastore) Config ¶
func (d *SQLiteDatastore) Config() repo.Config
func (*SQLiteDatastore) Coupons ¶ added in v0.5.0
func (d *SQLiteDatastore) Coupons() repo.Coupons
func (*SQLiteDatastore) Followers ¶
func (d *SQLiteDatastore) Followers() repo.Followers
func (*SQLiteDatastore) Following ¶
func (d *SQLiteDatastore) Following() repo.Following
func (*SQLiteDatastore) InitTables ¶ added in v0.9.4
func (s *SQLiteDatastore) InitTables(password string) error
func (*SQLiteDatastore) Inventory ¶
func (d *SQLiteDatastore) Inventory() repo.Inventory
func (*SQLiteDatastore) Keys ¶
func (d *SQLiteDatastore) Keys() wallet.Keys
func (*SQLiteDatastore) ModeratedStores ¶ added in v0.5.1
func (d *SQLiteDatastore) ModeratedStores() repo.ModeratedStores
func (*SQLiteDatastore) Notifications ¶ added in v0.3.1
func (d *SQLiteDatastore) Notifications() repo.Notifications
func (*SQLiteDatastore) OfflineMessages ¶
func (d *SQLiteDatastore) OfflineMessages() repo.OfflineMessages
func (*SQLiteDatastore) Ping ¶ added in v0.7.0
func (d *SQLiteDatastore) Ping() error
func (*SQLiteDatastore) Pointers ¶
func (d *SQLiteDatastore) Pointers() repo.Pointers
func (*SQLiteDatastore) Purchases ¶ added in v0.1.2
func (d *SQLiteDatastore) Purchases() repo.Purchases
func (*SQLiteDatastore) Sales ¶ added in v0.1.2
func (d *SQLiteDatastore) Sales() repo.Sales
func (*SQLiteDatastore) Settings ¶
func (d *SQLiteDatastore) Settings() repo.Settings
func (*SQLiteDatastore) Stxos ¶
func (d *SQLiteDatastore) Stxos() wallet.Stxos
func (*SQLiteDatastore) TxMetadata ¶ added in v0.5.1
func (d *SQLiteDatastore) TxMetadata() repo.TxMetadata
func (*SQLiteDatastore) Txns ¶
func (d *SQLiteDatastore) Txns() wallet.Txns
func (*SQLiteDatastore) Utxos ¶
func (d *SQLiteDatastore) Utxos() wallet.Utxos
func (*SQLiteDatastore) WatchedScripts ¶ added in v0.2.0
func (d *SQLiteDatastore) WatchedScripts() wallet.WatchedScripts
type SalesDB ¶ added in v0.1.2
type SalesDB struct {
// contains filtered or unexported fields
}
func (*SalesDB) GetByOrderId ¶ added in v0.2.0
func (s *SalesDB) GetByOrderId(orderId string) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, bool, error)
func (*SalesDB) GetByPaymentAddress ¶ added in v0.2.0
func (s *SalesDB) GetByPaymentAddress(addr btc.Address) (*pb.RicardianContract, pb.OrderState, bool, []*wallet.TransactionRecord, error)
func (*SalesDB) GetNeedsResync ¶ added in v0.9.4
func (s *SalesDB) GetNeedsResync() ([]repo.UnfundedSale, error)
func (*SalesDB) MarkAsRead ¶ added in v0.1.2
func (*SalesDB) MarkAsUnread ¶ added in v0.6.1
func (*SalesDB) Put ¶ added in v0.1.2
func (s *SalesDB) Put(orderID string, contract pb.RicardianContract, state pb.OrderState, read bool) error
func (*SalesDB) SetNeedsResync ¶ added in v0.9.4
type SettingsDB ¶
type SettingsDB struct {
// contains filtered or unexported fields
}
func (*SettingsDB) Delete ¶ added in v0.2.4
func (s *SettingsDB) Delete() error
Delete removes all settings from the database. It's a destructive action that should be used with care.
func (*SettingsDB) Get ¶
func (s *SettingsDB) Get() (repo.SettingsData, error)
func (*SettingsDB) Put ¶
func (s *SettingsDB) Put(settings repo.SettingsData) error
func (*SettingsDB) Update ¶
func (s *SettingsDB) Update(settings repo.SettingsData) error
type TxMetadataDB ¶ added in v0.5.1
type TxMetadataDB struct {
// contains filtered or unexported fields
}
func (*TxMetadataDB) Delete ¶ added in v0.5.1
func (t *TxMetadataDB) Delete(txid string) error
func (*TxMetadataDB) Get ¶ added in v0.5.1
func (t *TxMetadataDB) Get(txid string) (repo.Metadata, error)
type UtxoDB ¶
type UtxoDB struct {
// contains filtered or unexported fields
}
func (*UtxoDB) SetWatchOnly ¶ added in v0.5.3
type WatchedScriptsDB ¶ added in v0.2.0
type WatchedScriptsDB struct {
// contains filtered or unexported fields
}
func (*WatchedScriptsDB) Delete ¶ added in v0.2.0
func (w *WatchedScriptsDB) Delete(scriptPubKey []byte) error
func (*WatchedScriptsDB) GetAll ¶ added in v0.2.0
func (w *WatchedScriptsDB) GetAll() ([][]byte, error)
func (*WatchedScriptsDB) Put ¶ added in v0.2.0
func (w *WatchedScriptsDB) Put(scriptPubKey []byte) error
Click to show internal directories.
Click to hide internal directories.