• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/m4/H17-May-2021-21

gen/H17-May-2021-8360

include/H17-May-2021-239199

lib/H17-May-2021-1,3521,119

pc/H17-May-2021-2117

test/H03-May-2022-758601

.gitignoreH A D17-May-2021284 3330

.travis.ymlH A D17-May-20211.3 KiB5242

COPYINGH A D17-May-20211 KiB2015

Makefile.amH A D17-May-20213.4 KiB119101

README.mdH A D17-May-2021648 2213

TODOH A D17-May-2021231 115

autogen.shH A D17-May-2021214 108

configure.acH A D17-May-20212.1 KiB7055

README.md

1
2# UniValue
3
4## Summary
5
6A universal value class, with JSON encoding and decoding.
7
8UniValue is an abstract data type that may be a null, boolean, string,
9number, array container, or a key/value dictionary container, nested to
10an arbitrary depth.
11
12This class is aligned with the JSON standard, [RFC
137159](https://tools.ietf.org/html/rfc7159.html).
14
15## Library usage
16
17This is a fork of univalue used by Bitcoin Core. It is not maintained for usage
18by other projects. Notably, the API may break in non-backward-compatible ways.
19
20Other projects looking for a maintained library should use the upstream
21univalue at https://github.com/jgarzik/univalue.
22