-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest Fuel versions (#16)
* Update to latest Fuel versions * Update tests * fmt * Use latest fuel-core in ci * Newer rust install * Clippy * Install fuel-core binary correctly * Fix some minor errors
- Loading branch information
Showing
7 changed files
with
292 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,187 @@ | ||
{ | ||
"Script": { | ||
"byte_price": 0, | ||
"gas_price": 0, | ||
"gas_limit": 1000000, | ||
"maturity": 0, | ||
"script": [80,64,0,202,80,68,0,186,51,65,16,0,36,4,0,0], | ||
"script_gas_limit": 1000000, | ||
"script": [ | ||
144, | ||
0, | ||
0, | ||
4, | ||
71, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
68, | ||
93, | ||
252, | ||
192, | ||
1, | ||
16, | ||
255, | ||
243, | ||
0, | ||
26, | ||
72, | ||
16, | ||
0, | ||
26, | ||
68, | ||
0, | ||
0, | ||
93, | ||
67, | ||
240, | ||
0, | ||
22, | ||
65, | ||
20, | ||
0, | ||
115, | ||
64, | ||
0, | ||
13, | ||
51, | ||
72, | ||
0, | ||
0, | ||
36, | ||
0, | ||
0, | ||
0, | ||
16, | ||
69, | ||
16, | ||
64, | ||
27, | ||
73, | ||
36, | ||
64, | ||
144, | ||
0, | ||
0, | ||
8, | ||
71, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
0, | ||
5 | ||
], | ||
"script_data": [], | ||
"inputs": [], | ||
"policies": { | ||
"bits": "GasPrice", | ||
"values": [ | ||
0, | ||
0, | ||
0, | ||
0 | ||
] | ||
}, | ||
"inputs": [ | ||
{ | ||
"CoinSigned": { | ||
"utxo_id": { | ||
"tx_id": "c49d65de61cf04588a764b557d25cc6c6b4bc0d7429227e2a21e61c213b3a3e2", | ||
"output_index": 18 | ||
}, | ||
"owner": "f1e92c42b90934aa6372e30bc568a326f6e66a1a0288595e6e3fbd392a4f3e6e", | ||
"amount": 10599410012256088338, | ||
"asset_id": "2cafad611543e0265d89f1c2b60d9ebf5d56ad7e23d9827d6b522fd4d6e44bc3", | ||
"tx_pointer": { | ||
"block_height": 0, | ||
"tx_index": 0 | ||
}, | ||
"witness_index": 0, | ||
"maturity": 0, | ||
"predicate_gas_used": null, | ||
"predicate": null, | ||
"predicate_data": null | ||
} | ||
} | ||
], | ||
"outputs": [], | ||
"witnesses": [], | ||
"witnesses": [ | ||
{ | ||
"data": [ | ||
156, | ||
254, | ||
34, | ||
102, | ||
65, | ||
96, | ||
133, | ||
170, | ||
254, | ||
105, | ||
147, | ||
35, | ||
196, | ||
199, | ||
179, | ||
133, | ||
132, | ||
240, | ||
208, | ||
149, | ||
11, | ||
46, | ||
30, | ||
96, | ||
44, | ||
91, | ||
121, | ||
195, | ||
145, | ||
184, | ||
159, | ||
235, | ||
117, | ||
82, | ||
135, | ||
41, | ||
84, | ||
154, | ||
102, | ||
61, | ||
61, | ||
16, | ||
99, | ||
123, | ||
58, | ||
173, | ||
75, | ||
226, | ||
219, | ||
139, | ||
62, | ||
33, | ||
41, | ||
176, | ||
16, | ||
18, | ||
132, | ||
178, | ||
8, | ||
125, | ||
130, | ||
169, | ||
32, | ||
108 | ||
] | ||
} | ||
], | ||
"receipts_root": "0000000000000000000000000000000000000000000000000000000000000000" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pub mod names; | ||
|
||
// Re-exports | ||
pub use fuel_gql_client::client::{schema::RunResult, FuelClient}; | ||
pub use fuel_core_client::client::{schema::RunResult, FuelClient}; | ||
pub use fuel_vm::prelude::{ContractId, Transaction}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters