From f345b95386d1ac73bc136b549dbf6f41e1854b86 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 18 Jul 2018 03:02:37 -1100 Subject: [PATCH 1/6] Initial assets --- src/cc/assets.cpp | 191 ++++++++++++++++++++ src/cc/betprotocol.cpp | 15 ++ src/cc/betprotocol.h | 15 ++ src/cc/eval.cpp | 19 ++ src/cc/eval.h | 19 +- src/cc/import.cpp | 15 ++ src/cc/utils.h | 15 ++ src/cryptoconditions/src/anon.c | 14 ++ src/cryptoconditions/src/cryptoconditions.c | 15 ++ src/cryptoconditions/src/ed25519.c | 15 ++ src/cryptoconditions/src/eval.c | 15 ++ src/cryptoconditions/src/internal.h | 15 ++ src/cryptoconditions/src/json_rpc.c | 15 ++ src/cryptoconditions/src/prefix.c | 14 ++ src/cryptoconditions/src/preimage.c | 14 ++ src/cryptoconditions/src/threshold.c | 14 ++ src/cryptoconditions/src/utils.c | 15 ++ 17 files changed, 434 insertions(+), 1 deletion(-) create mode 100644 src/cc/assets.cpp diff --git a/src/cc/assets.cpp b/src/cc/assets.cpp new file mode 100644 index 000000000..1e7dc61a8 --- /dev/null +++ b/src/cc/assets.cpp @@ -0,0 +1,191 @@ +/****************************************************************************** + * Copyright © 2014-2018 The SuperNET Developers. * + * * + * See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at * + * the top-level directory of this distribution for the individual copyright * + * holder information and the developer policies on copyright and licensing. * + * * + * Unless otherwise agreed in a custom licensing agreement, no part of the * + * SuperNET software, including this file may be copied, modified, propagated * + * or distributed except according to the terms contained in the LICENSE file * + * * + * Removal or modification of this copyright notice is prohibited. * + * * + ******************************************************************************/ + +#include +#include