Skip to content

Releases: ponder-sh/ponder

@ponder/[email protected]

13 Oct 06:01
1654494
Compare
Choose a tag to compare

Patch Changes

  • #383 f3b0be6 Thanks @o-az! - Fixed a bug introduced in 0.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 for rpcUrl in favor of transport in ponder.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]

06 Oct 07:27
9e6c4ca
Compare
Choose a tag to compare

[email protected]

06 Oct 07:27
9e6c4ca
Compare
Choose a tag to compare

@ponder/[email protected]

06 Oct 07:27
9e6c4ca
Compare
Choose a tag to compare

Patch Changes

[email protected]

30 Sep 19:23
360c278
Compare
Choose a tag to compare

[email protected]

30 Sep 19:23
360c278
Compare
Choose a tag to compare

@ponder/[email protected]

30 Sep 19:23
360c278
Compare
Choose a tag to compare

Patch Changes

[email protected]

28 Sep 23:22
087b68e
Compare
Choose a tag to compare

[email protected]

28 Sep 23:22
087b68e
Compare
Choose a tag to compare

Patch Changes

@ponder/[email protected]

28 Sep 23:22
087b68e
Compare
Choose a tag to compare

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.