Split Asset contract into Tokens and Assets
This commit is contained in:
@@ -406,8 +406,16 @@ static const CRPCCommand vRPCCommands[] =
|
||||
{ "faucet", "faucetget", &faucetget, true },
|
||||
{ "faucet", "faucetaddress", &faucetaddress, true },
|
||||
|
||||
// Heir
|
||||
{ "heir", "heiraddress", &heiraddress, true },
|
||||
// Heir
|
||||
{ "heir", "heiraddress", &heiraddress, true },
|
||||
{ "heir", "heirfund", &heirfund, true },
|
||||
{ "heir", "heiradd", &heiradd, true },
|
||||
{ "heir", "heirclaim", &heirclaim, true },
|
||||
{ "heir", "heirfundtokens", &heirfundtokens, true },
|
||||
{ "heir", "heiraddtokens", &heiraddtokens, true },
|
||||
{ "heir", "heirclaimtokens", &heirclaimtokens, true },
|
||||
{ "heir", "heirinfo", &heirinfo, true },
|
||||
{ "heir", "heirlist", &heirlist, true },
|
||||
|
||||
// Channels
|
||||
{ "channels", "channelsaddress", &channelsaddress, true },
|
||||
@@ -479,7 +487,8 @@ static const CRPCCommand vRPCCommands[] =
|
||||
{ "dice", "dicestatus", &dicestatus, true },
|
||||
{ "dice", "diceaddress", &diceaddress, true },
|
||||
|
||||
// tokens
|
||||
// tokens & assets
|
||||
{ "tokens", "assetsaddress", &assetsaddress, true },
|
||||
{ "tokens", "tokeninfo", &tokeninfo, true },
|
||||
{ "tokens", "tokenlist", &tokenlist, true },
|
||||
{ "tokens", "tokenorders", &tokenorders, true },
|
||||
|
||||
@@ -242,6 +242,7 @@ extern UniValue tokeninfo(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokenlist(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokenorders(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokenbalance(const UniValue& params, bool fHelp);
|
||||
extern UniValue assetsaddress(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokenaddress(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokencreate(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokentransfer(const UniValue& params, bool fHelp);
|
||||
@@ -253,6 +254,14 @@ extern UniValue tokencancelask(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokenfillask(const UniValue& params, bool fHelp);
|
||||
extern UniValue tokenconvert(const UniValue& params, bool fHelp);
|
||||
extern UniValue heiraddress(const UniValue& params, bool fHelp);
|
||||
extern UniValue heirfund(const UniValue& params, bool fHelp);
|
||||
extern UniValue heiradd(const UniValue& params, bool fHelp);
|
||||
extern UniValue heirclaim(const UniValue& params, bool fHelp);
|
||||
extern UniValue heirfundtokens(const UniValue& params, bool fHelp);
|
||||
extern UniValue heiraddtokens(const UniValue& params, bool fHelp);
|
||||
extern UniValue heirclaimtokens(const UniValue& params, bool fHelp);
|
||||
extern UniValue heirinfo(const UniValue& params, bool fHelp);
|
||||
extern UniValue heirlist(const UniValue& params, bool fHelp);
|
||||
extern UniValue channelsaddress(const UniValue& params, bool fHelp);
|
||||
extern UniValue oraclesaddress(const UniValue& params, bool fHelp);
|
||||
extern UniValue oracleslist(const UniValue& params, bool fHelp);
|
||||
|
||||
Reference in New Issue
Block a user