1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.

// OpenEthereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// OpenEthereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with OpenEthereum.  If not, see <http://www.gnu.org/licenses/>.

//! Authority Round parameter deserialization.
//!
//! Here is an example of input parameters where the step duration is constant at 5 seconds, the set
//! of validators is decided by the contract at address `0x10..01` starting from block 0, and where
//! the address of the contract that computes block rewards is set to `0x20..02` for blocks 0
//! through 41 and to `0x30.03` for all blocks starting from block 42.
//!
//! ```ignore
//! "params": {
//!     "stepDuration": "5",
//!     "validators": {
//!         "multi": {
//!             "0": {
//!                 "contract": "0x1000000000000000000000000000000000000001"
//!             }
//!         }
//!     },
//!     "blockRewardContractTransitions": {
//!         "0": "0x2000000000000000000000000000000000000002",
//!         "42": "0x3000000000000000000000000000000000000003"
//!     }
//! }
//! ```

use super::{BlockReward, StepDuration, ValidatorSet};
use crate::{bytes::Bytes, hash::Address, uint::Uint};
use std::collections::BTreeMap;

/// Authority params deserialization.
#[derive(Debug, PartialEq, Deserialize)]
#[serde(deny_unknown_fields)]
#[serde(rename_all = "camelCase")]
pub struct AuthorityRoundParams {
    /// Block duration, in seconds.
    pub step_duration: StepDuration,
    /// Valid authorities
    pub validators: ValidatorSet,
    /// Starting step. Determined automatically if not specified.
    /// To be used for testing only.
    pub start_step: Option<Uint>,
    /// Block at which score validation should start.
    pub validate_score_transition: Option<Uint>,
    /// Block from which monotonic steps start.
    pub validate_step_transition: Option<Uint>,
    /// Whether transitions should be immediate.
    pub immediate_transitions: Option<bool>,
    /// Reward per block in wei.
    pub block_reward: Option<BlockReward>,
    /// Block at which the block reward contract should start being used. This option allows one to
    /// add a single block reward contract transition and is compatible with the multiple address
    /// option `block_reward_contract_transitions` below.
    pub block_reward_contract_transition: Option<Uint>,
    /// Block reward contract address which overrides the `block_reward` setting. This option allows
    /// one to add a single block reward contract address and is compatible with the multiple
    /// address option `block_reward_contract_transitions` below.
    pub block_reward_contract_address: Option<Address>,
    /// Block reward contract addresses with their associated starting block numbers.
    ///
    /// Setting the block reward contract overrides `block_reward`. If the single block reward
    /// contract address is also present then it is added into the map at the block number stored in
    /// `block_reward_contract_transition` or 0 if that block number is not provided. Therefore both
    /// a single block reward contract transition and a map of reward contract transitions can be
    /// used simulataneously in the same configuration. In such a case the code requires that the
    /// block number of the single transition is strictly less than any of the block numbers in the
    /// map.
    pub block_reward_contract_transitions: Option<BTreeMap<Uint, Address>>,
    /// Block reward code. This overrides the block reward contract address.
    pub block_reward_contract_code: Option<Bytes>,
    /// Block at which maximum uncle count should be considered.
    pub maximum_uncle_count_transition: Option<Uint>,
    /// Maximum number of accepted uncles.
    pub maximum_uncle_count: Option<Uint>,
    /// Block at which empty step messages should start.
    pub empty_steps_transition: Option<Uint>,
    /// Maximum number of accepted empty steps.
    pub maximum_empty_steps: Option<Uint>,
    /// Strict validation of empty steps transition block.
    pub strict_empty_steps_transition: Option<Uint>,
    /// First block for which a 2/3 quorum (instead of 1/2) is required.
    pub two_thirds_majority_transition: Option<Uint>,
    /// The random number contract's address, or a map of contract transitions.
    pub randomness_contract_address: Option<BTreeMap<Uint, Address>>,
    /// The addresses of contracts that determine the block gas limit starting from the block number
    /// associated with each of those contracts.
    pub block_gas_limit_contract_transitions: Option<BTreeMap<Uint, Address>>,
    /// The block number at which the consensus engine switches from AuRa to AuRa with POSDAO
    /// modifications.
    pub posdao_transition: Option<Uint>,
    /// The block numbers at which the bytecodes should be rewritten for
    /// the specified contracts (can be more than one per block)
    #[serde(rename = "rewriteBytecode")]
    pub rewrite_bytecode_transitions: Option<BTreeMap<Uint, BTreeMap<Address, Bytes>>>,
}

/// Authority engine deserialization.
#[derive(Debug, PartialEq, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct AuthorityRound {
    /// Authority Round parameters.
    pub params: AuthorityRoundParams,
}

#[cfg(test)]
mod tests {
    use std::collections::BTreeMap;

    use super::BlockReward;
    use crate::{
        bytes::Bytes,
        hash::Address,
        spec::{
            authority_round::AuthorityRound, step_duration::StepDuration,
            validator_set::ValidatorSet,
        },
        uint::Uint,
    };
    use ethereum_types::{H160, U256};
    use serde_json;
    use std::str::FromStr;

    #[test]
    fn authority_round_deserialization() {
        let s = r#"{
			"params": {
				"stepDuration": "0x02",
				"validators": {
					"list" : ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
				},
				"startStep" : 24,
				"validateStepTransition": 150,
				"blockReward": 5000000,
				"maximumUncleCountTransition": 10000000,
				"maximumUncleCount": 5,
				"randomnessContractAddress": {
					"10": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
					"20": "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
                },
				"blockGasLimitContractTransitions": {
					"10": "0x1000000000000000000000000000000000000001",
                    "20": "0x2000000000000000000000000000000000000002"
                }
			}
		}"#;

        let deserialized: AuthorityRound = serde_json::from_str(s).unwrap();
        assert_eq!(
            deserialized.params.step_duration,
            StepDuration::Single(Uint(U256::from(2)))
        );
        assert_eq!(
            deserialized.params.validators,
            ValidatorSet::List(vec![Address(
                H160::from_str("c6d9d2cd449a754c494264e1809c50e34d64562b").unwrap()
            )])
        );
        assert_eq!(deserialized.params.start_step, Some(Uint(U256::from(24))));
        assert_eq!(deserialized.params.immediate_transitions, None);
        assert_eq!(
            deserialized.params.maximum_uncle_count_transition,
            Some(Uint(10_000_000.into()))
        );
        assert_eq!(
            deserialized.params.maximum_uncle_count,
            Some(Uint(5.into()))
        );
        assert_eq!(
            deserialized.params.randomness_contract_address.unwrap(),
            vec![
                (
                    Uint(10.into()),
                    Address(H160::from_str("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").unwrap())
                ),
                (
                    Uint(20.into()),
                    Address(H160::from_str("bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb").unwrap())
                ),
            ]
            .into_iter()
            .collect()
        );
        let expected_bglc = [
            (
                Uint(10.into()),
                Address(H160::from_str("1000000000000000000000000000000000000001").unwrap()),
            ),
            (
                Uint(20.into()),
                Address(H160::from_str("2000000000000000000000000000000000000002").unwrap()),
            ),
        ];
        assert_eq!(
            deserialized.params.block_gas_limit_contract_transitions,
            Some(expected_bglc.to_vec().into_iter().collect())
        );
    }

    #[test]
    fn authority_round_deserialization_multi_block() {
        let s = r#"{
			"params": {
				"stepDuration": "0x02",
				"validators": {
					"contract" : "0xc6d9d2cd449a754c494264e1809c50e34d64562b"
				},
				"blockReward": {
                    "0": 5000000,
                    "100": 150
                }
			}
		}"#;

        let deserialized: AuthorityRound = serde_json::from_str(s).unwrap();
        assert_eq!(
            deserialized.params.step_duration,
            StepDuration::Single(Uint(U256::from(0x02)))
        );
        assert_eq!(
            deserialized.params.validators,
            ValidatorSet::Contract(Address(
                H160::from_str("c6d9d2cd449a754c494264e1809c50e34d64562b").unwrap()
            ))
        );
        let mut rewards: BTreeMap<Uint, Uint> = BTreeMap::new();
        rewards.insert(Uint(U256::from(0)), Uint(U256::from(5000000)));
        rewards.insert(Uint(U256::from(100)), Uint(U256::from(150)));
        assert_eq!(
            deserialized.params.block_reward,
            Some(BlockReward::Multi(rewards))
        );
    }

    #[test]
    fn authority_round_deserialization_rewrite_bytecode_transitions() {
        let s = r#"{
			"params": {
				"stepDuration": "0x02",
				"validators": {
					"contract" : "0xc6d9d2cd449a754c494264e1809c50e34d64562b"
				},
				"blockReward": {
                    "0": 5000000,
                    "100": 150
                },
                "rewriteBytecode": {
                  "21300000": {
                    "0x1234000000000000000000000000000000000001": "0x111",
                    "0x1234000000000000000000000000000000000002": "0x222"
                  },
                  "21300001": {
                    "0x1234000000000000000000000000000000000003": "0x333",
                    "0x1234000000000000000000000000000000000004": "0x444"
                  }
                }
			}
		}"#;
        let deserialized: AuthorityRound = serde_json::from_str(s).unwrap();
        assert_eq!(
            deserialized.params.step_duration,
            StepDuration::Single(Uint(U256::from(0x02)))
        );
        assert_eq!(
            deserialized.params.validators,
            ValidatorSet::Contract(Address(
                H160::from_str("c6d9d2cd449a754c494264e1809c50e34d64562b").unwrap()
            ))
        );

        let mut rewrite_bytecode1: BTreeMap<Address, Bytes> = BTreeMap::new();
        rewrite_bytecode1.insert(
            Address(H160::from_str("1234000000000000000000000000000000000001").unwrap()),
            Bytes::from_str("0x111").unwrap(),
        );
        rewrite_bytecode1.insert(
            Address(H160::from_str("1234000000000000000000000000000000000002").unwrap()),
            Bytes::from_str("0x222").unwrap(),
        );
        let mut rewrite_bytecode2: BTreeMap<Address, Bytes> = BTreeMap::new();
        rewrite_bytecode2.insert(
            Address(H160::from_str("1234000000000000000000000000000000000003").unwrap()),
            Bytes::from_str("0x333").unwrap(),
        );
        rewrite_bytecode2.insert(
            Address(H160::from_str("1234000000000000000000000000000000000004").unwrap()),
            Bytes::from_str("0x444").unwrap(),
        );

        let mut rewrite_bytecode_transitions: BTreeMap<Uint, BTreeMap<Address, Bytes>> =
            BTreeMap::new();
        rewrite_bytecode_transitions.insert(Uint(21300000.into()), rewrite_bytecode1);
        rewrite_bytecode_transitions.insert(Uint(21300001.into()), rewrite_bytecode2);
        assert_eq!(
            deserialized.params.rewrite_bytecode_transitions,
            Some(rewrite_bytecode_transitions)
        );
    }
}