Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 1.6% on proxy.golang.org
Top 0.4% dependent packages on proxy.golang.org
Top 1.7% dependent repos on proxy.golang.org
Top 1.7% forks on proxy.golang.org

proxy.golang.org : github.com/decred/dcrd/dcrjson/v2

Package dcrjson provides primitives for working with the Decred JSON-RPC API. When communicating via the JSON-RPC protocol, all of the commands need to be marshalled to and from the the wire in the appropriate format. This package provides data structures and primitives to ease this process. In addition, it also provides some additional features such as custom command registration, command categorization, and reflection-based help generation. This information is not necessary in order to use this package, but it does provide some intuition into what the marshalling and unmarshalling that is discussed below is doing under the hood. As defined by the JSON-RPC spec, there are effectively two forms of messages on the wire: Request Objects {"jsonrpc":"1.0","id":"SOMEID","method":"SOMEMETHOD","params":[SOMEPARAMS]} NOTE: Notifications are the same format except the id field is null. Response Objects {"result":SOMETHING,"error":null,"id":"SOMEID"} {"result":null,"error":{"code":SOMEINT,"message":SOMESTRING},"id":"SOMEID"} For requests, the params field can vary in what it contains depending on the method (a.k.a. command) being sent. Each parameter can be as simple as an int or a complex structure containing many nested fields. The id field is used to identify a request and will be included in the associated response. When working with asynchronous transports, such as websockets, spontaneous notifications are also possible. As indicated, they are the same as a request object, except they have the id field set to null. Therefore, servers will ignore requests with the id field set to null, while clients can choose to consume or ignore them. Unfortunately, the original Bitcoin JSON-RPC API (and hence anything compatible with it) doesn't always follow the spec and will sometimes return an error string in the result field with a null error for certain commands. However, for the most part, the error field will be set as described on failure. Based upon the discussion above, it should be easy to see how the types of this package map into the required parts of the protocol To simplify the marshalling of the requests and responses, the MarshalCmd and MarshalResponse functions are provided. They return the raw bytes ready to be sent across the wire. Unmarshalling a received Request object is a two step process: This approach is used since it provides the caller with access to the additional fields in the request that are not part of the command such as the ID. Unmarshalling a received Response object is also a two step process: As above, this approach is used since it provides the caller with access to the fields in the response such as the ID and Error. This package provides two approaches for creating a new command. This first, and preferred, method is to use one of the New<Foo>Cmd functions. This allows static compile-time checking to help ensure the parameters stay in sync with the struct definitions. The second approach is the NewCmd function which takes a method (command) name and variable arguments. The function includes full checking to ensure the parameters are accurate according to provided method, however these checks are, obviously, run-time which means any mistakes won't be found until the code is actually executed. However, it is quite useful for user-supplied commands that are intentionally dynamic. The command handling of this package is built around the concept of registered commands. This is true for the wide variety of commands already provided by the package, but it also means caller can easily provide custom commands with all of the same functionality as the built-in commands. Use the RegisterCmd function for this purpose. A list of all registered methods can be obtained with the RegisteredCmdMethods function. All registered commands are registered with flags that identify information such as whether the command applies to a chain server, wallet server, or is a notification along with the method name to use. These flags can be obtained with the MethodUsageFlags flags, and the method can be obtained with the CmdMethod function. To facilitate providing consistent help to users of the RPC server, this package exposes the GenerateHelp and function which uses reflection on registered commands or notifications, as well as the provided expected result types, to generate the final help text. In addition, the MethodUsageText function is provided to generate consistent one-line usage for registered commands and notifications using reflection. There are 2 distinct type of errors supported by this package: The first category of errors (type Error) typically indicates a programmer error and can be avoided by properly using the API. Errors of this type will be returned from the various functions available in this package. They identify issues such as unsupported field types, attempts to register malformed commands, and attempting to create a new command with an improper number of parameters. The specific reason for the error can be detected by type asserting it to a *dcrjson.Error and accessing the ErrorCode field. The second category of errors (type RPCError), on the other hand, are useful for returning errors to RPC clients. Consequently, they are used in the previously described Response type. This example demonstrates how to unmarshal a JSON-RPC response and then unmarshal the result field in the response to a concrete type.

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/decred/dcrd/dcrjson/v2
Keywords: blockchain, cryptocurrency, dcrd, decred, decred-daemon, decred-nodes, go, golang, p2p, peer-to-peer
License: ISC
Latest release: 12 months ago
First release: over 5 years ago
Namespace: github.com/decred/dcrd/dcrjson
Dependent packages: 123
Dependent repositories: 9
Stars: 687 on GitHub
Forks: 281 on GitHub
See more repository details: repos.ecosyste.ms
Last synced: about 14 hours ago

Top 8.2% on proxy.golang.org
github.com/decred/lnd v0.6.0
23 versions - Latest release: 4 months ago
Top 4.1% on proxy.golang.org
github.com/decred/dcrlnd v0.5.0
Decred Lightning Network Daemon ⚡️
21 versions - Latest release: 6 months ago - 3 dependent packages - 5 dependent repositories - 33 stars on GitHub
Top 1.6% on proxy.golang.org
github.com/decred/dcrd/rpcclient/v2 v2.1.1
Package rpcclient implements a websocket-enabled Decred JSON-RPC client. This client provides a ...
3 versions - Latest release: 12 months ago - 100 dependent packages - 8 dependent repositories - 687 stars on GitHub
github.com/matheusd/dcrlnd v0.4.0
Decred Lightning Network Daemon ⚡️
22 versions - Latest release: 12 months ago - 1 dependent repositories - 1 stars on GitHub
Top 4.3% on proxy.golang.org
github.com/planetdecred/dcrlibwallet v1.7.1
21 versions - Latest release: over 1 year ago - 4 dependent packages - 3 dependent repositories - 23 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/raedahgroup/mobilewallet v1.7.0
20 versions - Latest release: about 2 years ago
Top 9.0% on proxy.golang.org
gitlab.com/raedah/libwallet v1.7.0
21 versions - Latest release: about 2 years ago - 0 stars on GitLab.com
Top 9.0% on proxy.golang.org
github.com/junyang100/dcrnlibwallet v1.8.1
26 versions - Latest release: about 2 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/song50119/dcrlibwallet v1.7.0
20 versions - Latest release: about 2 years ago
Top 6.4% on proxy.golang.org
github.com/raedahgroup/dcrlibwallet v1.7.0
20 versions - Latest release: about 2 years ago - 1 dependent repositories - 23 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/junyang100/dcrnwallet v1.7.1
57 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/vikingshield/dcrwallet v1.7.1
A secure Decred wallet daemon written in Go (golang).
62 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 5.0% on proxy.golang.org
github.com/Decred/dcrwallet v1.7.1
A secure Decred wallet daemon written in Go (golang).
57 versions - Latest release: about 3 years ago - 196 stars on GitHub
Top 9.5% on proxy.golang.org
github.com/dcrnofficial/dcrnwallet v1.7.1
57 versions - Latest release: about 3 years ago - 1 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/decred/btcwallet v1.7.1
57 versions - Latest release: about 3 years ago
Top 9.0% on proxy.golang.org
github.com/ji394vul3m6/dcrwallet v1.7.1
A secure Decred wallet daemon written in Go (golang).
57 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 2.0% on proxy.golang.org
github.com/decred/dcrwallet v1.7.1
A secure Decred wallet daemon written in Go (golang).
57 versions - Latest release: about 3 years ago - 28 dependent packages - 27 dependent repositories - 196 stars on GitHub
github.com/matheusd/dcrwallet v1.7.1
A secure Decred wallet daemon written in Go (golang).
57 versions - Latest release: about 3 years ago - 1 dependent repositories - 0 stars on GitHub
Top 2.0% on proxy.golang.org
decred.org/dcrwallet v1.7.1
A secure Decred wallet daemon written in Go (golang).
57 versions - Latest release: about 3 years ago - 30 dependent packages - 34 dependent repositories - 208 stars on GitHub
Top 8.1% on proxy.golang.org
github.com/Decred-Next/dcrnwallet v1.7.1
57 versions - Latest release: about 3 years ago - 1 stars on
Top 8.1% on proxy.golang.org
github.com/decred-next/dcrnwallet v1.7.1
57 versions - Latest release: about 3 years ago - 1 stars on GitHub
github.com/dreacot/dcrlibwallet v1.6.0
16 versions - Latest release: about 3 years ago - 1 dependent repositories - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/chappjc/dcrwallet v1.6.2
A secure decred wallet daemon written in Go (golang)
55 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/c-ollins/dcrwallet v1.6.0
A secure Decred wallet daemon written in Go (golang).
53 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/C-ollins/dcrwallet v1.6.0
A secure Decred wallet daemon written in Go (golang).
53 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/hdfchain/hdfd v1.5.2
hdfd is a full-node Decred implementation written in Go. The default options are sane for most u...
5 versions - Latest release: over 3 years ago - 1 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/justinbeboy/dcrlibwallet v1.5.2
14 versions - Latest release: almost 4 years ago - 0 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/AdimekweEbuka/dcrlibwallet v1.5.2 removed
14 versions - Latest release: almost 4 years ago
Top 8.2% on proxy.golang.org
github.com/adimekweebuka/dcrlibwallet v1.5.2
14 versions - Latest release: almost 4 years ago
Top 4.1% on proxy.golang.org
github.com/JustinBeBoy/dcrlibwallet v1.5.2 removed
14 versions - Latest release: almost 4 years ago
Top 8.2% on proxy.golang.org
github.com/Sirmorrison/dcrlibwallet v1.5.0
13 versions - Latest release: about 4 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/sirmorrison/dcrlibwallet v1.5.0
13 versions - Latest release: about 4 years ago - 0 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/justinsantoro/dcrlibwallet v1.5.0 removed
13 versions - Latest release: about 4 years ago
Top 8.2% on proxy.golang.org
github.com/oshorefueled/dcrlibwallet v1.1.1
11 versions - Latest release: over 4 years ago
Top 8.2% on proxy.golang.org
github.com/codemaestro64/dcrlibwallet v1.1.1
11 versions - Latest release: over 4 years ago - 0 stars on GitHub
Top 3.9% on proxy.golang.org
github.com/decred/dcrdata/v5 v5.2.2
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
14 versions - Latest release: over 4 years ago - 1 dependent package - 2 dependent repositories - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/justinsantoro/dcrwallet v1.5.1
A secure Decred wallet daemon written in Go (golang).
44 versions - Latest release: over 4 years ago - 0 stars on GitHub
Top 5.0% on proxy.golang.org
github.com/jrick/dcrwallet v1.5.1
A secure Decred wallet daemon written in Go (golang).
44 versions - Latest release: over 4 years ago - 0 stars on GitHub
Top 7.2% on proxy.golang.org
github.com/raedahgroup/dcrwallet v1.5.1
37 versions - Latest release: over 4 years ago - 1 dependent repositories
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrnwallet/rpc/jsonrpc/types v1.4.0
5 versions - Latest release: over 4 years ago
Top 1.8% on proxy.golang.org
github.com/decred/dcrwallet/rpc/jsonrpc/types v1.4.0
Package types implements concrete types for the dcrwallet JSON-RPC API. When communicating via t...
5 versions - Latest release: over 4 years ago - 50 dependent packages - 35 dependent repositories - 196 stars on GitHub
Top 5.0% on proxy.golang.org
decred.org/dcrwallet/rpc/jsonrpc/types v1.4.0
Package types implements concrete types for the dcrwallet JSON-RPC API. When communicating via t...
5 versions - Latest release: over 4 years ago - 210 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrnwallet/rpc/jsonrpc/types v1.4.0
5 versions - Latest release: over 4 years ago
Top 8.2% on proxy.golang.org
github.com/Eacred/ecrwallet v1.5.0
9 versions - Latest release: over 4 years ago
Top 2.8% on proxy.golang.org
github.com/decred/dcrdata/api/types/v3 v3.0.2
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: almost 5 years ago - 16 dependent packages - 2 dependent repositories - 124 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/decred/dcrdata/db/dcrpg/v3 v3.1.1
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
6 versions - Latest release: almost 5 years ago - 1 dependent package - 124 stars on GitHub
Top 2.8% on proxy.golang.org
github.com/decred/dcrdata/db/dcrsqlite/v3 v3.0.2 removed
3 versions - Latest release: almost 5 years ago - 1 dependent package
Top 4.1% on proxy.golang.org
github.com/Eacred/ecrd/rpcclient/v2 v2.1.0 removed
1 version - Latest release: almost 5 years ago
Top 6.4% on proxy.golang.org
github.com/decred/dcrdata/middleware/v2 v2.3.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
5 versions - Latest release: almost 5 years ago - 2 dependent packages - 127 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/decred/dcrdata/gov v1.0.2
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: almost 5 years ago - 1 dependent package - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/gov v1.0.2
3 versions - Latest release: almost 5 years ago
github.com/exccoin/exccdata/gov v1.0.2
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: almost 5 years ago - 3 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/decred-next/dcrndata/gov v1.0.2
3 versions - Latest release: almost 5 years ago - 2 stars on GitHub
Top 4.0% on proxy.golang.org
github.com/decred/dcrdata/pubsub/v2 v2.0.1 removed
2 versions - Latest release: almost 5 years ago - 2 dependent packages - 2 dependent repositories
Top 4.9% on proxy.golang.org
github.com/decred/dcrdata/blockdata/v3 v3.0.0 removed
1 version - Latest release: almost 5 years ago - 4 dependent packages - 1 dependent repositories
Top 3.5% on proxy.golang.org
github.com/decred/dcrdata/blockdata/v2 v2.0.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
1 version - Latest release: almost 5 years ago - 4 dependent packages - 1 dependent repositories - 128 stars on GitHub
Top 3.3% on proxy.golang.org
github.com/decred/dcrdata/mempool/v3 v3.0.1
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
2 versions - Latest release: almost 5 years ago - 3 dependent packages - 2 dependent repositories - 128 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrndata/rpcutils v1.2.0
4 versions - Latest release: almost 5 years ago
Top 9.1% on proxy.golang.org
github.com/exccoin/exccdata/rpcutils v1.2.0
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
4 versions - Latest release: almost 5 years ago - 3 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/EXCCoin/exccdata/rpcutils v1.2.0
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
4 versions - Latest release: almost 5 years ago - 3 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/rpcutils v1.2.0
4 versions - Latest release: almost 5 years ago
Top 8.2% on proxy.golang.org
github.com/dcrdata/dcrdata/rpcutils v1.2.0
4 versions - Latest release: almost 5 years ago
Top 8.6% on proxy.golang.org
github.com/chappjc/dcrdata/rpcutils v1.2.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
4 versions - Latest release: almost 5 years ago - 0 stars on GitHub
Top 2.7% on proxy.golang.org
github.com/decred/dcrdata/rpcutils v1.2.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
4 versions - Latest release: almost 5 years ago - 32 dependent packages - 2 dependent repositories - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/dcrdata/dcrdata/explorer/types v1.1.0
3 versions - Latest release: almost 5 years ago
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrndata/explorer/types v1.1.0
3 versions - Latest release: almost 5 years ago
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/explorer/types v1.1.0
3 versions - Latest release: almost 5 years ago
Top 2.7% on proxy.golang.org
github.com/decred/dcrdata/explorer/types v1.1.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: almost 5 years ago - 28 dependent packages - 2 dependent repositories - 124 stars on GitHub
Top 2.7% on proxy.golang.org
github.com/decred/dcrdata/txhelpers/v2 v2.0.0
Package txhelpers contains helper functions for working with transactions and blocks (e.g. checki...
1 version - Latest release: almost 5 years ago - 26 dependent packages - 2 dependent repositories - 124 stars on GitHub
Top 3.2% on proxy.golang.org
github.com/decred/dcrwallet/wallet/v2 v2.1.1
Package wallet provides ... TODO: Flesh out this section Overview
3 versions - Latest release: almost 5 years ago - 8 dependent packages - 1 dependent repositories - 196 stars on GitHub
Top 4.1% on proxy.golang.org
decred.org/dcrwallet/wallet/v2 v2.1.1 removed
3 versions - Latest release: almost 5 years ago
Top 4.5% on proxy.golang.org
github.com/decred/dcrdata/db/dcrpg/v2 v2.0.1
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
2 versions - Latest release: about 5 years ago - 1 dependent package - 124 stars on GitHub
Top 3.6% on proxy.golang.org
github.com/decred/dcrdata/api/types/v2 v2.1.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 30 dependent packages - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/dcrdata/dcrdata/pubsub v1.0.1
2 versions - Latest release: about 5 years ago
Top 7.0% on proxy.golang.org
github.com/decred/dcrdata/pubsub v1.0.1
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
2 versions - Latest release: about 5 years ago - 1 dependent package - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/pubsub v1.0.1
2 versions - Latest release: about 5 years ago
Top 7.0% on proxy.golang.org
github.com/decred/dcrdata/db/dcrsqlite/v2 v2.0.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
1 version - Latest release: about 5 years ago - 1 dependent package - 128 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrndata/pubsub v1.0.1
2 versions - Latest release: about 5 years ago
Top 9.1% on proxy.golang.org
github.com/exccoin/exccdata/blockdata v1.0.2
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 3 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/blockdata v1.0.2
3 versions - Latest release: about 5 years ago
Top 8.2% on proxy.golang.org
github.com/dcrdata/dcrdata/blockdata v1.0.2
3 versions - Latest release: about 5 years ago
Top 3.6% on proxy.golang.org
github.com/decred/dcrdata/blockdata v1.0.2
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 16 dependent packages - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/chappjc/dcrdata/blockdata v1.0.2
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 0 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/EXCCoin/exccdata/blockdata v1.0.2
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 3 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrndata/blockdata v1.0.2
3 versions - Latest release: about 5 years ago
Top 5.6% on proxy.golang.org
github.com/decred/dcrdata/mempool/v2 v2.0.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
1 version - Latest release: about 5 years ago - 6 dependent packages - 128 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/decred/dcrdata/gov/agendas v1.1.0
Package agendas manages the various deployment agendas that are directly voted upon with the vote...
2 versions - Latest release: about 5 years ago - 1 dependent package - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/gov/agendas v1.1.0
2 versions - Latest release: about 5 years ago
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrndata/gov/agendas v1.1.0
2 versions - Latest release: about 5 years ago
Top 8.2% on proxy.golang.org
github.com/decred-next/dcrndata/txhelpers v1.1.0
3 versions - Latest release: about 5 years ago
Top 8.2% on proxy.golang.org
github.com/chappjc/dcrdata/txhelpers v1.1.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 0 stars on GitHub
Top 5.1% on proxy.golang.org
decred.org/dcrdata/txhelpers v1.1.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 128 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/decred/dcrdata/txhelpers v1.1.0
Package txhelpers contains helper functions for working with transactions and blocks (e.g. checki...
3 versions - Latest release: about 5 years ago - 78 dependent packages - 4 dependent repositories - 124 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/EXCCoin/exccdata/txhelpers v1.1.0
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 3 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Decred-Next/dcrndata/txhelpers v1.1.0
3 versions - Latest release: about 5 years ago
Top 9.1% on proxy.golang.org
github.com/exccoin/exccdata/txhelpers v1.1.0
EXCCoin block explorer, with packages and apps for data collection and storage. Written in Go.
3 versions - Latest release: about 5 years ago - 3 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/dcrdata/dcrdata/txhelpers v1.1.0
3 versions - Latest release: about 5 years ago
Top 3.2% on proxy.golang.org
github.com/decred/dcrdata/v4 v4.0.2
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
11 versions - Latest release: about 5 years ago - 10 dependent packages - 1 dependent repositories - 124 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/dcrdata/dcrdata/db/dcrsqlite v1.0.0
1 version - Latest release: about 5 years ago
Top 7.0% on proxy.golang.org
github.com/decred/dcrdata/db/dcrsqlite v1.0.0
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
1 version - Latest release: about 5 years ago - 1 dependent package - 124 stars on GitHub