Skip to content

Commit d4a49b2

Browse files
committed
[SDK] fix: Custom create2 gas config update (#6286)
TOOL-3458 <!-- ## 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 introduces a new gas price configuration for a blockchain network named `Ronin` within the `create-2-factory.ts` file. ### Detailed summary - Added a new entry for the year `"2020"` with: - `name`: `"Ronin"` - `gasPrice`: `110n * 10n ** 9n` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 35b7a0e commit d4a49b2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,10 @@ const CUSTOM_GAS_FOR_CHAIN: Record<string, CustomChain> = {
314314
name: "Europa",
315315
gasPrice: 110000n,
316316
},
317+
"2020": {
318+
name: "Ronin",
319+
gasPrice: 110n * 10n ** 9n,
320+
},
317321
};
318322

319323
const CUSTOM_GAS_BINS = [

0 commit comments

Comments
 (0)