Documentation ¶
Index ¶
Constants ¶
const ( // FlagNotifyConfirmed indicates if this transaction should be callback after reach the confirmed height, // by default 6 confirmations are needed according to the protocol FlagNotifyConfirmed = 1 << 0 // FlagNotifyInSyncing indicates if notify this listener when SPV is in syncing. FlagNotifyInSyncing = 1 << 1 )
const (
DefaultConfirmations = 6
)
Variables ¶
This section is empty.
Functions ¶
func DisableLog ¶
func DisableLog()
DisableLog disables all library log output. Logging output is disabled by default until either UseLogger or SetLogWriter are called.
func GenesisHeader ¶
func GenesisHeader(foundation *common.Uint168) util.BlockHeader
GenesisHeader creates a specific genesis header by the given foundation address.
Types ¶
type Config ¶
type Config struct { // DataDir is the data path to store db files peer addresses etc. DataDir string // The magic number that specify which network to connect. Magic uint32 // The foundation address of the genesis block, which is different between // MainNet, TestNet, RegNet etc. Foundation string // The public seed peers addresses. SeedList []string // DefaultPort is the default port for public peers provide services. DefaultPort uint16 // The minimum target outbound connections. MinOutbound int // The maximum connected peers. MaxConnections int // Rollback callbacks that, the transactions // on the given height has been rollback OnRollback func(height uint32) }
SPV service config
type Keystore ¶
type Keystore interface { // Create or open a keystore file Open(password string) (Keystore, error) // Change the password of this keystore ChangePassword(old, new string) error // Get the main account MainAccount() Account // Create a new sub account NewAccount() Account // Get main account and all sub accounts GetAccounts() []Account Json() (string, error) FromJson(json string, password string) error }
Keystore is a file based storage to save the account information, including `Password` `MasterKey` `PrivateKey` etc. in AES encrypted format. Keystore interface is a help to create a keystore file storage and master the accounts within it.
func NewKeystore ¶
func NewKeystore() Keystore
type SPVService ¶
type SPVService interface { // RegisterTransactionListener register the listener to receive transaction notifications // listeners must be registered before call Start() method, or some notifications will go missing. RegisterTransactionListener(TransactionListener) error // After receive the transaction callback, call this method // to confirm that the transaction with the given ID was handled, // so the transaction will be removed from the notify queue. // the notifyId is the key to specify which listener received this notify. SubmitTransactionReceipt(notifyId common.Uint256, txId common.Uint256) error // To verify if a transaction is valid // This method is useful when receive a transaction from other peer VerifyTransaction(bloom.MerkleProof, types.Transaction) error // Send a transaction to the P2P network SendTransaction(types.Transaction) error // GetTransaction query a transaction by it's hash. GetTransaction(txId *common.Uint256) (*types.Transaction, error) // GetTransactionIds query all transaction hashes on the given block height. GetTransactionIds(height uint32) ([]*common.Uint256, error) // Get headers database HeaderStore() database.Headers // Start the SPV service Start() // Stop the SPV service Stop() // ClearData delete all data stores data including HeaderStore and DataStore. ClearData() error }
SPV service is the interface to interactive with the SPV (Simplified Payment Verification) service implementation running background, you can register specific accounts that you are interested in and receive transaction notifications of these accounts.
func NewSPVService ¶
func NewSPVService(config *Config) (SPVService, error)
type TransactionListener ¶
type TransactionListener interface { // The address this listener interested Address() string // Type() indicates which transaction type this listener are interested Type() types.TxType // Flags control the notification actions by the given flag Flags() uint64 // Notify() is the method to callback the received transaction // with the merkle tree proof to verify it, the notifyId is key of this // notify message and it must be submitted with the receipt together. Notify(notifyId common.Uint256, proof bloom.MerkleProof, tx types.Transaction) }
Register this listener into the IService RegisterTransactionListener() method to receive transaction notifications.