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
use crate::{
blockchain::primitives::BlockId,
fuel_asm::Word,
fuel_tx::{
field::{
Inputs,
Outputs,
},
Cacheable,
Chargeable,
ConsensusParameters,
Create,
Input,
Output,
Script,
Transaction,
TxId,
UniqueIdentifier,
UtxoId,
},
fuel_types::{
Bytes32,
ContractId,
MessageId,
},
fuel_vm::{
checked_transaction::Checked,
Interpreter,
PredicateStorage,
ProgramState,
},
};
use fuel_vm_private::prelude::GasCosts;
use std::{
ops::Deref,
sync::Arc,
};
use tai64::Tai64;
pub type Result<T> = core::result::Result<T, Error>;
pub type ArcPoolTx = Arc<PoolTransaction>;
#[derive(Debug, Eq, PartialEq)]
pub enum PoolTransaction {
Script(Checked<Script>),
Create(Checked<Create>),
}
impl PoolTransaction {
pub fn price(&self) -> Word {
match self {
PoolTransaction::Script(script) => script.transaction().price(),
PoolTransaction::Create(create) => create.transaction().price(),
}
}
pub fn limit(&self) -> Word {
match self {
PoolTransaction::Script(script) => script.transaction().limit(),
PoolTransaction::Create(create) => create.transaction().limit(),
}
}
pub fn metered_bytes_size(&self) -> usize {
match self {
PoolTransaction::Script(script) => script.transaction().metered_bytes_size(),
PoolTransaction::Create(create) => create.transaction().metered_bytes_size(),
}
}
}
impl PoolTransaction {
pub fn id(&self) -> Bytes32 {
match self {
PoolTransaction::Script(script) => script.transaction().id(),
PoolTransaction::Create(create) => create.transaction().id(),
}
}
}
#[allow(missing_docs)]
impl PoolTransaction {
pub fn is_computed(&self) -> bool {
match self {
PoolTransaction::Script(script) => script.transaction().is_computed(),
PoolTransaction::Create(create) => create.transaction().is_computed(),
}
}
pub fn inputs(&self) -> &Vec<Input> {
match self {
PoolTransaction::Script(script) => script.transaction().inputs(),
PoolTransaction::Create(create) => create.transaction().inputs(),
}
}
pub fn outputs(&self) -> &Vec<Output> {
match self {
PoolTransaction::Script(script) => script.transaction().outputs(),
PoolTransaction::Create(create) => create.transaction().outputs(),
}
}
pub fn max_gas(&self) -> Word {
match self {
PoolTransaction::Script(script) => script.metadata().fee.max_gas(),
PoolTransaction::Create(create) => create.metadata().fee.max_gas(),
}
}
pub fn check_predicates(
&self,
params: ConsensusParameters,
gas_costs: GasCosts,
) -> bool {
match self {
PoolTransaction::Script(script) => {
Interpreter::<PredicateStorage>::check_predicates(
script.clone(),
params,
gas_costs,
)
.is_ok()
}
PoolTransaction::Create(create) => {
Interpreter::<PredicateStorage>::check_predicates(
create.clone(),
params,
gas_costs,
)
.is_ok()
}
}
}
}
impl From<&PoolTransaction> for Transaction {
fn from(tx: &PoolTransaction) -> Self {
match tx {
PoolTransaction::Script(script) => {
Transaction::Script(script.transaction().clone())
}
PoolTransaction::Create(create) => {
Transaction::Create(create.transaction().clone())
}
}
}
}
impl From<Checked<Script>> for PoolTransaction {
fn from(checked: Checked<Script>) -> Self {
Self::Script(checked)
}
}
impl From<Checked<Create>> for PoolTransaction {
fn from(checked: Checked<Create>) -> Self {
Self::Create(checked)
}
}
#[derive(Debug)]
pub struct InsertionResult {
pub inserted: ArcPoolTx,
pub removed: Vec<ArcPoolTx>,
}
#[derive(Debug, Clone)]
pub struct TxInfo {
tx: ArcPoolTx,
submitted_time: Tai64,
}
#[allow(missing_docs)]
impl TxInfo {
pub fn new(tx: ArcPoolTx) -> Self {
Self {
tx,
submitted_time: Tai64::now(),
}
}
pub fn tx(&self) -> &ArcPoolTx {
&self.tx
}
pub fn submitted_time(&self) -> Tai64 {
self.submitted_time
}
}
impl Deref for TxInfo {
type Target = ArcPoolTx;
fn deref(&self) -> &Self::Target {
&self.tx
}
}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum TransactionStatus {
Submitted {
time: Tai64,
},
Success {
block_id: BlockId,
time: Tai64,
result: Option<ProgramState>,
},
SqueezedOut {
reason: String,
},
Failed {
block_id: BlockId,
time: Tai64,
reason: String,
result: Option<ProgramState>,
},
}
#[derive(Clone, Debug, Eq, PartialEq)]
#[allow(missing_docs)] pub enum TxStatus {
Submitted,
Completed,
SqueezedOut { reason: Error },
}
#[allow(missing_docs)]
#[derive(thiserror::Error, Debug, PartialEq, Eq, Clone)]
#[non_exhaustive]
pub enum Error {
#[error("TxPool required that transaction contains metadata")]
NoMetadata,
#[error("TxPool doesn't support this type of transaction.")]
NotSupportedTransactionType,
#[error("Transaction is not inserted. Hash is already known")]
NotInsertedTxKnown,
#[error("Transaction is not inserted. Pool limit is hit, try to increase gas_price")]
NotInsertedLimitHit,
#[error("Transaction is not inserted. The gas price is too low.")]
NotInsertedGasPriceTooLow,
#[error(
"Transaction is not inserted. More priced tx {0:#x} already spend this UTXO output: {1:#x}"
)]
NotInsertedCollision(TxId, UtxoId),
#[error(
"Transaction is not inserted. More priced tx has created contract with ContractId {0:#x}"
)]
NotInsertedCollisionContractId(ContractId),
#[error(
"Transaction is not inserted. A higher priced tx {0:#x} is already spending this messageId: {1:#x}"
)]
NotInsertedCollisionMessageId(TxId, MessageId),
#[error(
"Transaction is not inserted. Dependent UTXO output is not existing: {0:#x}"
)]
NotInsertedOutputNotExisting(UtxoId),
#[error("Transaction is not inserted. UTXO input contract is not existing: {0:#x}")]
NotInsertedInputContractNotExisting(ContractId),
#[error("Transaction is not inserted. ContractId is already taken {0:#x}")]
NotInsertedContractIdAlreadyTaken(ContractId),
#[error("Transaction is not inserted. UTXO is not existing: {0:#x}")]
NotInsertedInputUtxoIdNotExisting(UtxoId),
#[error("Transaction is not inserted. UTXO is spent: {0:#x}")]
NotInsertedInputUtxoIdSpent(UtxoId),
#[error("Transaction is not inserted. Message is spent: {0:#x}")]
NotInsertedInputMessageIdSpent(MessageId),
#[error("Transaction is not inserted. Message id {0:#x} does not match any received message from the DA layer.")]
NotInsertedInputMessageUnknown(MessageId),
#[error(
"Transaction is not inserted. UTXO requires Contract input {0:#x} that is priced lower"
)]
NotInsertedContractPricedLower(ContractId),
#[error("Transaction is not inserted. Input output mismatch. Coin owner is different from expected input")]
NotInsertedIoWrongOwner,
#[error("Transaction is not inserted. Input output mismatch. Coin output does not match expected input")]
NotInsertedIoWrongAmount,
#[error("Transaction is not inserted. Input output mismatch. Coin output asset_id does not match expected inputs")]
NotInsertedIoWrongAssetId,
#[error("Transaction is not inserted. The computed message id doesn't match the provided message id.")]
NotInsertedIoWrongMessageId,
#[error(
"Transaction is not inserted. Input output mismatch. Expected coin but output is contract"
)]
NotInsertedIoContractOutput,
#[error(
"Transaction is not inserted. Input output mismatch. Expected coin but output is message"
)]
NotInsertedIoMessageInput,
#[error("Transaction is not inserted. Maximum depth of dependent transaction chain reached")]
NotInsertedMaxDepth,
#[error("Transaction exceeds the max gas per block limit. Tx gas: {tx_gas}, block limit {block_limit}")]
NotInsertedMaxGasLimit { tx_gas: Word, block_limit: Word },
#[error("Transaction removed.")]
Removed,
#[error("Transaction squeezed out because {0}")]
SqueezedOut(String),
#[error("Got some unexpected error: {0}")]
Other(String),
}