Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: handle Unknown transactions, blocks and consensus parameters #2154

Merged
merged 41 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
df9f96d
fuel-client: default to `Unknown` transaction type
hal3e Sep 3, 2024
0a3fd21
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 16, 2024
96d4ccf
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 17, 2024
43ee053
Work in progress
hal3e Sep 16, 2024
2e6344a
add `Unknown` variant to CParams and children
hal3e Sep 17, 2024
fd676bf
add changelog
hal3e Sep 17, 2024
a07f855
fix tests
hal3e Sep 17, 2024
c524651
insta review
hal3e Sep 17, 2024
59a8fd1
merge master
hal3e Sep 17, 2024
10336a7
merge master
hal3e Sep 18, 2024
9976e14
merge master
hal3e Sep 18, 2024
4b2430e
update changelogmd
hal3e Sep 18, 2024
4537a65
update changelogmd
hal3e Sep 18, 2024
675ce5e
fix merge remove wasm bytecode
hal3e Sep 18, 2024
ac37dcd
pr comments
hal3e Sep 18, 2024
217393e
Merge branch 'master' into hal3e/unknown-variants
MitchTurner Sep 19, 2024
d2409e7
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 19, 2024
2b63e5e
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 19, 2024
dbf8849
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 20, 2024
c85e7df
add Block and Header `Unknown` variant
hal3e Sep 20, 2024
6275d95
update changelog
hal3e Sep 20, 2024
30644d2
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 20, 2024
bd8aa31
Merge branch 'master' into hal3e/unknown-variants
hal3e Sep 20, 2024
5cf5057
merge master
hal3e Sep 26, 2024
3d039ae
merge master
hal3e Sep 27, 2024
1ece59d
merge master
hal3e Oct 2, 2024
0d5cbcb
Merge branch 'master' into hal3e/unknown-variants
hal3e Oct 2, 2024
015976a
Merge branch 'master' into hal3e/unknown-variants
hal3e Oct 3, 2024
0b0404f
merge master
hal3e Nov 6, 2024
d72f065
update changelog
hal3e Nov 6, 2024
a1b07af
fix spelling error
hal3e Nov 6, 2024
b1c255e
insta review
hal3e Nov 6, 2024
c7492c5
Merge branch 'master' into hal3e/unknown-variants
hal3e Nov 14, 2024
f42ace8
pr comments
hal3e Nov 14, 2024
10649aa
update cynic version
hal3e Nov 14, 2024
694d3b3
fmt
hal3e Nov 14, 2024
dbffb57
Merge branch 'master' into hal3e/unknown-variants
hal3e Nov 14, 2024
b7a3a66
Merge branch 'master' into hal3e/unknown-variants
hal3e Nov 14, 2024
2486e1c
merge master
hal3e Nov 15, 2024
f567093
merge master
hal3e Nov 18, 2024
a15c700
Merge branch 'master' into hal3e/unknown-variants
xgreenx Nov 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]

### Added
- [2154](https://github.com/FuelLabs/fuel-core/pull/2154): Added `Unknown` variant to `ConsensusParameters` graphql queries
hal3e marked this conversation as resolved.
Show resolved Hide resolved
- [2154](https://github.com/FuelLabs/fuel-core/pull/2154): Added `Unknown` variant to `Block` graphql queries
- [2154](https://github.com/FuelLabs/fuel-core/pull/2154): Added `TransactionType` type in `fuel-client`
- [2321](https://github.com/FuelLabs/fuel-core/pull/2321): New metrics for the TxPool:
- The size of transactions in the txpool (`txpool_tx_size`)
- The time spent by a transaction in the txpool in seconds (`txpool_tx_time_in_txpool_seconds`)
Expand Down Expand Up @@ -37,6 +40,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
#### Breaking
- [2389](https://github.com/FuelLabs/fuel-core/pull/2258): Updated the `messageProof` GraphQL schema to return a non-nullable `MessageProof`.

#### Breaking
- [2154](https://github.com/FuelLabs/fuel-core/pull/2154): Transaction graphql endpoints use `TransactionType` instead of `fuel_tx::Transaction`.

## [Version 0.40.0]

### Added
Expand Down
Loading
Loading