@x1scroll/agent-sdk 1.1.1 → 1.1.2

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/package.json +1 -1
  2. package/src/index.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x1scroll/agent-sdk",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Agent identity and on-chain memory protocol for X1 blockchain",
5
5
  "license": "BSL-1.1",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -4,8 +4,8 @@
4
4
  * @x1scroll/agent-sdk
5
5
  * Agent Identity Protocol — persistent agent identity and on-chain memory for X1 blockchain.
6
6
  *
7
- * Program ID: 52EW3sn2Tkq6EMnp86JWUzXrNzrFujpdEgovsjwapbAM (immutable)
8
- * Treasury: HYP2VdVk2QNGKMBfWGFZpaFqMoqQkB7Vp5F12eSxCxtf (immutable)
7
+ * Program ID: ECgaMEwH4KLSz3awDo1vz84mSrx5n6h1ZCrbmunB5UxB (immutable)
8
+ * Treasury: GmvrL1ymC9ENuQCUqymC9robGa9t9L59AbFiwhDDd4Ld (immutable)
9
9
  * Network: X1 Mainnet
10
10
  * License: BSL-1.1 — https://x1scroll.io/license
11
11
  *
@@ -43,13 +43,13 @@ const FALLBACK_VALIDATORS = [
43
43
  * On-chain program address. Immutable — this SDK only talks to this program.
44
44
  * Forks that swap this address are out of the protocol.
45
45
  */
46
- const PROGRAM_ID = new PublicKey('52EW3sn2Tkq6EMnp86JWUzXrNzrFujpdEgovsjwapbAM');
46
+ const PROGRAM_ID = new PublicKey('ECgaMEwH4KLSz3awDo1vz84mSrx5n6h1ZCrbmunB5UxB');
47
47
 
48
48
  /**
49
49
  * Fee collector wallet. Built into every instruction on-chain.
50
50
  * Developers don't configure fees — the program handles it automatically.
51
51
  */
52
- const TREASURY = new PublicKey('HYP2VdVk2QNGKMBfWGFZpaFqMoqQkB7Vp5F12eSxCxtf');
52
+ const TREASURY = new PublicKey('GmvrL1ymC9ENuQCUqymC9robGa9t9L59AbFiwhDDd4Ld');
53
53
 
54
54
  const DEFAULT_RPC_URL = 'https://rpc.x1.xyz';
55
55