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
use borsh::{BorshDeserialize, BorshSerialize};
use serde::{Deserialize, Serialize};
use near_crypto_v01::Signature;
use crate::hash::{hash, CryptoHash};
use crate::merkle::MerklePath;
use crate::sharding::{EncodedShardChunk, ShardChunk, ShardChunkHeader};
use crate::types::AccountId;
use crate::validator_signer::ValidatorSigner;
pub type StateItem = Vec<u8>;
#[derive(BorshSerialize, BorshDeserialize, Serialize, Debug, Clone, Eq, PartialEq)]
pub struct PartialState(pub Vec<StateItem>);
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone, Debug)]
pub struct BlockDoubleSign {
pub left_block_header: Vec<u8>,
pub right_block_header: Vec<u8>,
}
impl std::fmt::Display for BlockDoubleSign {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{:?}", self)
}
}
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone, Debug)]
pub struct ChunkProofs {
pub block_header: Vec<u8>,
pub merkle_proof: MerklePath,
pub chunk: MaybeEncodedShardChunk,
}
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone, Debug)]
pub enum MaybeEncodedShardChunk {
Encoded(EncodedShardChunk),
Decoded(ShardChunk),
}
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone, Debug)]
pub struct ChunkState {
pub prev_block_header: Vec<u8>,
pub block_header: Vec<u8>,
pub prev_merkle_proof: MerklePath,
pub prev_chunk: ShardChunk,
pub merkle_proof: MerklePath,
pub chunk_header: ShardChunkHeader,
pub partial_state: PartialState,
}
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone, Debug)]
#[allow(clippy::large_enum_variant)]
pub enum ChallengeBody {
BlockDoubleSign(BlockDoubleSign),
ChunkProofs(ChunkProofs),
ChunkState(ChunkState),
}
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone, Debug)]
#[borsh_init(init)]
pub struct Challenge {
pub body: ChallengeBody,
pub account_id: AccountId,
pub signature: Signature,
#[borsh_skip]
pub hash: CryptoHash,
}
impl Challenge {
pub fn init(&mut self) {
self.hash = hash(&self.body.try_to_vec().expect("Failed to serialize"));
}
pub fn produce(body: ChallengeBody, signer: &dyn ValidatorSigner) -> Self {
let (hash, signature) = signer.sign_challenge(&body);
Self { body, account_id: signer.validator_id().clone(), signature, hash }
}
}
pub type Challenges = Vec<Challenge>;
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct SlashedValidator {
pub account_id: AccountId,
pub is_double_sign: bool,
}
impl SlashedValidator {
pub fn new(account_id: AccountId, is_double_sign: bool) -> Self {
SlashedValidator { account_id, is_double_sign }
}
}
pub type ChallengesResult = Vec<SlashedValidator>;