Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 23 Nov 18:10
· 50 commits to main since this release
4e393d2

BREAKING CHANGE

  • 86a8f9f: Added support for validating V3 frames

validateFramesPost is now async to support fetching the inbox ID of an account address when validating V3 frames. It also accepts a second parameter to specify the environment to use when looking up inbox IDs. In production, this parameter must be set to production.

import { XmtpValidator, validateFramesPost } from "@xmtp/frames-validator";

const validator = new XmtpValidator();
// environment must be set in production (default: "dev")
const validation = await validator(payload, "production");

// now async, also requires environment in production (default: "dev")
const validation = await validateFramesPost(payload, "production");