Skip to content

Commit 9cf1376

Browse files
committed
Remove custom config for Ronin (#6612)
Create2 deployer restrictions are lifted by the chain. Enable deployments through default create2 factory. <!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on removing the custom configuration for the `Ronin` blockchain within the `thirdweb` package. ### Detailed summary - Removed the `Ronin` configuration from the gas price settings in the `create-2-factory.ts` file. - Updated the gas price for `Ronin` from `110n * 10n ** 9n` to a static value of `110000n`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 58ab8c2 commit 9cf1376

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.changeset/stupid-rice-show.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Remove custom config for Ronin

packages/thirdweb/src/contract/deployment/utils/create-2-factory.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -317,10 +317,6 @@ const CUSTOM_GAS_FOR_CHAIN: Record<string, CustomChain> = {
317317
name: "Europa",
318318
gasPrice: 110000n,
319319
},
320-
"2020": {
321-
name: "Ronin",
322-
gasPrice: 110n * 10n ** 9n,
323-
},
324320
};
325321

326322
const FACTORIES: Record<string, string> = {

0 commit comments

Comments
 (0)