-
Notifications
You must be signed in to change notification settings - Fork 619
[SDK] Fix: Opt out of 1559 on lumia mainnet #6032
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
[SDK] Fix: Opt out of 1559 on lumia mainnet #6032
Conversation
Merge activity
|
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. |
| }, | ||
| prefillBuy: { | ||
| chain: base, | ||
| chain: defineChain(466), |
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.
The defineChain() call appears to be missing critical EIP-1559 configuration. To explicitly opt out of EIP-1559 for chain 466, please update the chain definition to:
defineChain({
id: 466,
eip1559: false
})This ensures the transaction will use legacy gas pricing instead of the EIP-1559 fee market.
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
5cb578d to
85b0441
Compare
size-limit report 📦
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6032 +/- ##
=======================================
Coverage 54.89% 54.89%
=======================================
Files 1151 1151
Lines 61209 61210 +1
Branches 5159 5167 +8
=======================================
+ Hits 33598 33600 +2
+ Misses 26883 26882 -1
Partials 728 728
*This pull request uses carry forward flags. Click here to find out more.
|
<!-- start pr-codex -->
## PR-Codex overview
This PR adds a new entry for the `Lumia Mainnet` to the fee data list in the `fee-data.ts` file.
### Detailed summary
- Added `Lumia Mainnet` entry to the fee data list in `packages/thirdweb/src/gas/fee-data.ts`.
> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}`
<!-- end pr-codex -->
85b0441 to
02a8dbf
Compare
<!-- start pr-codex -->
## PR-Codex overview
This PR adds support for the `Lumia Mainnet` in the fee data configuration.
### Detailed summary
- Added a new entry for `Lumia Mainnet` in the fee data array.
> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}`
<!-- end pr-codex -->
02a8dbf to
1d8695e
Compare
PR-Codex overview
This PR adds a new network entry for the
Lumia Mainnetin thefee-data.tsfile, enhancing the gas fee data for this specific blockchain environment.Detailed summary
Lumia Mainnetentry to the list of networks infee-data.ts.