We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
networks
Similar to https://wagmi.sh/core/getting-started#create-config
import { createConfig } from "ponder"; import { mainnet, optimism } from "viem/chains"; export default createConfig({ chains: [mainnet, optimism], rpcUrls: { [mainnet.id]: string | string[], [optimism.id]: string | string[], }, // ... more config });
#1291 #1290
The text was updated successfully, but these errors were encountered:
In order to support the EIP 1193 transport api, we could change the type to string | string[] | Transport
string | string[] | Transport
Sorry, something went wrong.
Also need to support the remaining chain specific config: maxRequestsPerSecond, disableCache, and pollingInterval.
maxRequestsPerSecond
disableCache
pollingInterval
No branches or pull requests
Similar to https://wagmi.sh/core/getting-started#create-config
Related
#1291 #1290
The text was updated successfully, but these errors were encountered: