Create a committee_member object, as a bid to hold a committee_member seat on the network.
Accounts which wish to become committee_members may use this operation to create a committee member object which stakeholders may vote on to approve its position as a committee_member. Field eth_address
specifies the address in ethereum to be used in eth sidechain to approve deposits, withdrawals and etc. Field btc_public_key
specifies pubkey of this committee member in bitcoin newtwork to be used in btc sidechain to approve deposits, withdrawals and etc.
struct committee_member_create_operation : public base_operation
{
struct fee_parameters_type { uint64_t fee = 5000 * ECHO_BLOCKCHAIN_PRECISION; };
asset fee;
/// The account which owns the committee_member. This account pays the fee for this operation.
account_id_type committee_member_account;
string url;
eth_address_type eth_address;
echo::sidechain::btc::public_key btc_public_key;
asset deposit;
extensions_type extensions;
account_id_type fee_payer()const { return committee_member_account; }
};
[
19,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"committee_member_account": "1.2.0",
"url": "",
"eth_address": "0000000000000000000000000000000000000000",
"btc_public_key": "000000000000000000000000000000000000000000000000000000000000000000",
"deposit": {
"amount": 0,
"asset_id": "1.3.0"
},
"extensions": []
}
]
Update a committee_member object.
This operation is used by the committee member to update his url, eth_address used in eth sidechain or btc pubkey used in btc sidechain.
struct committee_member_update_operation : public base_operation
{
struct fee_parameters_type { uint64_t fee = 20 * ECHO_BLOCKCHAIN_PRECISION; };
asset fee;
/// The committee member to update.
committee_member_id_type committee_member;
/// The account which owns the committee_member. This account pays the fee for this operation.
account_id_type committee_member_account;
optional< string > new_url;
optional< eth_address_type > new_eth_address;
optional< echo::sidechain::btc::public_key > new_btc_public_key;
extensions_type extensions;
account_id_type fee_payer()const { return committee_member_account; }
};
[
20,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"committee_member": "1.4.0",
"committee_member_account": "1.2.0",
"extensions": []
}
]
Used by committee_members to update the global parameters of the blockchain. See chain_parameters to get info about parameters which can be modified by this operation.
This operation allows the committee_members to update the global parameters on the blockchain. These control various tunable aspects of the chain, including block and maintenance intervals, maximum data sizes, the fees charged by the network, etc.
This operation may only be used in a proposed transaction, and a proposed transaction which contains this operation must have a review period specified in the current global parameters before it may be accepted.
struct committee_member_update_global_parameters_operation : public base_operation
{
struct fee_parameters_type { uint64_t fee = ECHO_BLOCKCHAIN_PRECISION; };
asset fee;
chain_parameters new_parameters;
extensions_type extensions;
account_id_type fee_payer()const { return ECHO_COMMITTEE_ACCOUNT; }
};
{% hint style="warning" %} x86 is now in the development stage. {% endhint %}
[
21,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"new_parameters": {
"current_fees": {
"parameters": [],
"scale": 10000
},
"maintenance_interval": 86400,
"maintenance_duration_seconds": 10,
"balance_unfreezing_time": 7,
"committee_proposal_review_period": 1209600,
"maximum_transaction_size": 2097152,
"maximum_block_size": 5242880,
"maximum_time_until_expiration": 86400,
"maximum_proposal_lifetime": 2419200,
"maximum_asset_whitelist_authorities": 10,
"maximum_asset_feed_publishers": 10,
"maximum_authority_membership": 10,
"accounts_per_fee_scale": 1000,
"account_fee_scale_bitshifts": 4,
"max_authority_depth": 2,
"block_emission_amount": 0,
"block_producer_reward_ratio": 5000,
"committee_frozen_balance_to_activate": "100000000000",
"committee_maintenance_intervals_to_deposit": 10,
"committee_balance_unfreeze_duration_seconds": 2592000,
"x86_64_maximum_contract_size": 200000,
"frozen_balances_multipliers": [
[
90,
13000
],
[
180,
14000
],
[
360,
15000
]
],
"echorand_config": {
"_time_generate": 0,
"_time_net_1mb": 0,
"_time_net_256b": 0,
"_creator_count": 0,
"_verifier_count": 0,
"_ok_threshold": 0,
"_max_bba_steps": 0,
"_gc1_delay": 0
},
"sidechain_config": {
"eth_contract_address": "0000000000000000000000000000000000000000",
"eth_committee_update_method": {
"method": "",
"gas": 0
},
"eth_gen_address_method": {
"method": "",
"gas": 0
},
"eth_withdraw_method": {
"method": "",
"gas": 0
},
"eth_update_addr_method": {
"method": "",
"gas": 0
},
"eth_withdraw_token_method": {
"method": "",
"gas": 0
},
"eth_collect_tokens_method": {
"method": "",
"gas": 0
},
"eth_committee_updated_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"eth_gen_address_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"eth_deposit_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"eth_withdraw_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"erc20_deposit_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"erc20_withdraw_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"ETH_asset_id": "1.3.0",
"BTC_asset_id": "1.3.0",
"fines": {
"create_eth_address": 0
},
"gas_price": 0,
"satoshis_per_byte": 1,
"coefficient_waiting_blocks": 0
},
"erc20_config": {
"create_token_fee": 0,
"transfer_topic": "0000000000000000000000000000000000000000000000000000000000000000",
"check_balance_method": {
"method": "",
"gas": 0
},
"burn_method": {
"method": "",
"gas": 0
},
"issue_method": {
"method": "",
"gas": 0
}
},
"economy_config": {
"blocks_in_interval": 1,
"maintenances_in_interval": 1,
"block_emission_amount": 0,
"block_producer_reward_ratio": 5000,
"pool_divider": 30
},
"gas_price": {
"price": 1,
"gas_amount": 1000
},
"extensions": []
},
"extensions": []
}
]
Used by active committee_members to propose activation of committee_member
This operation may only be used in a proposed transaction, and a proposed transaction which contains this operation must have a review period specified in the current global parameters before it may be accepted. To activate a committee member he needs a certain amount of frozen balance specified in global properties. See committee_frozen_balance_to_activate
from chain_parameters to get the amount to be frozen.
struct committee_member_activate_operation : public base_operation
{
struct fee_parameters_type { uint64_t fee = ECHO_BLOCKCHAIN_PRECISION; };
asset fee;
committee_member_id_type committee_to_activate;
extensions_type extensions;
account_id_type fee_payer()const { return ECHO_COMMITTEE_ACCOUNT; }
};
[
22,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"committee_to_activate": "1.4.0",
"extensions": []
}
]
Used by active committee_members to propose deactivation of committee_member
This operation may only be used in a proposed transaction, and a proposed transaction which contains this operation must have a review period specified in the current global parameters before it may be accepted.
struct committee_member_deactivate_operation : public base_operation
{
struct fee_parameters_type { uint64_t fee = ECHO_BLOCKCHAIN_PRECISION; };
asset fee;
committee_member_id_type committee_to_deactivate;
extensions_type extensions;
account_id_type fee_payer()const { return ECHO_COMMITTEE_ACCOUNT; }
};
[
23,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"committee_to_deactivate": "1.4.0",
"extensions": []
}
]
Used by a committee_member to deposit a frozen balance
struct committee_frozen_balance_deposit_operation : public base_operation {
struct fee_parameters_type {
uint64_t fee = 1000;
};
asset fee;
account_id_type committee_member_account;
asset amount;
extensions_type extensions;
account_id_type fee_payer() const { return committee_member_account; }
};
[
24,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"committee_member_account": "1.2.0",
"amount": {
"amount": 0,
"asset_id": "1.3.0"
},
"extensions": []
}
]
Used by a committee_member to withdraw a frozen balance. See committee_balance_unfreeze_duration_seconds
in chain_parameters to get the time that must pass after deactivation to be able to withdraw frozen balance.
struct committee_frozen_balance_withdraw_operation : public base_operation {
struct fee_parameters_type {
uint64_t fee = 1000;
};
asset fee;
account_id_type committee_member_account;
asset amount;
extensions_type extensions;
account_id_type fee_payer() const { return committee_member_account; }
};
[
25,
{
"fee": {
"amount": 0,
"asset_id": "1.3.0"
},
"committee_member_account": "1.2.0",
"amount": {
"amount": 0,
"asset_id": "1.3.0"
},
"extensions": []
}
]