[SON for Hive] - Primary wallet implementation #53

Closed
opened 2021-03-17 00:25:23 +00:00 by serkixenos · 11 comments
serkixenos commented 2021-03-17 00:25:23 +00:00 (Migrated from gitlab.com)

Hive primary wallet will be a Hive account, where owner/key_auths, active/key_auths, posting/key_auths and memo_key will be removed, and active/account_auths will be populated with the Hive accounts of SON operators and their weights, and active/weight_threshold will be a (sum of son operators account weights) * 2 / 3 + 1.

Keys will be removed after populating active/account_auths.

Keys will be removed with cli_wallet RPC
condenser_api::legacy_signed_transaction update_account_auth_key(string account_name, authority_type type, public_key_type key, weight_type weight, bool broadcast)

active/account_auths will be updated with cli_wallet RPC
condenser_api::legacy_signed_transaction update_account_auth_account(string account_name, authority_type type, string auth_account, weight_type weight, bool broadcast)

active/weight_threshold will be updated wit cli_wallet RPC
condenser_api::legacy_signed_transaction update_account_auth_threshold(string account_name, authority_type type, uint32_t threshold, bool broadcast)

Hive primary wallet will be a Hive account, where owner/key_auths, active/key_auths, posting/key_auths and memo_key will be removed, and active/account_auths will be populated with the Hive accounts of SON operators and their weights, and active/weight_threshold will be a (sum of son operators account weights) * 2 / 3 + 1. Keys will be removed after populating active/account_auths. Keys will be removed with cli_wallet RPC condenser_api::legacy_signed_transaction update_account_auth_key(string account_name, authority_type type, public_key_type key, weight_type weight, bool broadcast) active/account_auths will be updated with cli_wallet RPC condenser_api::legacy_signed_transaction update_account_auth_account(string account_name, authority_type type, string auth_account, weight_type weight, bool broadcast) active/weight_threshold will be updated wit cli_wallet RPC condenser_api::legacy_signed_transaction update_account_auth_threshold(string account_name, authority_type type, uint32_t threshold, bool broadcast)
bobinson commented 2021-03-17 08:29:48 +00:00 (Migrated from gitlab.com)

@colinijebor - please add this to the current milestone. None of the blockchain projects has sprint tracking now.

@colinijebor - please add this to the current milestone. None of the blockchain projects has sprint tracking now.
bobinson commented 2021-03-17 08:31:23 +00:00 (Migrated from gitlab.com)

@serkixenos - Whats the reasoning for removing the Owner key ?

Hive primary wallet will be a Hive account

Hive has a recovery account option. We will have to make sure that the recovery account is same as the Hive account used above or otherwise the recovery account could open up an attack vector.

@serkixenos - Whats the reasoning for removing the Owner key ? > Hive primary wallet will be a Hive account Hive has a recovery account option. We will have to make sure that the recovery account is same as the Hive account used above or otherwise the recovery account could open up an attack vector.
colinijebor commented 2021-03-17 18:44:13 +00:00 (Migrated from gitlab.com)

made the issue visible to everyone

made the issue visible to everyone
colinijebor commented 2021-03-17 18:48:15 +00:00 (Migrated from gitlab.com)

made the issue confidential

made the issue confidential
serkixenos commented 2021-04-09 13:11:05 +00:00 (Migrated from gitlab.com)

changed epic to &77

changed epic to &77
serkixenos commented 2021-04-09 13:12:40 +00:00 (Migrated from gitlab.com)

changed epic to &78

changed epic to &78
serkixenos commented 2021-04-20 11:37:38 +00:00 (Migrated from gitlab.com)

made the issue visible to everyone

made the issue visible to everyone
hbelakon commented 2021-06-08 13:55:15 +00:00 (Migrated from gitlab.com)

@serkixenos I estimated 40hr. Please correct me if I am wrong! :)

@serkixenos I estimated 40hr. Please correct me if I am wrong! :)
serkixenos commented 2021-06-08 15:09:33 +00:00 (Migrated from gitlab.com)

assigned to @prandnum and unassigned @serkixenos

assigned to @prandnum and unassigned @serkixenos
hbelakon commented 2021-06-09 01:17:27 +00:00 (Migrated from gitlab.com)

changed time estimate to 40h

changed time estimate to 40h
prandnum commented 2021-06-22 04:56:08 +00:00 (Migrated from gitlab.com)
// New Peerplays installation

unlocked >>> get_account son-account
get_account son-account
{
  "id": "1.2.19",
  "membership_expiration_date": "2106-02-07T06:28:15",
  "registrar": "1.2.19",
  "referrer": "1.2.19",
  "lifetime_referrer": "1.2.19",
  "network_fee_percentage": 2000,
  "lifetime_referrer_fee_percentage": 8000,
  "referrer_rewards_percentage": 0,
  "name": "son-account",
  "owner": {
    "weight_threshold": 1,
    "account_auths": [],
    "key_auths": [],
    "address_auths": []
  },
  "active": {
    "weight_threshold": 0,
    "account_auths": [],
    "key_auths": [],
    "address_auths": []
  },
  "options": {
    "memo_key": "TEST1111111111111111111111111111111114T1Anm",
    "voting_account": "1.2.5",
    "num_witness": 0,
    "num_committee": 0,
    "votes": [],
    "extensions": []
  },
  "statistics": "2.6.19",
  "whitelisting_accounts": [],
  "blacklisting_accounts": [],
  "whitelisted_accounts": [],
  "blacklisted_accounts": [],
  "owner_special_authority": [
    0,{}
  ],
  "active_special_authority": [
    0,{}
  ],
  "top_n_control_flags": 0
}
unlocked >>> 

unlocked >>> get_global_properties 
get_global_properties 
{
  "id": "2.0.0",
  "parameters": {
    "current_fees": {
      "parameters": [[
          0,{
            "fee": 2000000,
            "price_per_kbyte": 1000000
          }
        ],[
          1,{
            "fee": 500000
          }
        ],[
          2,{
            "fee": 0
          }
        ],[
          3,{
            "fee": 2000000
          }
        ],[
          4,{}
        ],[
          5,{
            "basic_fee": 500000,
            "premium_fee": 200000000,
            "price_per_kbyte": 100000
          }
        ],[
          6,{
            "fee": 2000000,
            "price_per_kbyte": 100000
          }
        ],[
          7,{
            "fee": 300000
          }
        ],[
          8,{
            "membership_annual_fee": 200000000,
            "membership_lifetime_fee": 1000000000
          }
        ],[
          9,{
            "fee": 50000000
          }
        ],[
          10,{
            "symbol3": "50000000000",
            "symbol4": "30000000000",
            "long_symbol": 500000000,
            "price_per_kbyte": 10
          }
        ],[
          11,{
            "fee": 50000000,
            "price_per_kbyte": 10
          }
        ],[
          12,{
            "fee": 50000000
          }
        ],[
          13,{
            "fee": 50000000
          }
        ],[
          14,{
            "fee": 2000000,
            "price_per_kbyte": 100000
          }
        ],[
          15,{
            "fee": 2000000
          }
        ],[
          16,{
            "fee": 100000
          }
        ],[
          17,{
            "fee": 10000000
          }
        ],[
          18,{
            "fee": 50000000
          }
        ],[
          19,{
            "fee": 100000
          }
        ],[
          20,{
            "fee": 500000000
          }
        ],[
          21,{
            "fee": 2000000
          }
        ],[
          22,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          23,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          24,{
            "fee": 100000
          }
        ],[
          25,{
            "fee": 100000
          }
        ],[
          26,{
            "fee": 100000
          }
        ],[
          27,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          28,{
            "fee": 0
          }
        ],[
          29,{
            "fee": 500000000
          }
        ],[
          30,{
            "fee": 2000000
          }
        ],[
          31,{
            "fee": 100000
          }
        ],[
          32,{
            "fee": 100000
          }
        ],[
          33,{
            "fee": 2000000
          }
        ],[
          34,{
            "fee": 500000000
          }
        ],[
          35,{
            "fee": 100000,
            "price_per_kbyte": 10
          }
        ],[
          36,{
            "fee": 100000
          }
        ],[
          37,{}
        ],[
          38,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          39,{
            "fee": 500000,
            "price_per_output": 500000
          }
        ],[
          40,{
            "fee": 500000,
            "price_per_output": 500000
          }
        ],[
          41,{
            "fee": 500000
          }
        ],[
          42,{}
        ],[
          43,{
            "fee": 2000000
          }
        ],[
          44,{}
        ],[
          45,{
            "fee": 100000
          }
        ],[
          46,{
            "fee": 100000
          }
        ],[
          47,{
            "fee": 100000
          }
        ],[
          48,{
            "fee": 50000000
          }
        ],[
          49,{
            "distribution_base_fee": 0,
            "distribution_fee_per_holder": 0
          }
        ],[
          50,{}
        ],[
          51,{
            "fee": 100000
          }
        ],[
          52,{
            "fee": 100000
          }
        ],[
          53,{
            "fee": 100000
          }
        ],[
          54,{
            "fee": 100000
          }
        ],[
          55,{
            "fee": 100000
          }
        ],[
          56,{
            "fee": 100000
          }
        ],[
          57,{
            "fee": 100000
          }
        ],[
          58,{
            "fee": 100000
          }
        ],[
          59,{
            "fee": 100000
          }
        ],[
          60,{
            "fee": 100000
          }
        ],[
          61,{
            "fee": 100000
          }
        ],[
          62,{
            "fee": 100000
          }
        ],[
          63,{
            "fee": 100000
          }
        ],[
          64,{}
        ],[
          65,{}
        ],[
          66,{
            "fee": 100000
          }
        ],[
          67,{}
        ],[
          68,{
            "fee": 100000
          }
        ],[
          69,{}
        ],[
          70,{
            "fee": 100000
          }
        ],[
          71,{
            "fee": 100000
          }
        ],[
          72,{
            "fee": 100000
          }
        ],[
          73,{
            "fee": 100000
          }
        ],[
          74,{
            "fee": 100000
          }
        ],[
          75,{}
        ],[
          76,{}
        ],[
          77,{
            "lottery_asset": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          78,{
            "fee": 0
          }
        ],[
          79,{
            "fee": 0
          }
        ],[
          80,{
            "fee": 0
          }
        ],[
          81,{
            "fee": 2000000
          }
        ],[
          82,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          83,{
            "fee": 100000
          }
        ],[
          84,{
            "fee": 100000
          }
        ],[
          85,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          86,{
            "fee": 100000
          }
        ],[
          87,{
            "fee": 100000
          }
        ],[
          88,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          89,{
            "fee": 100000
          }
        ],[
          90,{
            "fee": 100000
          }
        ],[
          91,{
            "fee": 0
          }
        ],[
          92,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          93,{
            "fee": 100000
          }
        ],[
          94,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          95,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          96,{
            "fee": 100000
          }
        ],[
          97,{
            "fee": 100000
          }
        ],[
          98,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          99,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          100,{
            "fee": 100000
          }
        ],[
          101,{
            "fee": 0
          }
        ],[
          102,{
            "fee": 0
          }
        ],[
          103,{
            "fee": 0
          }
        ],[
          104,{
            "fee": 0
          }
        ],[
          105,{
            "fee": 0
          }
        ],[
          106,{
            "fee": 0
          }
        ],[
          107,{
            "fee": 0
          }
        ],[
          108,{
            "fee": 0
          }
        ],[
          109,{
            "fee": 0
          }
        ],[
          110,{
            "fee": 0
          }
        ],[
          111,{
            "fee": 0
          }
        ],[
          112,{
            "fee": 0
          }
        ],[
          113,{
            "fee": 0
          }
        ],[
          114,{
            "fee": 0
          }
        ],[
          115,{
            "fee": 0
          }
        ],[
          116,{
            "fee": 0
          }
        ],[
          117,{
            "fee": 0
          }
        ],[
          118,{
            "fee": 0
          }
        ],[
          119,{
            "fee": 0
          }
        ],[
          120,{
            "fee": 100000
          }
        ],[
          121,{
            "fee": 100000
          }
        ],[
          122,{
            "fee": 100000
          }
        ],[
          123,{
            "fee": 500000000
          }
        ]
      ],
      "scale": 10000
    },
    "block_interval": 3,
    "maintenance_interval": 600,
    "maintenance_skip_slots": 3,
    "committee_proposal_review_period": 600,
    "maximum_transaction_size": 2048,
    "maximum_block_size": 1228800000,
    "maximum_time_until_expiration": 86400,
    "maximum_proposal_lifetime": 2419200,
    "maximum_asset_whitelist_authorities": 10,
    "maximum_asset_feed_publishers": 10,
    "maximum_witness_count": 1001,
    "maximum_committee_count": 1001,
    "maximum_authority_membership": 10,
    "reserve_percent_of_fee": 2000,
    "network_percent_of_fee": 2000,
    "lifetime_referrer_percent_of_fee": 3000,
    "cashback_vesting_period_seconds": 31536000,
    "cashback_vesting_threshold": 10000000,
    "count_non_member_votes": true,
    "allow_non_member_whitelists": false,
    "witness_pay_per_block": 1000000,
    "worker_budget_per_day": "50000000000",
    "max_predicate_opcode": 1,
    "fee_liquidation_threshold": 10000000,
    "accounts_per_fee_scale": 1000,
    "account_fee_scale_bitshifts": 4,
    "max_authority_depth": 2,
    "witness_schedule_algorithm": 1,
    "min_round_delay": 0,
    "max_round_delay": 600,
    "min_time_per_commit_move": 0,
    "max_time_per_commit_move": 600,
    "min_time_per_reveal_move": 0,
    "max_time_per_reveal_move": 600,
    "rake_fee_percentage": 300,
    "maximum_registration_deadline": 2592000,
    "maximum_players_in_tournament": 256,
    "maximum_tournament_whitelist_length": 1000,
    "maximum_tournament_start_time_in_future": 2419200,
    "maximum_tournament_start_delay": 604800,
    "maximum_tournament_number_of_wins": 100,
    "extensions": {
      "sweeps_distribution_percentage": 200,
      "sweeps_distribution_asset": "1.3.0",
      "sweeps_vesting_accumulator_account": "1.2.0",
      "gpos_period": 15552000,
      "gpos_subperiod": 2592000,
      "gpos_period_start": 1593824400,
      "gpos_vesting_lockin_period": 2592000,
      "rbac_max_permissions_per_account": 5,
      "rbac_max_account_authority_lifetime": 15552000,
      "rbac_max_authorities_per_permission": 15,
      "account_roles_max_per_account": 20,
      "account_roles_max_lifetime": 31536000,
      "son_vesting_amount": 5000000,
      "son_vesting_period": 172800,
      "son_pay_max": 20000000,
      "son_pay_time": 600,
      "son_deregister_time": 100,
      "son_heartbeat_frequency": 20,
      "son_down_time": 360,
      "son_bitcoin_min_tx_confirmations": 1,
      "son_account": "1.2.19",
      "btc_asset": "1.3.1",
      "maximum_son_count": 15,
      "hbd_asset": "1.3.2",
      "hive_asset": "1.3.3"
    }
  },
  "next_available_vote_id": 22,
  "active_committee_members": [
    "1.5.0",
    "1.5.1",
    "1.5.2",
    "1.5.3",
    "1.5.4",
    "1.5.5",
    "1.5.6",
    "1.5.7",
    "1.5.8",
    "1.5.9",
    "1.5.10"
  ],
  "active_witnesses": [
    "1.6.1",
    "1.6.2",
    "1.6.3",
    "1.6.4",
    "1.6.5",
    "1.6.6",
    "1.6.7",
    "1.6.8",
    "1.6.9",
    "1.6.10",
    "1.6.11"
  ],
  "active_sons": []
}
unlocked >>> 


// After Peerplays init script is run


unlocked >>> get_account son-account
get_account son-account
{
  "id": "1.2.19",
  "membership_expiration_date": "2106-02-07T06:28:15",
  "registrar": "1.2.19",
  "referrer": "1.2.19",
  "lifetime_referrer": "1.2.19",
  "network_fee_percentage": 2000,
  "lifetime_referrer_fee_percentage": 8000,
  "referrer_rewards_percentage": 0,
  "name": "son-account",
  "owner": {
    "weight_threshold": 1,
    "account_auths": [],
    "key_auths": [],
    "address_auths": []
  },
  "active": {
    "weight_threshold": 11,
    "account_auths": [[
        "1.2.36",
        1
      ],[
        "1.2.37",
        1
      ],[
        "1.2.38",
        1
      ],[
        "1.2.39",
        1
      ],[
        "1.2.40",
        1
      ],[
        "1.2.41",
        1
      ],[
        "1.2.42",
        1
      ],[
        "1.2.43",
        1
      ],[
        "1.2.44",
        1
      ],[
        "1.2.45",
        1
      ],[
        "1.2.46",
        1
      ],[
        "1.2.47",
        1
      ],[
        "1.2.48",
        1
      ],[
        "1.2.49",
        1
      ],[
        "1.2.50",
        1
      ]
    ],
    "key_auths": [],
    "address_auths": []
  },
  "options": {
    "memo_key": "TEST1111111111111111111111111111111114T1Anm",
    "voting_account": "1.2.5",
    "num_witness": 0,
    "num_committee": 0,
    "votes": [],
    "extensions": []
  },
  "statistics": "2.6.19",
  "whitelisting_accounts": [],
  "blacklisting_accounts": [],
  "whitelisted_accounts": [],
  "blacklisted_accounts": [],
  "cashback_vb": "1.13.33",
  "owner_special_authority": [
    0,{}
  ],
  "active_special_authority": [
    0,{}
  ],
  "top_n_control_flags": 0
}
unlocked >>>






unlocked >>> get_global_properties
get_global_properties
{
  "id": "2.0.0",
  "parameters": {
    "current_fees": {
      "parameters": [[
          0,{
            "fee": 2000000,
            "price_per_kbyte": 1000000
          }
        ],[
          1,{
            "fee": 500000
          }
        ],[
          2,{
            "fee": 0
          }
        ],[
          3,{
            "fee": 2000000
          }
        ],[
          4,{}
        ],[
          5,{
            "basic_fee": 500000,
            "premium_fee": 200000000,
            "price_per_kbyte": 100000
          }
        ],[
          6,{
            "fee": 2000000,
            "price_per_kbyte": 100000
          }
        ],[
          7,{
            "fee": 300000
          }
        ],[
          8,{
            "membership_annual_fee": 200000000,
            "membership_lifetime_fee": 1000000000
          }
        ],[
          9,{
            "fee": 50000000
          }
        ],[
          10,{
            "symbol3": "50000000000",
            "symbol4": "30000000000",
            "long_symbol": 500000000,
            "price_per_kbyte": 10
          }
        ],[
          11,{
            "fee": 50000000,
            "price_per_kbyte": 10
          }
        ],[
          12,{
            "fee": 50000000
          }
        ],[
          13,{
            "fee": 50000000
          }
        ],[
          14,{
            "fee": 2000000,
            "price_per_kbyte": 100000
          }
        ],[
          15,{
            "fee": 2000000
          }
        ],[
          16,{
            "fee": 100000
          }
        ],[
          17,{
            "fee": 10000000
          }
        ],[
          18,{
            "fee": 50000000
          }
        ],[
          19,{
            "fee": 100000
          }
        ],[
          20,{
            "fee": 500000000
          }
        ],[
          21,{
            "fee": 2000000
          }
        ],[
          22,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          23,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          24,{
            "fee": 100000
          }
        ],[
          25,{
            "fee": 100000
          }
        ],[
          26,{
            "fee": 100000
          }
        ],[
          27,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          28,{
            "fee": 0
          }
        ],[
          29,{
            "fee": 500000000
          }
        ],[
          30,{
            "fee": 2000000
          }
        ],[
          31,{
            "fee": 100000
          }
        ],[
          32,{
            "fee": 100000
          }
        ],[
          33,{
            "fee": 2000000
          }
        ],[
          34,{
            "fee": 500000000
          }
        ],[
          35,{
            "fee": 100000,
            "price_per_kbyte": 10
          }
        ],[
          36,{
            "fee": 100000
          }
        ],[
          37,{}
        ],[
          38,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          39,{
            "fee": 500000,
            "price_per_output": 500000
          }
        ],[
          40,{
            "fee": 500000,
            "price_per_output": 500000
          }
        ],[
          41,{
            "fee": 500000
          }
        ],[
          42,{}
        ],[
          43,{
            "fee": 2000000
          }
        ],[
          44,{}
        ],[
          45,{
            "fee": 100000
          }
        ],[
          46,{
            "fee": 100000
          }
        ],[
          47,{
            "fee": 100000
          }
        ],[
          48,{
            "fee": 50000000
          }
        ],[
          49,{
            "distribution_base_fee": 0,
            "distribution_fee_per_holder": 0
          }
        ],[
          50,{}
        ],[
          51,{
            "fee": 100000
          }
        ],[
          52,{
            "fee": 100000
          }
        ],[
          53,{
            "fee": 100000
          }
        ],[
          54,{
            "fee": 100000
          }
        ],[
          55,{
            "fee": 100000
          }
        ],[
          56,{
            "fee": 100000
          }
        ],[
          57,{
            "fee": 100000
          }
        ],[
          58,{
            "fee": 100000
          }
        ],[
          59,{
            "fee": 100000
          }
        ],[
          60,{
            "fee": 100000
          }
        ],[
          61,{
            "fee": 100000
          }
        ],[
          62,{
            "fee": 100000
          }
        ],[
          63,{
            "fee": 100000
          }
        ],[
          64,{}
        ],[
          65,{}
        ],[
          66,{
            "fee": 100000
          }
        ],[
          67,{}
        ],[
          68,{
            "fee": 100000
          }
        ],[
          69,{}
        ],[
          70,{
            "fee": 100000
          }
        ],[
          71,{
            "fee": 100000
          }
        ],[
          72,{
            "fee": 100000
          }
        ],[
          73,{
            "fee": 100000
          }
        ],[
          74,{
            "fee": 100000
          }
        ],[
          75,{}
        ],[
          76,{}
        ],[
          77,{
            "lottery_asset": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          78,{
            "fee": 0
          }
        ],[
          79,{
            "fee": 0
          }
        ],[
          80,{
            "fee": 0
          }
        ],[
          81,{
            "fee": 2000000
          }
        ],[
          82,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          83,{
            "fee": 100000
          }
        ],[
          84,{
            "fee": 100000
          }
        ],[
          85,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          86,{
            "fee": 100000
          }
        ],[
          87,{
            "fee": 100000
          }
        ],[
          88,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          89,{
            "fee": 100000
          }
        ],[
          90,{
            "fee": 100000
          }
        ],[
          91,{
            "fee": 0
          }
        ],[
          92,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          93,{
            "fee": 100000
          }
        ],[
          94,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          95,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          96,{
            "fee": 100000
          }
        ],[
          97,{
            "fee": 100000
          }
        ],[
          98,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          99,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          100,{
            "fee": 100000
          }
        ],[
          101,{
            "fee": 0
          }
        ],[
          102,{
            "fee": 0
          }
        ],[
          103,{
            "fee": 0
          }
        ],[
          104,{
            "fee": 0
          }
        ],[
          105,{
            "fee": 0
          }
        ],[
          106,{
            "fee": 0
          }
        ],[
          107,{
            "fee": 0
          }
        ],[
          108,{
            "fee": 0
          }
        ],[
          109,{
            "fee": 0
          }
        ],[
          110,{
            "fee": 0
          }
        ],[
          111,{
            "fee": 0
          }
        ],[
          112,{
            "fee": 0
          }
        ],[
          113,{
            "fee": 0
          }
        ],[
          114,{
            "fee": 0
          }
        ],[
          115,{
            "fee": 0
          }
        ],[
          116,{
            "fee": 0
          }
        ],[
          117,{
            "fee": 0
          }
        ],[
          118,{
            "fee": 0
          }
        ],[
          119,{
            "fee": 0
          }
        ],[
          120,{
            "fee": 100000
          }
        ],[
          121,{
            "fee": 100000
          }
        ],[
          122,{
            "fee": 100000
          }
        ],[
          123,{
            "fee": 500000000
          }
        ]
      ],
      "scale": 10000
    },
    "block_interval": 3,
    "maintenance_interval": 600,
    "maintenance_skip_slots": 3,
    "committee_proposal_review_period": 600,
    "maximum_transaction_size": 2048,
    "maximum_block_size": 1228800000,
    "maximum_time_until_expiration": 86400,
    "maximum_proposal_lifetime": 2419200,
    "maximum_asset_whitelist_authorities": 10,
    "maximum_asset_feed_publishers": 10,
    "maximum_witness_count": 1001,
    "maximum_committee_count": 1001,
    "maximum_authority_membership": 10,
    "reserve_percent_of_fee": 2000,
    "network_percent_of_fee": 2000,
    "lifetime_referrer_percent_of_fee": 3000,
    "cashback_vesting_period_seconds": 31536000,
    "cashback_vesting_threshold": 10000000,
    "count_non_member_votes": true,
    "allow_non_member_whitelists": false,
    "witness_pay_per_block": 1000000,
    "worker_budget_per_day": "50000000000",
    "max_predicate_opcode": 1,
    "fee_liquidation_threshold": 10000000,
    "accounts_per_fee_scale": 1000,
    "account_fee_scale_bitshifts": 4,
    "max_authority_depth": 2,
    "witness_schedule_algorithm": 1,
    "min_round_delay": 0,
    "max_round_delay": 600,
    "min_time_per_commit_move": 0,
    "max_time_per_commit_move": 600,
    "min_time_per_reveal_move": 0,
    "max_time_per_reveal_move": 600,
    "rake_fee_percentage": 300,
    "maximum_registration_deadline": 2592000,
    "maximum_players_in_tournament": 256,
    "maximum_tournament_whitelist_length": 1000,
    "maximum_tournament_start_time_in_future": 2419200,
    "maximum_tournament_start_delay": 604800,
    "maximum_tournament_number_of_wins": 100,
    "extensions": {
      "sweeps_distribution_percentage": 200,
      "sweeps_distribution_asset": "1.3.0",
      "sweeps_vesting_accumulator_account": "1.2.0",
      "gpos_period": 15552000,
      "gpos_subperiod": 2592000,
      "gpos_period_start": 1609376400,
      "gpos_vesting_lockin_period": 2592000,
      "rbac_max_permissions_per_account": 5,
      "rbac_max_account_authority_lifetime": 15552000,
      "rbac_max_authorities_per_permission": 15,
      "account_roles_max_per_account": 20,
      "account_roles_max_lifetime": 31536000,
      "son_vesting_amount": 5000000,
      "son_vesting_period": 172800,
      "son_pay_max": 20000000,
      "son_pay_time": 600,
      "son_deregister_time": 100,
      "son_heartbeat_frequency": 20,
      "son_down_time": 360,
      "son_bitcoin_min_tx_confirmations": 1,
      "son_account": "1.2.19",
      "btc_asset": "1.3.1",
      "maximum_son_count": 15,
      "hbd_asset": "1.3.2",
      "hive_asset": "1.3.3"
    }
  },
  "next_available_vote_id": 54,
  "active_committee_members": [
    "1.5.0",
    "1.5.1",
    "1.5.2",
    "1.5.3",
    "1.5.4",
    "1.5.5",
    "1.5.6",
    "1.5.7",
    "1.5.8",
    "1.5.9",
    "1.5.10"
  ],
  "active_witnesses": [
    "1.6.1",
    "1.6.2",
    "1.6.3",
    "1.6.4",
    "1.6.5",
    "1.6.6",
    "1.6.7",
    "1.6.8",
    "1.6.9",
    "1.6.10",
    "1.6.11"
  ],
  "active_sons": [{
      "son_id": "1.33.0",
      "weight": 1,
      "signing_key": "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL",
      "sidechain_public_keys": [[
          "bitcoin",
          "03456772301e221026269d3095ab5cb623fc239835b583ae4632f99a15107ef275"
        ],[
          "peerplays",
          "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL"
        ],[
          "hive",
          "sonaccount01"
        ]
      ]
    },{
      "son_id": "1.33.1",
      "weight": 1,
      "signing_key": "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs",
      "sidechain_public_keys": [[
          "bitcoin",
          "02d67c26cf20153fe7625ca1454222d3b3aeb53b122d8a0f7d32a3dd4b2c2016f4"
        ],[
          "peerplays",
          "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs"
        ],[
          "hive",
          "sonaccount02"
        ]
      ]
    },{
      "son_id": "1.33.2",
      "weight": 1,
      "signing_key": "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r",
      "sidechain_public_keys": [[
          "bitcoin",
          "025f7cfda933516fd590c5a34ad4a68e3143b6f4155a64b3aab2c55fb851150f61"
        ],[
          "peerplays",
          "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r"
        ],[
          "hive",
          "sonaccount03"
        ]
      ]
    },{
      "son_id": "1.33.3",
      "weight": 1,
      "signing_key": "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22",
      "sidechain_public_keys": [[
          "bitcoin",
          "0228155bb1ddcd11c7f14a2752565178023aa963f84ea6b6a052bddebad6fe9866"
        ],[
          "peerplays",
          "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22"
        ],[
          "hive",
          "sonaccount04"
        ]
      ]
    },{
      "son_id": "1.33.4",
      "weight": 1,
      "signing_key": "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU",
      "sidechain_public_keys": [[
          "bitcoin",
          "037500441cfb4484da377073459511823b344f1ef0d46bac1efd4c7c466746f666"
        ],[
          "peerplays",
          "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU"
        ],[
          "hive",
          "sonaccount05"
        ]
      ]
    },{
      "son_id": "1.33.5",
      "weight": 1,
      "signing_key": "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8",
      "sidechain_public_keys": [[
          "bitcoin",
          "02ef0d79bfdb99ab0be674b1d5d06c24debd74bffdc28d466633d6668cc281cccf"
        ],[
          "peerplays",
          "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8"
        ],[
          "hive",
          "sonaccount06"
        ]
      ]
    },{
      "son_id": "1.33.6",
      "weight": 1,
      "signing_key": "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB",
      "sidechain_public_keys": [[
          "bitcoin",
          "0317941e4219548682fb8d8e172f0a8ce4d83ce21272435c85d598558c8e060b7f"
        ],[
          "peerplays",
          "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB"
        ],[
          "hive",
          "sonaccount07"
        ]
      ]
    },{
      "son_id": "1.33.7",
      "weight": 1,
      "signing_key": "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t",
      "sidechain_public_keys": [[
          "bitcoin",
          "0266065b27f7e3d3ad45b471b1cd4e02de73fc4737dc2679915a45e293c5adcf84"
        ],[
          "peerplays",
          "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t"
        ],[
          "hive",
          "sonaccount08"
        ]
      ]
    },{
      "son_id": "1.33.8",
      "weight": 1,
      "signing_key": "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4",
      "sidechain_public_keys": [[
          "bitcoin",
          "023821cc3da7be9e8cdceb8f146e9ddd78a9519875ecc5b42fe645af690544bccf"
        ],[
          "peerplays",
          "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4"
        ],[
          "hive",
          "sonaccount09"
        ]
      ]
    },{
      "son_id": "1.33.9",
      "weight": 1,
      "signing_key": "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU",
      "sidechain_public_keys": [[
          "bitcoin",
          "0229ff2b2106b76c27c393e82d71c20eec32bcf1f0cf1a9aca8a237269a67ff3e5"
        ],[
          "peerplays",
          "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU"
        ],[
          "hive",
          "sonaccount10"
        ]
      ]
    },{
      "son_id": "1.33.10",
      "weight": 1,
      "signing_key": "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY",
      "sidechain_public_keys": [[
          "bitcoin",
          "024d113381cc09deb8a6da62e0470644d1a06de82be2725b5052668c8845a4a8da"
        ],[
          "peerplays",
          "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY"
        ],[
          "hive",
          "sonaccount11"
        ]
      ]
    },{
      "son_id": "1.33.11",
      "weight": 1,
      "signing_key": "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo",
      "sidechain_public_keys": [[
          "bitcoin",
          "03df2462a5a2f681a3896f61964a65566ff77448be9a55a6da18506fd9c6c051c1"
        ],[
          "peerplays",
          "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo"
        ],[
          "hive",
          "sonaccount12"
        ]
      ]
    },{
      "son_id": "1.33.12",
      "weight": 1,
      "signing_key": "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd",
      "sidechain_public_keys": [[
          "bitcoin",
          "02bafba3096f546cc5831ce1e49ba7142478a659f2d689bbc70ed37235255172a8"
        ],[
          "peerplays",
          "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd"
        ],[
          "hive",
          "sonaccount13"
        ]
      ]
    },{
      "son_id": "1.33.13",
      "weight": 1,
      "signing_key": "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT",
      "sidechain_public_keys": [[
          "bitcoin",
          "0287bcbd4f5d357f89a86979b386402445d7e9a5dccfd16146d1d2ab0dc2c32ae8"
        ],[
          "peerplays",
          "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT"
        ],[
          "hive",
          "sonaccount14"
        ]
      ]
    },{
      "son_id": "1.33.14",
      "weight": 1,
      "signing_key": "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc",
      "sidechain_public_keys": [[
          "bitcoin",
          "02053859d76aa375d6f343a60e3678e906c008015e32fe4712b1fd2b26473bdd73"
        ],[
          "peerplays",
          "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc"
        ],[
          "hive",
          "sonaccount15"
        ]
      ]
    }
  ]
}
unlocked >>>
``` // New Peerplays installation unlocked >>> get_account son-account get_account son-account { "id": "1.2.19", "membership_expiration_date": "2106-02-07T06:28:15", "registrar": "1.2.19", "referrer": "1.2.19", "lifetime_referrer": "1.2.19", "network_fee_percentage": 2000, "lifetime_referrer_fee_percentage": 8000, "referrer_rewards_percentage": 0, "name": "son-account", "owner": { "weight_threshold": 1, "account_auths": [], "key_auths": [], "address_auths": [] }, "active": { "weight_threshold": 0, "account_auths": [], "key_auths": [], "address_auths": [] }, "options": { "memo_key": "TEST1111111111111111111111111111111114T1Anm", "voting_account": "1.2.5", "num_witness": 0, "num_committee": 0, "votes": [], "extensions": [] }, "statistics": "2.6.19", "whitelisting_accounts": [], "blacklisting_accounts": [], "whitelisted_accounts": [], "blacklisted_accounts": [], "owner_special_authority": [ 0,{} ], "active_special_authority": [ 0,{} ], "top_n_control_flags": 0 } unlocked >>> unlocked >>> get_global_properties get_global_properties { "id": "2.0.0", "parameters": { "current_fees": { "parameters": [[ 0,{ "fee": 2000000, "price_per_kbyte": 1000000 } ],[ 1,{ "fee": 500000 } ],[ 2,{ "fee": 0 } ],[ 3,{ "fee": 2000000 } ],[ 4,{} ],[ 5,{ "basic_fee": 500000, "premium_fee": 200000000, "price_per_kbyte": 100000 } ],[ 6,{ "fee": 2000000, "price_per_kbyte": 100000 } ],[ 7,{ "fee": 300000 } ],[ 8,{ "membership_annual_fee": 200000000, "membership_lifetime_fee": 1000000000 } ],[ 9,{ "fee": 50000000 } ],[ 10,{ "symbol3": "50000000000", "symbol4": "30000000000", "long_symbol": 500000000, "price_per_kbyte": 10 } ],[ 11,{ "fee": 50000000, "price_per_kbyte": 10 } ],[ 12,{ "fee": 50000000 } ],[ 13,{ "fee": 50000000 } ],[ 14,{ "fee": 2000000, "price_per_kbyte": 100000 } ],[ 15,{ "fee": 2000000 } ],[ 16,{ "fee": 100000 } ],[ 17,{ "fee": 10000000 } ],[ 18,{ "fee": 50000000 } ],[ 19,{ "fee": 100000 } ],[ 20,{ "fee": 500000000 } ],[ 21,{ "fee": 2000000 } ],[ 22,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 23,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 24,{ "fee": 100000 } ],[ 25,{ "fee": 100000 } ],[ 26,{ "fee": 100000 } ],[ 27,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 28,{ "fee": 0 } ],[ 29,{ "fee": 500000000 } ],[ 30,{ "fee": 2000000 } ],[ 31,{ "fee": 100000 } ],[ 32,{ "fee": 100000 } ],[ 33,{ "fee": 2000000 } ],[ 34,{ "fee": 500000000 } ],[ 35,{ "fee": 100000, "price_per_kbyte": 10 } ],[ 36,{ "fee": 100000 } ],[ 37,{} ],[ 38,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 39,{ "fee": 500000, "price_per_output": 500000 } ],[ 40,{ "fee": 500000, "price_per_output": 500000 } ],[ 41,{ "fee": 500000 } ],[ 42,{} ],[ 43,{ "fee": 2000000 } ],[ 44,{} ],[ 45,{ "fee": 100000 } ],[ 46,{ "fee": 100000 } ],[ 47,{ "fee": 100000 } ],[ 48,{ "fee": 50000000 } ],[ 49,{ "distribution_base_fee": 0, "distribution_fee_per_holder": 0 } ],[ 50,{} ],[ 51,{ "fee": 100000 } ],[ 52,{ "fee": 100000 } ],[ 53,{ "fee": 100000 } ],[ 54,{ "fee": 100000 } ],[ 55,{ "fee": 100000 } ],[ 56,{ "fee": 100000 } ],[ 57,{ "fee": 100000 } ],[ 58,{ "fee": 100000 } ],[ 59,{ "fee": 100000 } ],[ 60,{ "fee": 100000 } ],[ 61,{ "fee": 100000 } ],[ 62,{ "fee": 100000 } ],[ 63,{ "fee": 100000 } ],[ 64,{} ],[ 65,{} ],[ 66,{ "fee": 100000 } ],[ 67,{} ],[ 68,{ "fee": 100000 } ],[ 69,{} ],[ 70,{ "fee": 100000 } ],[ 71,{ "fee": 100000 } ],[ 72,{ "fee": 100000 } ],[ 73,{ "fee": 100000 } ],[ 74,{ "fee": 100000 } ],[ 75,{} ],[ 76,{} ],[ 77,{ "lottery_asset": 2000000, "price_per_kbyte": 10 } ],[ 78,{ "fee": 0 } ],[ 79,{ "fee": 0 } ],[ 80,{ "fee": 0 } ],[ 81,{ "fee": 2000000 } ],[ 82,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 83,{ "fee": 100000 } ],[ 84,{ "fee": 100000 } ],[ 85,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 86,{ "fee": 100000 } ],[ 87,{ "fee": 100000 } ],[ 88,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 89,{ "fee": 100000 } ],[ 90,{ "fee": 100000 } ],[ 91,{ "fee": 0 } ],[ 92,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 93,{ "fee": 100000 } ],[ 94,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 95,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 96,{ "fee": 100000 } ],[ 97,{ "fee": 100000 } ],[ 98,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 99,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 100,{ "fee": 100000 } ],[ 101,{ "fee": 0 } ],[ 102,{ "fee": 0 } ],[ 103,{ "fee": 0 } ],[ 104,{ "fee": 0 } ],[ 105,{ "fee": 0 } ],[ 106,{ "fee": 0 } ],[ 107,{ "fee": 0 } ],[ 108,{ "fee": 0 } ],[ 109,{ "fee": 0 } ],[ 110,{ "fee": 0 } ],[ 111,{ "fee": 0 } ],[ 112,{ "fee": 0 } ],[ 113,{ "fee": 0 } ],[ 114,{ "fee": 0 } ],[ 115,{ "fee": 0 } ],[ 116,{ "fee": 0 } ],[ 117,{ "fee": 0 } ],[ 118,{ "fee": 0 } ],[ 119,{ "fee": 0 } ],[ 120,{ "fee": 100000 } ],[ 121,{ "fee": 100000 } ],[ 122,{ "fee": 100000 } ],[ 123,{ "fee": 500000000 } ] ], "scale": 10000 }, "block_interval": 3, "maintenance_interval": 600, "maintenance_skip_slots": 3, "committee_proposal_review_period": 600, "maximum_transaction_size": 2048, "maximum_block_size": 1228800000, "maximum_time_until_expiration": 86400, "maximum_proposal_lifetime": 2419200, "maximum_asset_whitelist_authorities": 10, "maximum_asset_feed_publishers": 10, "maximum_witness_count": 1001, "maximum_committee_count": 1001, "maximum_authority_membership": 10, "reserve_percent_of_fee": 2000, "network_percent_of_fee": 2000, "lifetime_referrer_percent_of_fee": 3000, "cashback_vesting_period_seconds": 31536000, "cashback_vesting_threshold": 10000000, "count_non_member_votes": true, "allow_non_member_whitelists": false, "witness_pay_per_block": 1000000, "worker_budget_per_day": "50000000000", "max_predicate_opcode": 1, "fee_liquidation_threshold": 10000000, "accounts_per_fee_scale": 1000, "account_fee_scale_bitshifts": 4, "max_authority_depth": 2, "witness_schedule_algorithm": 1, "min_round_delay": 0, "max_round_delay": 600, "min_time_per_commit_move": 0, "max_time_per_commit_move": 600, "min_time_per_reveal_move": 0, "max_time_per_reveal_move": 600, "rake_fee_percentage": 300, "maximum_registration_deadline": 2592000, "maximum_players_in_tournament": 256, "maximum_tournament_whitelist_length": 1000, "maximum_tournament_start_time_in_future": 2419200, "maximum_tournament_start_delay": 604800, "maximum_tournament_number_of_wins": 100, "extensions": { "sweeps_distribution_percentage": 200, "sweeps_distribution_asset": "1.3.0", "sweeps_vesting_accumulator_account": "1.2.0", "gpos_period": 15552000, "gpos_subperiod": 2592000, "gpos_period_start": 1593824400, "gpos_vesting_lockin_period": 2592000, "rbac_max_permissions_per_account": 5, "rbac_max_account_authority_lifetime": 15552000, "rbac_max_authorities_per_permission": 15, "account_roles_max_per_account": 20, "account_roles_max_lifetime": 31536000, "son_vesting_amount": 5000000, "son_vesting_period": 172800, "son_pay_max": 20000000, "son_pay_time": 600, "son_deregister_time": 100, "son_heartbeat_frequency": 20, "son_down_time": 360, "son_bitcoin_min_tx_confirmations": 1, "son_account": "1.2.19", "btc_asset": "1.3.1", "maximum_son_count": 15, "hbd_asset": "1.3.2", "hive_asset": "1.3.3" } }, "next_available_vote_id": 22, "active_committee_members": [ "1.5.0", "1.5.1", "1.5.2", "1.5.3", "1.5.4", "1.5.5", "1.5.6", "1.5.7", "1.5.8", "1.5.9", "1.5.10" ], "active_witnesses": [ "1.6.1", "1.6.2", "1.6.3", "1.6.4", "1.6.5", "1.6.6", "1.6.7", "1.6.8", "1.6.9", "1.6.10", "1.6.11" ], "active_sons": [] } unlocked >>> // After Peerplays init script is run unlocked >>> get_account son-account get_account son-account { "id": "1.2.19", "membership_expiration_date": "2106-02-07T06:28:15", "registrar": "1.2.19", "referrer": "1.2.19", "lifetime_referrer": "1.2.19", "network_fee_percentage": 2000, "lifetime_referrer_fee_percentage": 8000, "referrer_rewards_percentage": 0, "name": "son-account", "owner": { "weight_threshold": 1, "account_auths": [], "key_auths": [], "address_auths": [] }, "active": { "weight_threshold": 11, "account_auths": [[ "1.2.36", 1 ],[ "1.2.37", 1 ],[ "1.2.38", 1 ],[ "1.2.39", 1 ],[ "1.2.40", 1 ],[ "1.2.41", 1 ],[ "1.2.42", 1 ],[ "1.2.43", 1 ],[ "1.2.44", 1 ],[ "1.2.45", 1 ],[ "1.2.46", 1 ],[ "1.2.47", 1 ],[ "1.2.48", 1 ],[ "1.2.49", 1 ],[ "1.2.50", 1 ] ], "key_auths": [], "address_auths": [] }, "options": { "memo_key": "TEST1111111111111111111111111111111114T1Anm", "voting_account": "1.2.5", "num_witness": 0, "num_committee": 0, "votes": [], "extensions": [] }, "statistics": "2.6.19", "whitelisting_accounts": [], "blacklisting_accounts": [], "whitelisted_accounts": [], "blacklisted_accounts": [], "cashback_vb": "1.13.33", "owner_special_authority": [ 0,{} ], "active_special_authority": [ 0,{} ], "top_n_control_flags": 0 } unlocked >>> unlocked >>> get_global_properties get_global_properties { "id": "2.0.0", "parameters": { "current_fees": { "parameters": [[ 0,{ "fee": 2000000, "price_per_kbyte": 1000000 } ],[ 1,{ "fee": 500000 } ],[ 2,{ "fee": 0 } ],[ 3,{ "fee": 2000000 } ],[ 4,{} ],[ 5,{ "basic_fee": 500000, "premium_fee": 200000000, "price_per_kbyte": 100000 } ],[ 6,{ "fee": 2000000, "price_per_kbyte": 100000 } ],[ 7,{ "fee": 300000 } ],[ 8,{ "membership_annual_fee": 200000000, "membership_lifetime_fee": 1000000000 } ],[ 9,{ "fee": 50000000 } ],[ 10,{ "symbol3": "50000000000", "symbol4": "30000000000", "long_symbol": 500000000, "price_per_kbyte": 10 } ],[ 11,{ "fee": 50000000, "price_per_kbyte": 10 } ],[ 12,{ "fee": 50000000 } ],[ 13,{ "fee": 50000000 } ],[ 14,{ "fee": 2000000, "price_per_kbyte": 100000 } ],[ 15,{ "fee": 2000000 } ],[ 16,{ "fee": 100000 } ],[ 17,{ "fee": 10000000 } ],[ 18,{ "fee": 50000000 } ],[ 19,{ "fee": 100000 } ],[ 20,{ "fee": 500000000 } ],[ 21,{ "fee": 2000000 } ],[ 22,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 23,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 24,{ "fee": 100000 } ],[ 25,{ "fee": 100000 } ],[ 26,{ "fee": 100000 } ],[ 27,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 28,{ "fee": 0 } ],[ 29,{ "fee": 500000000 } ],[ 30,{ "fee": 2000000 } ],[ 31,{ "fee": 100000 } ],[ 32,{ "fee": 100000 } ],[ 33,{ "fee": 2000000 } ],[ 34,{ "fee": 500000000 } ],[ 35,{ "fee": 100000, "price_per_kbyte": 10 } ],[ 36,{ "fee": 100000 } ],[ 37,{} ],[ 38,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 39,{ "fee": 500000, "price_per_output": 500000 } ],[ 40,{ "fee": 500000, "price_per_output": 500000 } ],[ 41,{ "fee": 500000 } ],[ 42,{} ],[ 43,{ "fee": 2000000 } ],[ 44,{} ],[ 45,{ "fee": 100000 } ],[ 46,{ "fee": 100000 } ],[ 47,{ "fee": 100000 } ],[ 48,{ "fee": 50000000 } ],[ 49,{ "distribution_base_fee": 0, "distribution_fee_per_holder": 0 } ],[ 50,{} ],[ 51,{ "fee": 100000 } ],[ 52,{ "fee": 100000 } ],[ 53,{ "fee": 100000 } ],[ 54,{ "fee": 100000 } ],[ 55,{ "fee": 100000 } ],[ 56,{ "fee": 100000 } ],[ 57,{ "fee": 100000 } ],[ 58,{ "fee": 100000 } ],[ 59,{ "fee": 100000 } ],[ 60,{ "fee": 100000 } ],[ 61,{ "fee": 100000 } ],[ 62,{ "fee": 100000 } ],[ 63,{ "fee": 100000 } ],[ 64,{} ],[ 65,{} ],[ 66,{ "fee": 100000 } ],[ 67,{} ],[ 68,{ "fee": 100000 } ],[ 69,{} ],[ 70,{ "fee": 100000 } ],[ 71,{ "fee": 100000 } ],[ 72,{ "fee": 100000 } ],[ 73,{ "fee": 100000 } ],[ 74,{ "fee": 100000 } ],[ 75,{} ],[ 76,{} ],[ 77,{ "lottery_asset": 2000000, "price_per_kbyte": 10 } ],[ 78,{ "fee": 0 } ],[ 79,{ "fee": 0 } ],[ 80,{ "fee": 0 } ],[ 81,{ "fee": 2000000 } ],[ 82,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 83,{ "fee": 100000 } ],[ 84,{ "fee": 100000 } ],[ 85,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 86,{ "fee": 100000 } ],[ 87,{ "fee": 100000 } ],[ 88,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 89,{ "fee": 100000 } ],[ 90,{ "fee": 100000 } ],[ 91,{ "fee": 0 } ],[ 92,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 93,{ "fee": 100000 } ],[ 94,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 95,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 96,{ "fee": 100000 } ],[ 97,{ "fee": 100000 } ],[ 98,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 99,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 100,{ "fee": 100000 } ],[ 101,{ "fee": 0 } ],[ 102,{ "fee": 0 } ],[ 103,{ "fee": 0 } ],[ 104,{ "fee": 0 } ],[ 105,{ "fee": 0 } ],[ 106,{ "fee": 0 } ],[ 107,{ "fee": 0 } ],[ 108,{ "fee": 0 } ],[ 109,{ "fee": 0 } ],[ 110,{ "fee": 0 } ],[ 111,{ "fee": 0 } ],[ 112,{ "fee": 0 } ],[ 113,{ "fee": 0 } ],[ 114,{ "fee": 0 } ],[ 115,{ "fee": 0 } ],[ 116,{ "fee": 0 } ],[ 117,{ "fee": 0 } ],[ 118,{ "fee": 0 } ],[ 119,{ "fee": 0 } ],[ 120,{ "fee": 100000 } ],[ 121,{ "fee": 100000 } ],[ 122,{ "fee": 100000 } ],[ 123,{ "fee": 500000000 } ] ], "scale": 10000 }, "block_interval": 3, "maintenance_interval": 600, "maintenance_skip_slots": 3, "committee_proposal_review_period": 600, "maximum_transaction_size": 2048, "maximum_block_size": 1228800000, "maximum_time_until_expiration": 86400, "maximum_proposal_lifetime": 2419200, "maximum_asset_whitelist_authorities": 10, "maximum_asset_feed_publishers": 10, "maximum_witness_count": 1001, "maximum_committee_count": 1001, "maximum_authority_membership": 10, "reserve_percent_of_fee": 2000, "network_percent_of_fee": 2000, "lifetime_referrer_percent_of_fee": 3000, "cashback_vesting_period_seconds": 31536000, "cashback_vesting_threshold": 10000000, "count_non_member_votes": true, "allow_non_member_whitelists": false, "witness_pay_per_block": 1000000, "worker_budget_per_day": "50000000000", "max_predicate_opcode": 1, "fee_liquidation_threshold": 10000000, "accounts_per_fee_scale": 1000, "account_fee_scale_bitshifts": 4, "max_authority_depth": 2, "witness_schedule_algorithm": 1, "min_round_delay": 0, "max_round_delay": 600, "min_time_per_commit_move": 0, "max_time_per_commit_move": 600, "min_time_per_reveal_move": 0, "max_time_per_reveal_move": 600, "rake_fee_percentage": 300, "maximum_registration_deadline": 2592000, "maximum_players_in_tournament": 256, "maximum_tournament_whitelist_length": 1000, "maximum_tournament_start_time_in_future": 2419200, "maximum_tournament_start_delay": 604800, "maximum_tournament_number_of_wins": 100, "extensions": { "sweeps_distribution_percentage": 200, "sweeps_distribution_asset": "1.3.0", "sweeps_vesting_accumulator_account": "1.2.0", "gpos_period": 15552000, "gpos_subperiod": 2592000, "gpos_period_start": 1609376400, "gpos_vesting_lockin_period": 2592000, "rbac_max_permissions_per_account": 5, "rbac_max_account_authority_lifetime": 15552000, "rbac_max_authorities_per_permission": 15, "account_roles_max_per_account": 20, "account_roles_max_lifetime": 31536000, "son_vesting_amount": 5000000, "son_vesting_period": 172800, "son_pay_max": 20000000, "son_pay_time": 600, "son_deregister_time": 100, "son_heartbeat_frequency": 20, "son_down_time": 360, "son_bitcoin_min_tx_confirmations": 1, "son_account": "1.2.19", "btc_asset": "1.3.1", "maximum_son_count": 15, "hbd_asset": "1.3.2", "hive_asset": "1.3.3" } }, "next_available_vote_id": 54, "active_committee_members": [ "1.5.0", "1.5.1", "1.5.2", "1.5.3", "1.5.4", "1.5.5", "1.5.6", "1.5.7", "1.5.8", "1.5.9", "1.5.10" ], "active_witnesses": [ "1.6.1", "1.6.2", "1.6.3", "1.6.4", "1.6.5", "1.6.6", "1.6.7", "1.6.8", "1.6.9", "1.6.10", "1.6.11" ], "active_sons": [{ "son_id": "1.33.0", "weight": 1, "signing_key": "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL", "sidechain_public_keys": [[ "bitcoin", "03456772301e221026269d3095ab5cb623fc239835b583ae4632f99a15107ef275" ],[ "peerplays", "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL" ],[ "hive", "sonaccount01" ] ] },{ "son_id": "1.33.1", "weight": 1, "signing_key": "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs", "sidechain_public_keys": [[ "bitcoin", "02d67c26cf20153fe7625ca1454222d3b3aeb53b122d8a0f7d32a3dd4b2c2016f4" ],[ "peerplays", "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs" ],[ "hive", "sonaccount02" ] ] },{ "son_id": "1.33.2", "weight": 1, "signing_key": "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r", "sidechain_public_keys": [[ "bitcoin", "025f7cfda933516fd590c5a34ad4a68e3143b6f4155a64b3aab2c55fb851150f61" ],[ "peerplays", "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r" ],[ "hive", "sonaccount03" ] ] },{ "son_id": "1.33.3", "weight": 1, "signing_key": "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22", "sidechain_public_keys": [[ "bitcoin", "0228155bb1ddcd11c7f14a2752565178023aa963f84ea6b6a052bddebad6fe9866" ],[ "peerplays", "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22" ],[ "hive", "sonaccount04" ] ] },{ "son_id": "1.33.4", "weight": 1, "signing_key": "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU", "sidechain_public_keys": [[ "bitcoin", "037500441cfb4484da377073459511823b344f1ef0d46bac1efd4c7c466746f666" ],[ "peerplays", "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU" ],[ "hive", "sonaccount05" ] ] },{ "son_id": "1.33.5", "weight": 1, "signing_key": "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8", "sidechain_public_keys": [[ "bitcoin", "02ef0d79bfdb99ab0be674b1d5d06c24debd74bffdc28d466633d6668cc281cccf" ],[ "peerplays", "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8" ],[ "hive", "sonaccount06" ] ] },{ "son_id": "1.33.6", "weight": 1, "signing_key": "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB", "sidechain_public_keys": [[ "bitcoin", "0317941e4219548682fb8d8e172f0a8ce4d83ce21272435c85d598558c8e060b7f" ],[ "peerplays", "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB" ],[ "hive", "sonaccount07" ] ] },{ "son_id": "1.33.7", "weight": 1, "signing_key": "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t", "sidechain_public_keys": [[ "bitcoin", "0266065b27f7e3d3ad45b471b1cd4e02de73fc4737dc2679915a45e293c5adcf84" ],[ "peerplays", "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t" ],[ "hive", "sonaccount08" ] ] },{ "son_id": "1.33.8", "weight": 1, "signing_key": "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4", "sidechain_public_keys": [[ "bitcoin", "023821cc3da7be9e8cdceb8f146e9ddd78a9519875ecc5b42fe645af690544bccf" ],[ "peerplays", "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4" ],[ "hive", "sonaccount09" ] ] },{ "son_id": "1.33.9", "weight": 1, "signing_key": "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU", "sidechain_public_keys": [[ "bitcoin", "0229ff2b2106b76c27c393e82d71c20eec32bcf1f0cf1a9aca8a237269a67ff3e5" ],[ "peerplays", "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU" ],[ "hive", "sonaccount10" ] ] },{ "son_id": "1.33.10", "weight": 1, "signing_key": "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY", "sidechain_public_keys": [[ "bitcoin", "024d113381cc09deb8a6da62e0470644d1a06de82be2725b5052668c8845a4a8da" ],[ "peerplays", "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY" ],[ "hive", "sonaccount11" ] ] },{ "son_id": "1.33.11", "weight": 1, "signing_key": "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo", "sidechain_public_keys": [[ "bitcoin", "03df2462a5a2f681a3896f61964a65566ff77448be9a55a6da18506fd9c6c051c1" ],[ "peerplays", "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo" ],[ "hive", "sonaccount12" ] ] },{ "son_id": "1.33.12", "weight": 1, "signing_key": "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd", "sidechain_public_keys": [[ "bitcoin", "02bafba3096f546cc5831ce1e49ba7142478a659f2d689bbc70ed37235255172a8" ],[ "peerplays", "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd" ],[ "hive", "sonaccount13" ] ] },{ "son_id": "1.33.13", "weight": 1, "signing_key": "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT", "sidechain_public_keys": [[ "bitcoin", "0287bcbd4f5d357f89a86979b386402445d7e9a5dccfd16146d1d2ab0dc2c32ae8" ],[ "peerplays", "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT" ],[ "hive", "sonaccount14" ] ] },{ "son_id": "1.33.14", "weight": 1, "signing_key": "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc", "sidechain_public_keys": [[ "bitcoin", "02053859d76aa375d6f343a60e3678e906c008015e32fe4712b1fd2b26473bdd73" ],[ "peerplays", "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc" ],[ "hive", "sonaccount15" ] ] } ] } unlocked >>> ```
prandnum (Migrated from gitlab.com) closed this issue 2021-06-22 04:56:09 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Peerplays_Blockchain/peerplays_migrated#53
No description provided.