@arc402/sdk 0.5.1 → 0.6.1

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/dist/types.js CHANGED
@@ -16,11 +16,11 @@ exports.NETWORKS = {
16
16
  chainId: 8453,
17
17
  rpc: "https://mainnet.base.org",
18
18
  contracts: {
19
- policyEngine: "0xAA5Ef3489C929bFB3BFf5D5FE15aa62d3763c847",
19
+ policyEngine: "0x9449B15268bE7042C0b473F3f711a41A29220866",
20
20
  trustRegistry: "0x22366D6dabb03062Bc0a5E893EfDff15D8E329b1", // TrustRegistryV3 — v2
21
- intentAttestation: "0x7ad8db6C5f394542E8e9658F86C85cC99Cf6D460",
21
+ intentAttestation: "0x66585C2F96cAe05EA360F6dBF76bA092A7B87669",
22
22
  settlementCoordinator: "0xd52d8Be9728976E0D70C89db9F8ACeb5B5e97cA2", // SettlementCoordinatorV2 ← active
23
- walletFactory: "0xcB52B5d746eEc05e141039E92e3dBefeAe496051", // WalletFactory v5 active (redeployed 2026-03-19, optimized bytecode, passkey P256)
23
+ walletFactory: "0xD067a4bD3F32aB501A71756161C76309d8088915", // WalletFactoryV6 deployed 2026-03-24
24
24
  agentRegistry: "0xD5c2851B00090c92Ba7F4723FB548bb30C9B6865", // AgentRegistry ← discovery directory
25
25
  serviceAgreement: "0xC98B402CAB9156da68A87a69E3B4bf167A3CCcF6",
26
26
  reputationOracle: "0x359F76a54F9A345546E430e4d6665A7dC9DaECd4",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arc402/sdk",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "description": "ARC-402 typed TypeScript SDK for discovery, negotiation, trust, and governed settlement",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -82,11 +82,11 @@ export const NETWORKS: Record<string, NetworkConfig> = {
82
82
  chainId: 8453,
83
83
  rpc: "https://mainnet.base.org",
84
84
  contracts: {
85
- policyEngine: "0xAA5Ef3489C929bFB3BFf5D5FE15aa62d3763c847",
85
+ policyEngine: "0x9449B15268bE7042C0b473F3f711a41A29220866",
86
86
  trustRegistry: "0x22366D6dabb03062Bc0a5E893EfDff15D8E329b1", // TrustRegistryV3 — v2
87
- intentAttestation: "0x7ad8db6C5f394542E8e9658F86C85cC99Cf6D460",
87
+ intentAttestation: "0x66585C2F96cAe05EA360F6dBF76bA092A7B87669",
88
88
  settlementCoordinator: "0xd52d8Be9728976E0D70C89db9F8ACeb5B5e97cA2", // SettlementCoordinatorV2 ← active
89
- walletFactory: "0xcB52B5d746eEc05e141039E92e3dBefeAe496051", // WalletFactory v5 active (redeployed 2026-03-19, optimized bytecode, passkey P256)
89
+ walletFactory: "0xD067a4bD3F32aB501A71756161C76309d8088915", // WalletFactoryV6 deployed 2026-03-24
90
90
  agentRegistry: "0xD5c2851B00090c92Ba7F4723FB548bb30C9B6865", // AgentRegistry ← discovery directory
91
91
  serviceAgreement: "0xC98B402CAB9156da68A87a69E3B4bf167A3CCcF6",
92
92
  reputationOracle: "0x359F76a54F9A345546E430e4d6665A7dC9DaECd4",