-
Notifications
You must be signed in to change notification settings - Fork 40
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
Deploy to BSC and Base Sepolia #303
Conversation
jfschwarz
commented
Nov 21, 2024
•
edited
Loading
edited
- support deployment with Frame
- include adapter contracts in deploy tasks
- deploy to BSC
- contracts
- subgraph
- deploy to Base Sepolia
- contracts
- subgraph
- update sdk and app
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
bsc: { | ||
...sharedNetworkConfig, | ||
chainId: 56, | ||
url: "https://bscrpc.com", | ||
}, |
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.
@jfschwarz This change addresses an issue with the BSC network configuration where transactions fail due to underpriced gas with Roles.sol
. Specifically, the error ProviderError: transaction underpriced: gas tip cap 1, minimum needed 1000000000
occurs because the gasPrice is not explicitly set.
To fix this, I added:
gasPrice: Number(parseUnits("1", "gwei"))
,