Releases: ponder-sh/ponder
@ponder/[email protected]
Patch Changes
-
#383
f3b0be6
Thanks @o-az! - Fixed a bug introduced in0.0.91
that broke the GraphiQL interface. -
#384
2206f3c
Thanks @0xOlias! - Fixed a bug where Infura "query returned more than 10000 results" errors would block the historical sync. -
#355
986c2e2
Thanks @arberx! - BREAKING: Dropped support forrpcUrl
in favor oftransport
inponder.config.ts
network configuration.The new
transport
field accepts a viem transport instead of an RPC url. This makes it possible to use transports other than HTTP, such as WebSockets and Fallback transports.Prior to this update, Ponder used an HTTP transport internally. To upgrade with no change in behavior:
+ import { http } from "viem"; export const config = { networks: [ { name: "mainnet", chainId: 1, - rpcUrl: "https://eth-mainnet.g.alchemy.com/v2/...", + transport: http("https://eth-mainnet.g.alchemy.com/v2/..."), }, ], contracts: [ { name: "BaseRegistrar", network: "mainnet", abi: "./abis/BaseRegistrar.json", address: "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85", startBlock: 9380410, }, ], };
[email protected]
[email protected]
@ponder/[email protected]
[email protected]
[email protected]
@ponder/[email protected]
Patch Changes
- #362
790946d
Thanks @kyscott18! - Fixed a bug where passing too many entities to createMany() fails.
[email protected]
[email protected]
@ponder/[email protected]
Patch Changes
-
#350
fbf47ec
Thanks @0xOlias! - Removed support for Node 16. -
#360
9b5e374
Thanks @bankisan! - Added GraphQL endpoint/graphql
. The new endpoint will return an error until historical indexing has completed. This follows a similar behavior to the healthcheck (/health
) endpoint. Serving GraphQL requests at the root/
endpoint is being deprecated and will be removed in a future breaking release. We recommend switching API consumers to use the new endpoint at/graphql
.