Skip to content

Choose a tag to compare

@joaquim-verges joaquim-verges released this 12 Nov 20:57
· 18 commits to main since this release
80d5595

Minor Changes

Patch Changes

  • #8402 e26d81c Thanks @joaquim-verges! - Update useAuthToken() to find the auth token for any connected wallet instead of just the active one

  • #8395 a54c1ab Thanks @MananTank! - Add verify parameter to Bridge.Webhook.parse function to validate the payload

    Example

    import { Bridge } from "thirdweb";
    
    const payload = await Bridge.Webhook.parse(
      body,
      headers,
      process.env.WEBHOOK_SECRET,
      tolerance,
      {
        // throw an error if the `payload` doesn't have this receiver address set
        receiverAddress: "0x1234567890123456789012345678901234567890",
      },
    );