BitShares-Core  6.1.0
BitShares blockchain implementation and command-line interface software
proposal.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cryptonomex, Inc., and contributors.
3  *
4  * The MIT License
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #pragma once
27 
28 namespace graphene { namespace protocol {
60  struct op_wrapper;
71  {
74  uint32_t price_per_kbyte = 10;
75  };
76 
78  account_id_type fee_paying_account;
79  vector<op_wrapper> proposed_ops;
83 
95 
96  account_id_type fee_payer()const { return fee_paying_account; }
97  void validate()const;
99  };
100 
120  {
123  uint32_t price_per_kbyte = 10;
124  };
125 
126  account_id_type fee_paying_account;
128  proposal_id_type proposal;
129  flat_set<account_id_type> active_approvals_to_add;
130  flat_set<account_id_type> active_approvals_to_remove;
131  flat_set<account_id_type> owner_approvals_to_add;
132  flat_set<account_id_type> owner_approvals_to_remove;
133  flat_set<public_key_type> key_approvals_to_add;
134  flat_set<public_key_type> key_approvals_to_remove;
136 
137  account_id_type fee_payer()const { return fee_paying_account; }
138  void validate()const;
140  void get_required_authorities( vector<authority>& )const;
141  void get_required_active_authorities( flat_set<account_id_type>& )const;
142  void get_required_owner_authorities( flat_set<account_id_type>& )const;
143  };
144 
157  {
159 
160  account_id_type fee_paying_account;
161  bool using_owner_authority = false;
163  proposal_id_type proposal;
165 
166  account_id_type fee_payer()const { return fee_paying_account; }
167  void validate()const;
168  };
170 
171 }} // graphene::protocol
172 
176 
180  (active_approvals_to_add)(active_approvals_to_remove)(owner_approvals_to_add)(owner_approvals_to_remove)
181  (key_approvals_to_add)(key_approvals_to_remove)(extensions) )
183 
future_extensions::flat_set_type extensions_type
Definition: base.hpp:156
virtual void get_required_active_authorities(flat_set< account_id_type > &) const
Definition: base.hpp:133
#define FC_REFLECT(TYPE, MEMBERS)
Specializes fc::reflector for TYPE.
Definition: reflect.hpp:388
Definition: api.cpp:48
The proposal_delete_operation deletes an existing transaction proposalThis operation allows the early...
Definition: proposal.hpp:156
virtual void get_required_authorities(vector< authority > &) const
Definition: base.hpp:132
The proposal_create_operation creates a transaction proposal, for use in multi-sig scenariosCreates a...
Definition: proposal.hpp:70
provides stack-based nullable value similar to boost::optional
Definition: optional.hpp:20
share_type calculate_fee(const fee_parameters_type &k) const
Definition: proposal.cpp:46
flat_set< public_key_type > key_approvals_to_remove
Definition: proposal.hpp:134
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
flat_set< account_id_type > active_approvals_to_remove
Definition: proposal.hpp:130
flat_set< account_id_type > owner_approvals_to_remove
Definition: proposal.hpp:132
#define GRAPHENE_BLOCKCHAIN_PRECISION
Definition: config.hpp:29
flat_set< public_key_type > key_approvals_to_add
Definition: proposal.hpp:133
The proposal_update_operation updates an existing transaction proposalThis operation allows accounts ...
Definition: proposal.hpp:119
virtual void get_required_owner_authorities(flat_set< account_id_type > &) const
Definition: base.hpp:134
static proposal_create_operation committee_proposal(const chain_parameters &param, fc::time_point_sec head_block_time)
Definition: proposal.cpp:31
flat_set< account_id_type > owner_approvals_to_add
Definition: proposal.hpp:131
flat_set< account_id_type > active_approvals_to_add
Definition: proposal.hpp:129