solana-age-verify-sdk 2.0.0-beta.12 → 2.0.0-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/verify.js +2 -1
  2. package/package.json +1 -1
package/dist/verify.js CHANGED
@@ -716,7 +716,8 @@ export async function verifyHost18Plus(options) {
716
716
  }
717
717
  let cleanMemoId;
718
718
  try {
719
- cleanMemoId = new PublicKey('MemoSq4gqABAXib96qFbncnscymPme7yS4AtGf4Vb7');
719
+ // Switch to Memo Program v1 - v2 ID (MemoSq...) caused validation errors in some envs
720
+ cleanMemoId = new PublicKey('Memo1UhkJRfHyvLMcVucJwxXeuD728EqVDDwQDxFMNo');
720
721
  }
721
722
  catch (e) {
722
723
  throw new Error(`Invalid Memo Program ID: ${e.message}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solana-age-verify-sdk",
3
- "version": "2.0.0-beta.12",
3
+ "version": "2.0.0-beta.13",
4
4
  "type": "module",
5
5
  "description": "Solana Age Verify is a premium, client-side SDK for privacy-preserving age verification and liveness detection. It generates a deterministic Face Hash linked to a wallet without storing facial data.",
6
6
  "license": "MIT",