Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
rentnet_subcommand Struct Reference
Collaboration diagram for rentnet_subcommand:

Public Member Functions

 rentnet_subcommand (CLI::App *actionRoot)
 

Public Attributes

string from_str
 
string receiver_str
 
string loan_payment_str
 
string loan_fund_str
 
const name act_name { "rentnet"_n }
 

Detailed Description

Definition at line 1985 of file main.cpp.

Constructor & Destructor Documentation

◆ rentnet_subcommand()

rentnet_subcommand::rentnet_subcommand ( CLI::App * actionRoot)
inline

Definition at line 1992 of file main.cpp.

1992 {
1993 auto rentnet = actionRoot->add_subcommand("rentnet", localized("Rent Network bandwidth for 30 days"));
1994 rentnet->add_option("from", from_str, localized("Account paying rent fees"))->required();
1995 rentnet->add_option("receiver", receiver_str, localized("Account to whom rented Network bandwidth is staked"))->required();
1996 rentnet->add_option("loan_payment", loan_payment_str, localized("Loan fee to be paid, used to calculate amount of rented bandwidth"))->required();
1997 rentnet->add_option("loan_fund", loan_fund_str, localized("Loan fund to be used in automatic renewal, can be 0 tokens"))->required();
1998 add_standard_transaction_options(rentnet, "from@active");
1999 rentnet->callback([this] {
2001 ("from", from_str)
2002 ("receiver", receiver_str)
2003 ("loan_payment", loan_payment_str)
2004 ("loan_fund", loan_fund_str);
2005 auto accountPermissions = get_account_permissions(tx_permission, {name(from_str), config::active_name});
2006 send_actions({create_action(accountPermissions, config::system_account_name, act_name, act_payload)});
2007 });
2008 }
std::string name
App * add_subcommand(std::string subcommand_name="", std::string subcommand_description="")
Add a subcommand. Inherits INHERITABLE and OptionDefaults, and help flag.
Definition CLI11.hpp:5538
Option * add_option(std::string option_name, callback_t option_callback, std::string option_description="", bool defaulted=false, std::function< std::string()> func={})
Definition CLI11.hpp:5099
CRTP * required(bool value=true)
Set the option as required.
Definition CLI11.hpp:3400
An order-preserving dictionary of variants.
stores null, int64, uint64, double, bool, string, std::vector<variant>, and variant_object's.
Definition variant.hpp:191
#define localized(str,...)
Definition localize.hpp:10
chain::action create_action(const vector< permission_level > &authorization, const account_name &code, const action_name &act, const fc::variant &args)
Definition main.cpp:683
vector< chain::permission_level > get_account_permissions(const vector< string > &permissions)
Definition main.cpp:238
void add_standard_transaction_options(CLI::App *cmd, string default_permission="")
Definition main.cpp:202
void send_actions(std::vector< chain::action > &&actions, packed_transaction::compression_type compression=packed_transaction::compression_type::none)
Definition main.cpp:616
vector< string > tx_permission
Definition main.cpp:198
string loan_payment_str
Definition main.cpp:1988
string receiver_str
Definition main.cpp:1987
string loan_fund_str
Definition main.cpp:1989
const name act_name
Definition main.cpp:1990
Here is the call graph for this function:

Member Data Documentation

◆ act_name

const name rentnet_subcommand::act_name { "rentnet"_n }

Definition at line 1990 of file main.cpp.

1990{ "rentnet"_n };

◆ from_str

string rentnet_subcommand::from_str

Definition at line 1986 of file main.cpp.

◆ loan_fund_str

string rentnet_subcommand::loan_fund_str

Definition at line 1989 of file main.cpp.

◆ loan_payment_str

string rentnet_subcommand::loan_payment_str

Definition at line 1988 of file main.cpp.

◆ receiver_str

string rentnet_subcommand::receiver_str

Definition at line 1987 of file main.cpp.


The documentation for this struct was generated from the following file: