2017-01-26 06:48:44 +01:00
|
|
|
// Copyright (c) 2014-2017 The btcsuite developers
|
2014-05-02 06:16:31 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
2014-07-03 02:33:54 +02:00
|
|
|
|
2018-05-15 05:44:11 +02:00
|
|
|
"github.com/btcsuite/btcd/rpcclient"
|
|
|
|
"github.com/btcsuite/btcd/wire"
|
|
|
|
"github.com/btcsuite/btcutil"
|
2014-05-02 06:16:31 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Only override the handlers for notifications you care about.
|
2014-05-09 07:44:19 +02:00
|
|
|
// Also note most of these handlers will only be called if you register
|
2017-07-22 04:53:54 +02:00
|
|
|
// for notifications. See the documentation of the rpcclient
|
2014-05-09 07:44:19 +02:00
|
|
|
// NotificationHandlers type for more details about each handler.
|
2017-07-22 04:53:54 +02:00
|
|
|
ntfnHandlers := rpcclient.NotificationHandlers{
|
2017-01-26 06:48:44 +01:00
|
|
|
OnFilteredBlockConnected: func(height int32, header *wire.BlockHeader, txns []*btcutil.Tx) {
|
|
|
|
log.Printf("Block connected: %v (%d) %v",
|
|
|
|
header.BlockHash(), height, header.Timestamp)
|
2014-05-02 06:16:31 +02:00
|
|
|
},
|
2017-01-26 06:48:44 +01:00
|
|
|
OnFilteredBlockDisconnected: func(height int32, header *wire.BlockHeader) {
|
|
|
|
log.Printf("Block disconnected: %v (%d) %v",
|
|
|
|
header.BlockHash(), height, header.Timestamp)
|
2014-05-02 06:16:31 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect to local btcd RPC server using websockets.
|
|
|
|
btcdHomeDir := btcutil.AppDataDir("btcd", false)
|
|
|
|
certs, err := ioutil.ReadFile(filepath.Join(btcdHomeDir, "rpc.cert"))
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2017-07-22 04:53:54 +02:00
|
|
|
connCfg := &rpcclient.ConnConfig{
|
2014-05-02 06:16:31 +02:00
|
|
|
Host: "localhost:8334",
|
|
|
|
Endpoint: "ws",
|
|
|
|
User: "yourrpcuser",
|
|
|
|
Pass: "yourrpcpass",
|
|
|
|
Certificates: certs,
|
|
|
|
}
|
2017-07-22 04:53:54 +02:00
|
|
|
client, err := rpcclient.New(connCfg, &ntfnHandlers)
|
2014-05-02 06:16:31 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2014-05-09 07:44:19 +02:00
|
|
|
// Register for block connect and disconnect notifications.
|
|
|
|
if err := client.NotifyBlocks(); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
log.Println("NotifyBlocks: Registration Complete")
|
|
|
|
|
2014-05-02 06:16:31 +02:00
|
|
|
// Get the current block count.
|
|
|
|
blockCount, err := client.GetBlockCount()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
log.Printf("Block count: %d", blockCount)
|
|
|
|
|
|
|
|
// For this example gracefully shutdown the client after 10 seconds.
|
|
|
|
// Ordinarily when to shutdown the client is highly application
|
|
|
|
// specific.
|
|
|
|
log.Println("Client shutdown in 10 seconds...")
|
|
|
|
time.AfterFunc(time.Second*10, func() {
|
|
|
|
log.Println("Client shutting down...")
|
|
|
|
client.Shutdown()
|
2014-05-11 20:30:25 +02:00
|
|
|
log.Println("Client shutdown complete.")
|
2014-05-02 06:16:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Wait until the client either shuts down gracefully (or the user
|
|
|
|
// terminates the process with Ctrl+C).
|
|
|
|
client.WaitForShutdown()
|
|
|
|
}
|