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
use fuel_asm::Opcode;
use fuel_types::{Bytes32, Color, ContractId, Salt, Word};
use itertools::Itertools;
use std::convert::TryFrom;
use std::io::Write;
use std::{io, mem};
mod id;
mod metadata;
mod offset;
mod txio;
mod types;
mod validation;
pub use metadata::Metadata;
pub use types::{Input, Output, Witness};
pub use validation::ValidationError;
const WORD_SIZE: usize = mem::size_of::<Word>();
const TRANSACTION_SCRIPT_FIXED_SIZE: usize = WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ Bytes32::LEN;
const TRANSACTION_CREATE_FIXED_SIZE: usize = WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ Salt::LEN;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
enum TransactionRepr {
Script = 0x00,
Create = 0x01,
}
impl TryFrom<Word> for TransactionRepr {
type Error = io::Error;
fn try_from(b: Word) -> Result<Self, Self::Error> {
match b {
0x00 => Ok(Self::Script),
0x01 => Ok(Self::Create),
_ => Err(io::Error::new(
io::ErrorKind::InvalidData,
"The provided identifier is invalid!",
)),
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[cfg_attr(
feature = "serde-types-minimal",
derive(serde::Serialize, serde::Deserialize)
)]
pub enum Transaction {
Script {
gas_price: Word,
gas_limit: Word,
maturity: Word,
receipts_root: Bytes32,
script: Vec<u8>,
script_data: Vec<u8>,
inputs: Vec<Input>,
outputs: Vec<Output>,
witnesses: Vec<Witness>,
metadata: Option<Metadata>,
},
Create {
gas_price: Word,
gas_limit: Word,
maturity: Word,
bytecode_witness_index: u8,
salt: Salt,
static_contracts: Vec<ContractId>,
inputs: Vec<Input>,
outputs: Vec<Output>,
witnesses: Vec<Witness>,
metadata: Option<Metadata>,
},
}
impl Default for Transaction {
fn default() -> Self {
let script = Opcode::RET(0x10).to_bytes().to_vec();
Transaction::script(0, 1000000, 0, script, vec![], vec![], vec![], vec![])
}
}
impl Transaction {
pub const fn script(
gas_price: Word,
gas_limit: Word,
maturity: Word,
script: Vec<u8>,
script_data: Vec<u8>,
inputs: Vec<Input>,
outputs: Vec<Output>,
witnesses: Vec<Witness>,
) -> Self {
let receipts_root = Bytes32::zeroed();
Self::Script {
gas_price,
gas_limit,
maturity,
receipts_root,
script,
script_data,
inputs,
outputs,
witnesses,
metadata: None,
}
}
pub const fn create(
gas_price: Word,
gas_limit: Word,
maturity: Word,
bytecode_witness_index: u8,
salt: Salt,
static_contracts: Vec<ContractId>,
inputs: Vec<Input>,
outputs: Vec<Output>,
witnesses: Vec<Witness>,
) -> Self {
Self::Create {
gas_price,
gas_limit,
maturity,
bytecode_witness_index,
salt,
static_contracts,
inputs,
outputs,
witnesses,
metadata: None,
}
}
pub fn input_colors(&self) -> impl Iterator<Item = &Color> {
self.inputs()
.iter()
.filter_map(|input| match input {
Input::Coin { color, .. } => Some(color),
_ => None,
})
.unique()
}
pub fn input_contracts(&self) -> impl Iterator<Item = &ContractId> {
self.inputs()
.iter()
.filter_map(|input| match input {
Input::Contract { contract_id, .. } => Some(contract_id),
_ => None,
})
.unique()
}
pub const fn gas_price(&self) -> Word {
match self {
Self::Script { gas_price, .. } => *gas_price,
Self::Create { gas_price, .. } => *gas_price,
}
}
pub fn set_gas_price(&mut self, price: Word) {
match self {
Self::Script { gas_price, .. } => *gas_price = price,
Self::Create { gas_price, .. } => *gas_price = price,
}
}
pub const fn gas_limit(&self) -> Word {
match self {
Self::Script { gas_limit, .. } => *gas_limit,
Self::Create { gas_limit, .. } => *gas_limit,
}
}
pub fn set_gas_limit(&mut self, limit: Word) {
match self {
Self::Script { gas_limit, .. } => *gas_limit = limit,
Self::Create { gas_limit, .. } => *gas_limit = limit,
}
}
pub const fn maturity(&self) -> Word {
match self {
Self::Script { maturity, .. } => *maturity,
Self::Create { maturity, .. } => *maturity,
}
}
pub fn set_maturity(&mut self, mat: Word) {
match self {
Self::Script { maturity, .. } => *maturity = mat,
Self::Create { maturity, .. } => *maturity = mat,
}
}
pub const fn is_script(&self) -> bool {
matches!(self, Self::Script { .. })
}
pub const fn metadata(&self) -> Option<&Metadata> {
match self {
Self::Script { metadata, .. } => metadata.as_ref(),
Self::Create { metadata, .. } => metadata.as_ref(),
}
}
pub fn inputs(&self) -> &[Input] {
match self {
Self::Script { inputs, .. } => inputs.as_slice(),
Self::Create { inputs, .. } => inputs.as_slice(),
}
}
pub fn outputs(&self) -> &[Output] {
match self {
Self::Script { outputs, .. } => outputs.as_slice(),
Self::Create { outputs, .. } => outputs.as_slice(),
}
}
pub fn witnesses(&self) -> &[Witness] {
match self {
Self::Script { witnesses, .. } => witnesses.as_slice(),
Self::Create { witnesses, .. } => witnesses.as_slice(),
}
}
pub fn try_from_bytes(bytes: &[u8]) -> io::Result<(usize, Self)> {
let mut tx = Self::default();
let n = tx.write(bytes)?;
Ok((n, tx))
}
pub const fn receipts_root(&self) -> Option<&Bytes32> {
match self {
Self::Script { receipts_root, .. } => Some(receipts_root),
_ => None,
}
}
pub fn set_receipts_root(&mut self, root: Bytes32) -> Option<Bytes32> {
match self {
Self::Script { receipts_root, .. } => Some(std::mem::replace(receipts_root, root)),
_ => None,
}
}
}