@brainai/satp-client 2.0.2 → 2.0.3

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.
package/README.md CHANGED
@@ -107,7 +107,7 @@ const tx = await sdk.buildCreateIdentity(creatorPubkey, 'myAgent', {
107
107
  | `attestations_v3` | `6Xd1dAQJPvQRJ4Ntr6LtPTjDjPUZ8nfnmYLZaZ2DtrdD` | Third-party attestations & proofs |
108
108
  | `reputation_v3` | `2Lz7KzMvKdrGeAuS8WPHu7jK2yScrnKVgacpYVEuDjkJ` | Weighted reputation scoring (CPI → identity) |
109
109
  | `validation_v3` | `6rYRiCYidJYV7QvKrzKGgNu4oMh6BAvynked69R7xMbV` | Validation level computation (CPI → identity) |
110
- | `escrow_v3` | `HXCUWKR2NvRcZ7rNAJHwPcH6QAAWaLR4bRFbfyuDND6C` | SOL escrow for agent jobs |
110
+ | `escrow_v3` | `B1Se8SPx7GLUisa4LYeXY1tDZy5TviJrsV2yMLgqUXmg` | SOL escrow for agent jobs |
111
111
 
112
112
  ## API Reference
113
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brainai/satp-client",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "SATP client SDK surface prepared for release-candidate review; publish only after the release packet passes.",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -65,7 +65,6 @@
65
65
  }
66
66
  },
67
67
  "publishConfig": {
68
- "tag": "rc",
69
68
  "access": "public"
70
69
  }
71
70
  }
package/src/v3-pda.js CHANGED
@@ -11,7 +11,7 @@ const V3_DEVNET_PROGRAM_IDS = {
11
11
  REPUTATION: new PublicKey('2Lz7KzMvKdrGeAuS8WPHu7jK2yScrnKVgacpYVEuDjkJ'),
12
12
  ATTESTATIONS: new PublicKey('6Xd1dAQJPvQRJ4Ntr6LtPTjDjPUZ8nfnmYLZaZ2DtrdD'),
13
13
  VALIDATION: new PublicKey('6rYRiCYidJYV7QvKrzKGgNu4oMh6BAvynked69R7xMbV'),
14
- ESCROW: new PublicKey('HXCUWKR2NvRcZ7rNAJHwPcH6QAAWaLR4bRFbfyuDND6C'),
14
+ ESCROW: new PublicKey('B1Se8SPx7GLUisa4LYeXY1tDZy5TviJrsV2yMLgqUXmg'),
15
15
  };
16
16
 
17
17
  const V3_MAINNET_PROGRAM_IDS = null;