@oobe-protocol-labs/synapse-sap-sdk 0.1.0 → 0.3.0
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 +1 -1
- package/dist/cjs/constants/programs.js +1 -1
- package/dist/cjs/idl/synapse_agent_sap.json +1 -1
- package/dist/esm/constants/programs.js +1 -1
- package/dist/esm/idl/synapse_agent_sap.json +1 -1
- package/dist/types/constants/programs.d.ts +1 -1
- package/package.json +1 -1
- package/src/constants/programs.ts +1 -1
- package/src/idl/synapse_agent_sap.json +1 -1
- package/src/postgres/schema.sql +1 -1
package/README.md
CHANGED
|
@@ -748,7 +748,7 @@ import {
|
|
|
748
748
|
|
|
749
749
|
```typescript
|
|
750
750
|
import {
|
|
751
|
-
SAP_PROGRAM_ADDRESS, // "
|
|
751
|
+
SAP_PROGRAM_ADDRESS, // "SAPpUhsWLJG1FfkGRcXagEDMrMsWGjbky7AyhGpFETZ"
|
|
752
752
|
SAP_PROGRAM_ID, // PublicKey (= devnet for now)
|
|
753
753
|
MAINNET_SAP_PROGRAM_ID, // PublicKey
|
|
754
754
|
DEVNET_SAP_PROGRAM_ID, // PublicKey
|
|
@@ -27,7 +27,7 @@ const web3_js_1 = require("@solana/web3.js");
|
|
|
27
27
|
* @since v0.1.0
|
|
28
28
|
* @see {@link SAP_PROGRAM_ID}
|
|
29
29
|
*/
|
|
30
|
-
exports.SAP_PROGRAM_ADDRESS = "
|
|
30
|
+
exports.SAP_PROGRAM_ADDRESS = "SAPpUhsWLJG1FfkGRcXagEDMrMsWGjbky7AyhGpFETZ";
|
|
31
31
|
// ═══════════════════════════════════════════════════════════════════
|
|
32
32
|
// Per-Network PublicKeys
|
|
33
33
|
// ═══════════════════════════════════════════════════════════════════
|
|
@@ -24,7 +24,7 @@ import { PublicKey } from "@solana/web3.js";
|
|
|
24
24
|
* @since v0.1.0
|
|
25
25
|
* @see {@link SAP_PROGRAM_ID}
|
|
26
26
|
*/
|
|
27
|
-
export const SAP_PROGRAM_ADDRESS = "
|
|
27
|
+
export const SAP_PROGRAM_ADDRESS = "SAPpUhsWLJG1FfkGRcXagEDMrMsWGjbky7AyhGpFETZ";
|
|
28
28
|
// ═══════════════════════════════════════════════════════════════════
|
|
29
29
|
// Per-Network PublicKeys
|
|
30
30
|
// ═══════════════════════════════════════════════════════════════════
|
|
@@ -21,7 +21,7 @@ import { PublicKey } from "@solana/web3.js";
|
|
|
21
21
|
* @since v0.1.0
|
|
22
22
|
* @see {@link SAP_PROGRAM_ID}
|
|
23
23
|
*/
|
|
24
|
-
export declare const SAP_PROGRAM_ADDRESS = "
|
|
24
|
+
export declare const SAP_PROGRAM_ADDRESS = "SAPpUhsWLJG1FfkGRcXagEDMrMsWGjbky7AyhGpFETZ";
|
|
25
25
|
/**
|
|
26
26
|
* SAP v2 mainnet-beta program ID.
|
|
27
27
|
*
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@ import { PublicKey } from "@solana/web3.js";
|
|
|
28
28
|
* @see {@link SAP_PROGRAM_ID}
|
|
29
29
|
*/
|
|
30
30
|
export const SAP_PROGRAM_ADDRESS =
|
|
31
|
-
"
|
|
31
|
+
"SAPpUhsWLJG1FfkGRcXagEDMrMsWGjbky7AyhGpFETZ";
|
|
32
32
|
|
|
33
33
|
// ═══════════════════════════════════════════════════════════════════
|
|
34
34
|
// Per-Network PublicKeys
|
package/src/postgres/schema.sql
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
-- SAP v2 — PostgreSQL Schema
|
|
3
3
|
-- Mirrors all 22 on-chain account types as relational tables.
|
|
4
4
|
--
|
|
5
|
-
-- Program ID:
|
|
5
|
+
-- Program ID: SAPpUhsWLJG1FfkGRcXagEDMrMsWGjbky7AyhGpFETZ
|
|
6
6
|
-- Generated from: synapse_agent_sap IDL (72 instructions, 22 accounts)
|
|
7
7
|
--
|
|
8
8
|
-- Usage:
|