-
Notifications
You must be signed in to change notification settings - Fork 624
/
transaction.rs
559 lines (497 loc) · 19.1 KB
/
transaction.rs
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
use std::borrow::Borrow;
use std::fmt;
use std::hash::{Hash, Hasher};
use borsh::{BorshDeserialize, BorshSerialize};
use serde::{Deserialize, Serialize};
use near_crypto::{PublicKey, Signature};
use crate::account::AccessKey;
use crate::errors::TxExecutionError;
use crate::hash::{hash, CryptoHash};
use crate::logging;
use crate::merkle::MerklePath;
use crate::serialize::{base64_format, u128_dec_format_compatible};
use crate::types::{AccountId, Balance, Gas, Nonce};
use near_primitives_core::profile::ProfileData;
pub type LogEntry = String;
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Debug, Clone)]
pub struct Transaction {
/// An account on which behalf transaction is signed
pub signer_id: AccountId,
/// A public key of the access key which was used to sign an account.
/// Access key holds permissions for calling certain kinds of actions.
pub public_key: PublicKey,
/// Nonce is used to determine order of transaction in the pool.
/// It increments for a combination of `signer_id` and `public_key`
pub nonce: Nonce,
/// Receiver account for this transaction
pub receiver_id: AccountId,
/// The hash of the block in the blockchain on top of which the given transaction is valid
pub block_hash: CryptoHash,
/// A list of actions to be applied
pub actions: Vec<Action>,
}
impl Transaction {
/// Computes a hash of the transaction for signing and size of serialized transaction
pub fn get_hash_and_size(&self) -> (CryptoHash, u64) {
let bytes = self.try_to_vec().expect("Failed to deserialize");
(hash(&bytes), bytes.len() as u64)
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(
BorshSerialize,
BorshDeserialize,
Serialize,
Deserialize,
PartialEq,
Eq,
Debug,
Clone,
strum::AsRefStr,
)]
pub enum Action {
/// Create an (sub)account using a transaction `receiver_id` as an ID for
/// a new account ID must pass validation rules described here
/// <http://nomicon.io/Primitives/Account.html>.
CreateAccount(CreateAccountAction),
/// Sets a Wasm code to a receiver_id
DeployContract(DeployContractAction),
FunctionCall(FunctionCallAction),
Transfer(TransferAction),
Stake(StakeAction),
AddKey(AddKeyAction),
DeleteKey(DeleteKeyAction),
DeleteAccount(DeleteAccountAction),
}
impl Action {
pub fn get_prepaid_gas(&self) -> Gas {
match self {
Action::FunctionCall(a) => a.gas,
_ => 0,
}
}
pub fn get_deposit_balance(&self) -> Balance {
match self {
Action::FunctionCall(a) => a.deposit,
Action::Transfer(a) => a.deposit,
_ => 0,
}
}
}
/// Create account action
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct CreateAccountAction {}
impl From<CreateAccountAction> for Action {
fn from(create_account_action: CreateAccountAction) -> Self {
Self::CreateAccount(create_account_action)
}
}
/// Deploy contract action
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone)]
pub struct DeployContractAction {
/// WebAssembly binary
#[serde(with = "base64_format")]
pub code: Vec<u8>,
}
impl From<DeployContractAction> for Action {
fn from(deploy_contract_action: DeployContractAction) -> Self {
Self::DeployContract(deploy_contract_action)
}
}
impl fmt::Debug for DeployContractAction {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("DeployContractAction")
.field("code", &format_args!("{}", logging::pretty_utf8(&self.code)))
.finish()
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone)]
pub struct FunctionCallAction {
pub method_name: String,
#[serde(with = "base64_format")]
pub args: Vec<u8>,
pub gas: Gas,
#[serde(with = "u128_dec_format_compatible")]
pub deposit: Balance,
}
impl From<FunctionCallAction> for Action {
fn from(function_call_action: FunctionCallAction) -> Self {
Self::FunctionCall(function_call_action)
}
}
impl fmt::Debug for FunctionCallAction {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("FunctionCallAction")
.field("method_name", &format_args!("{}", &self.method_name))
.field("args", &format_args!("{}", logging::pretty_utf8(&self.args)))
.field("gas", &format_args!("{}", &self.gas))
.field("deposit", &format_args!("{}", &self.deposit))
.finish()
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct TransferAction {
#[serde(with = "u128_dec_format_compatible")]
pub deposit: Balance,
}
impl From<TransferAction> for Action {
fn from(transfer_action: TransferAction) -> Self {
Self::Transfer(transfer_action)
}
}
/// An action which stakes singer_id tokens and setup's validator public key
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct StakeAction {
/// Amount of tokens to stake.
#[serde(with = "u128_dec_format_compatible")]
pub stake: Balance,
/// Validator key which will be used to sign transactions on behalf of singer_id
pub public_key: PublicKey,
}
impl From<StakeAction> for Action {
fn from(stake_action: StakeAction) -> Self {
Self::Stake(stake_action)
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct AddKeyAction {
/// A public key which will be associated with an access_key
pub public_key: PublicKey,
/// An access key with the permission
pub access_key: AccessKey,
}
impl From<AddKeyAction> for Action {
fn from(add_key_action: AddKeyAction) -> Self {
Self::AddKey(add_key_action)
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct DeleteKeyAction {
/// A public key associated with the access_key to be deleted.
pub public_key: PublicKey,
}
impl From<DeleteKeyAction> for Action {
fn from(delete_key_action: DeleteKeyAction) -> Self {
Self::DeleteKey(delete_key_action)
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct DeleteAccountAction {
pub beneficiary_id: AccountId,
}
impl From<DeleteAccountAction> for Action {
fn from(delete_account_action: DeleteAccountAction) -> Self {
Self::DeleteAccount(delete_account_action)
}
}
#[cfg_attr(feature = "deepsize_feature", derive(deepsize::DeepSizeOf))]
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Eq, Debug, Clone)]
#[borsh_init(init)]
pub struct SignedTransaction {
pub transaction: Transaction,
pub signature: Signature,
#[borsh_skip]
hash: CryptoHash,
#[borsh_skip]
size: u64,
}
impl SignedTransaction {
pub fn new(signature: Signature, transaction: Transaction) -> Self {
let mut signed_tx =
Self { signature, transaction, hash: CryptoHash::default(), size: u64::default() };
signed_tx.init();
signed_tx
}
pub fn init(&mut self) {
let (hash, size) = self.transaction.get_hash_and_size();
self.hash = hash;
self.size = size;
}
pub fn get_hash(&self) -> CryptoHash {
self.hash
}
pub fn get_size(&self) -> u64 {
self.size
}
}
impl Hash for SignedTransaction {
fn hash<H: Hasher>(&self, state: &mut H) {
self.hash.hash(state)
}
}
impl PartialEq for SignedTransaction {
fn eq(&self, other: &SignedTransaction) -> bool {
self.hash == other.hash && self.signature == other.signature
}
}
impl Borrow<CryptoHash> for SignedTransaction {
fn borrow(&self) -> &CryptoHash {
&self.hash
}
}
/// The status of execution for a transaction or a receipt.
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Eq, Clone)]
pub enum ExecutionStatus {
/// The execution is pending or unknown.
Unknown,
/// The execution has failed with the given execution error.
Failure(TxExecutionError),
/// The final action succeeded and returned some value or an empty vec.
SuccessValue(Vec<u8>),
/// The final action of the receipt returned a promise or the signed transaction was converted
/// to a receipt. Contains the receipt_id of the generated receipt.
SuccessReceiptId(CryptoHash),
}
impl fmt::Debug for ExecutionStatus {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ExecutionStatus::Unknown => f.write_str("Unknown"),
ExecutionStatus::Failure(e) => f.write_fmt(format_args!("Failure({})", e)),
ExecutionStatus::SuccessValue(v) => {
f.write_fmt(format_args!("SuccessValue({})", logging::pretty_utf8(v)))
}
ExecutionStatus::SuccessReceiptId(receipt_id) => {
f.write_fmt(format_args!("SuccessReceiptId({})", receipt_id))
}
}
}
}
impl Default for ExecutionStatus {
fn default() -> Self {
ExecutionStatus::Unknown
}
}
/// ExecutionOutcome for proof. Excludes logs and metadata
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Clone)]
struct PartialExecutionOutcome {
pub receipt_ids: Vec<CryptoHash>,
pub gas_burnt: Gas,
pub tokens_burnt: Balance,
pub executor_id: AccountId,
pub status: PartialExecutionStatus,
}
impl From<&ExecutionOutcome> for PartialExecutionOutcome {
fn from(outcome: &ExecutionOutcome) -> Self {
Self {
receipt_ids: outcome.receipt_ids.clone(),
gas_burnt: outcome.gas_burnt,
tokens_burnt: outcome.tokens_burnt,
executor_id: outcome.executor_id.clone(),
status: outcome.status.clone().into(),
}
}
}
/// ExecutionStatus for proof. Excludes failure debug info.
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Clone)]
pub enum PartialExecutionStatus {
Unknown,
Failure,
SuccessValue(Vec<u8>),
SuccessReceiptId(CryptoHash),
}
impl From<ExecutionStatus> for PartialExecutionStatus {
fn from(status: ExecutionStatus) -> PartialExecutionStatus {
match status {
ExecutionStatus::Unknown => PartialExecutionStatus::Unknown,
ExecutionStatus::Failure(_) => PartialExecutionStatus::Failure,
ExecutionStatus::SuccessValue(value) => PartialExecutionStatus::SuccessValue(value),
ExecutionStatus::SuccessReceiptId(id) => PartialExecutionStatus::SuccessReceiptId(id),
}
}
}
/// Execution outcome for one signed transaction or one receipt.
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Clone, smart_default::SmartDefault, Eq)]
pub struct ExecutionOutcome {
/// Logs from this transaction or receipt.
pub logs: Vec<LogEntry>,
/// Receipt IDs generated by this transaction or receipt.
pub receipt_ids: Vec<CryptoHash>,
/// The amount of the gas burnt by the given transaction or receipt.
pub gas_burnt: Gas,
/// The amount of tokens burnt corresponding to the burnt gas amount.
/// This value doesn't always equal to the `gas_burnt` multiplied by the gas price, because
/// the prepaid gas price might be lower than the actual gas price and it creates a deficit.
pub tokens_burnt: Balance,
/// The id of the account on which the execution happens. For transaction this is signer_id,
/// for receipt this is receiver_id.
#[default("test".parse().unwrap())]
pub executor_id: AccountId,
/// Execution status. Contains the result in case of successful execution.
/// NOTE: Should be the latest field since it contains unparsable by light client
/// ExecutionStatus::Failure
pub status: ExecutionStatus,
/// Execution metadata, versioned
pub metadata: ExecutionMetadata,
}
#[derive(BorshSerialize, BorshDeserialize, PartialEq, Clone, Eq, Debug)]
pub enum ExecutionMetadata {
// V1: Empty Metadata
V1,
// V2: With ProfileData
V2(ProfileData),
}
impl Default for ExecutionMetadata {
fn default() -> Self {
ExecutionMetadata::V1
}
}
impl ExecutionOutcome {
pub fn to_hashes(&self) -> Vec<CryptoHash> {
let mut result = vec![hash(
&PartialExecutionOutcome::from(self).try_to_vec().expect("Failed to serialize"),
)];
for log in self.logs.iter() {
result.push(hash(log.as_bytes()));
}
result
}
}
impl fmt::Debug for ExecutionOutcome {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ExecutionOutcome")
.field("logs", &format_args!("{}", logging::pretty_vec(&self.logs)))
.field("receipt_ids", &format_args!("{}", logging::pretty_vec(&self.receipt_ids)))
.field("burnt_gas", &self.gas_burnt)
.field("tokens_burnt", &self.tokens_burnt)
.field("status", &self.status)
.field("metadata", &self.metadata)
.finish()
}
}
/// Execution outcome with the identifier.
/// For a signed transaction, the ID is the hash of the transaction.
/// For a receipt, the ID is the receipt ID.
#[derive(PartialEq, Clone, Default, Debug, BorshSerialize, BorshDeserialize, Eq)]
pub struct ExecutionOutcomeWithId {
/// The transaction hash or the receipt ID.
pub id: CryptoHash,
/// Should be the latest field since contains unparsable by light client ExecutionStatus::Failure
pub outcome: ExecutionOutcome,
}
impl ExecutionOutcomeWithId {
pub fn to_hashes(&self) -> Vec<CryptoHash> {
let mut result = vec![self.id];
result.extend(self.outcome.to_hashes());
result
}
}
/// Execution outcome with path from it to the outcome root and ID.
#[derive(PartialEq, Clone, Default, Debug, BorshSerialize, BorshDeserialize, Eq)]
pub struct ExecutionOutcomeWithIdAndProof {
pub proof: MerklePath,
pub block_hash: CryptoHash,
/// Should be the latest field since contains unparsable by light client ExecutionStatus::Failure
pub outcome_with_id: ExecutionOutcomeWithId,
}
impl ExecutionOutcomeWithIdAndProof {
pub fn id(&self) -> &CryptoHash {
&self.outcome_with_id.id
}
}
pub fn verify_transaction_signature(
transaction: &SignedTransaction,
public_keys: &[PublicKey],
) -> bool {
let hash = transaction.get_hash();
let hash = hash.as_ref();
public_keys.iter().any(|key| transaction.signature.verify(hash, key))
}
#[cfg(test)]
mod tests {
use borsh::BorshDeserialize;
use near_crypto::{InMemorySigner, KeyType, Signature, Signer};
use crate::account::{AccessKeyPermission, FunctionCallPermission};
use crate::serialize::to_base;
use super::*;
#[test]
fn test_verify_transaction() {
let signer = InMemorySigner::from_random("test".parse().unwrap(), KeyType::ED25519);
let transaction = Transaction {
signer_id: "test".parse().unwrap(),
public_key: signer.public_key(),
nonce: 0,
receiver_id: "test".parse().unwrap(),
block_hash: Default::default(),
actions: vec![],
}
.sign(&signer);
let wrong_public_key = PublicKey::from_seed(KeyType::ED25519, "wrong");
let valid_keys = vec![signer.public_key(), wrong_public_key.clone()];
assert!(verify_transaction_signature(&transaction, &valid_keys));
let invalid_keys = vec![wrong_public_key];
assert!(!verify_transaction_signature(&transaction, &invalid_keys));
let bytes = transaction.try_to_vec().unwrap();
let decoded_tx = SignedTransaction::try_from_slice(&bytes).unwrap();
assert!(verify_transaction_signature(&decoded_tx, &valid_keys));
}
/// This test is change checker for a reason - we don't expect transaction format to change.
/// If it does - you MUST update all of the dependencies: like nearlib and other clients.
#[test]
fn test_serialize_transaction() {
let public_key: PublicKey = "22skMptHjFWNyuEWY22ftn2AbLPSYpmYwGJRGwpNHbTV".parse().unwrap();
let transaction = Transaction {
signer_id: "test.near".parse().unwrap(),
public_key: public_key.clone(),
nonce: 1,
receiver_id: "123".parse().unwrap(),
block_hash: Default::default(),
actions: vec![
Action::CreateAccount(CreateAccountAction {}),
Action::DeployContract(DeployContractAction { code: vec![1, 2, 3] }),
Action::FunctionCall(FunctionCallAction {
method_name: "qqq".to_string(),
args: vec![1, 2, 3],
gas: 1_000,
deposit: 1_000_000,
}),
Action::Transfer(TransferAction { deposit: 123 }),
Action::Stake(StakeAction { public_key: public_key.clone(), stake: 1_000_000 }),
Action::AddKey(AddKeyAction {
public_key: public_key.clone(),
access_key: AccessKey {
nonce: 0,
permission: AccessKeyPermission::FunctionCall(FunctionCallPermission {
allowance: None,
receiver_id: "zzz".parse().unwrap(),
method_names: vec!["www".to_string()],
}),
},
}),
Action::DeleteKey(DeleteKeyAction { public_key }),
Action::DeleteAccount(DeleteAccountAction {
beneficiary_id: "123".parse().unwrap(),
}),
],
};
let signed_tx = SignedTransaction::new(Signature::empty(KeyType::ED25519), transaction);
let new_signed_tx =
SignedTransaction::try_from_slice(&signed_tx.try_to_vec().unwrap()).unwrap();
assert_eq!(
to_base(&new_signed_tx.get_hash()),
"4GXvjMFN6wSxnU9jEVT8HbXP5Yk6yELX9faRSKp6n9fX"
);
}
#[test]
fn test_outcome_to_hashes() {
let outcome = ExecutionOutcome {
status: ExecutionStatus::SuccessValue(vec![123]),
logs: vec!["123".to_string(), "321".to_string()],
receipt_ids: vec![],
gas_burnt: 123,
tokens_burnt: 1234000,
executor_id: "alice".parse().unwrap(),
metadata: ExecutionMetadata::V1,
};
let hashes = outcome.to_hashes();
assert_eq!(hashes.len(), 3);
}
}