-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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!: fuel-core@0.32.1
and large contract deployments
#2827
Merged
Conversation
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
Torres-ssf
reviewed
Jul 24, 2024
…/feat/blob-contract-deploys
…/feat/blob-contract-deploys
maschad
reviewed
Aug 13, 2024
…/feat/blob-contract-deploys
arboleya
reviewed
Aug 13, 2024
maschad
previously approved these changes
Aug 13, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job @Torres-ssf and @danielbate
petertonysmith94
previously approved these changes
Aug 14, 2024
arboleya
approved these changes
Aug 14, 2024
petertonysmith94
approved these changes
Aug 14, 2024
Torres-ssf
approved these changes
Aug 14, 2024
nedsalk
approved these changes
Aug 14, 2024
Coverage Report:
Changed Files:
|
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fuel-core@0.32.1
#2895Release notes
In this release, we:
fuel-core
to v0.32.1Summary
BlobTransactionRequest
to support the submission of blob transactions, a type of stateless tx whose purpose is just to facilitate arbitrary data in the VM.ContractFactory.deployAsBlobTx()
function to deploy contracts via a loader script whose bytecode is greater than the accepted max contract size for a chain. A new attribute has been added to theDeployContractOptions
,chunkSizeOverride
for managing fluctuating transaction sizes when calculating the max chunk size for a blob tx.ContractFactory.deploy()
can now deploy contracts of any size, it chooses the most appropriate deployment method dependent on the contract size.ContractFactory.deployAsCreateTx()
for deployments where a user wants to enforce a single create tx, which will now validate contract size against a consensus parameter rather than the constant in feat!: deploy contract validation #2796.Breaking Changes
MAX_CONTRACT_SIZE
is no longer exported, it should now be fetched from the chain.Checklist
tests
to prove my changesdocs