0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-04 10:07:27 -05:00
bitcoin-bitcoin-core/src/univalue
2022-05-12 11:52:28 +02:00
..
build-aux/m4 Update univalue subtree to latest upstream 2021-10-11 20:45:56 +08:00
gen Bump univalue subtree 2022-05-12 11:52:28 +02:00
include Bump univalue subtree 2022-05-12 11:52:28 +02:00
lib Bump univalue subtree 2022-05-12 11:52:28 +02:00
pc Merge commit '2f9f082b5ef3c495c70598ef23383effef675f9a' as 'src/univalue' 2015-10-01 10:37:19 +02:00
test Bump univalue subtree 2022-05-12 11:52:28 +02:00
.cirrus.yml Update univalue subtree to latest upstream 2021-10-11 20:45:56 +08:00
.gitignore Merge commit '982709199f1b4e9e35211c419a81938f9f1dd4ed' into bitcoin 2015-12-02 12:28:48 +01:00
autogen.sh Merge commit '2f9f082b5ef3c495c70598ef23383effef675f9a' as 'src/univalue' 2015-10-01 10:37:19 +02:00
configure.ac Bump univalue subtree 2022-05-12 11:52:28 +02:00
COPYING Merge commit '2f9f082b5ef3c495c70598ef23383effef675f9a' as 'src/univalue' 2015-10-01 10:37:19 +02:00
Makefile.am Update univalue subtree to latest upstream 2021-10-11 20:45:56 +08:00
README.md Bump univalue subtree 2022-05-12 11:52:28 +02:00
sources.mk Update univalue subtree to latest upstream 2021-10-11 20:45:56 +08:00
TODO Merge commit '2f9f082b5ef3c495c70598ef23383effef675f9a' as 'src/univalue' 2015-10-01 10:37:19 +02:00

UniValue

Summary

A universal value class, with JSON encoding and decoding.

UniValue is an abstract data type that may be a null, boolean, string, number, array container, or a key/value dictionary container, nested to an arbitrary depth.

This class is aligned with the JSON standard, RFC 7159.

Library usage

This is a fork of univalue used by Bitcoin Core. It is not maintained for usage by other projects. Notably, the API is broken in non-backward-compatible ways.

Other projects looking for a maintained library should use the upstream univalue at https://github.com/jgarzik/univalue.