nara-sdk 1.0.31 → 1.0.32
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/index.ts +10 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -102,6 +102,16 @@ export {
|
|
|
102
102
|
type AgentRegistryOptions,
|
|
103
103
|
} from "./src/agent_registry";
|
|
104
104
|
|
|
105
|
+
// Export IDLs and types
|
|
106
|
+
export { default as NaraQuestIDL } from "./src/idls/nara_quest.json";
|
|
107
|
+
export { default as NaraSkillsHubIDL } from "./src/idls/nara_skills_hub.json";
|
|
108
|
+
export { default as NaraZkIDL } from "./src/idls/nara_zk.json";
|
|
109
|
+
export { default as NaraAgentRegistryIDL } from "./src/idls/nara_agent_registry.json";
|
|
110
|
+
export type { NaraQuest } from "./src/idls/nara_quest";
|
|
111
|
+
export type { NaraSkillsHub } from "./src/idls/nara_skills_hub";
|
|
112
|
+
export type { NaraZk } from "./src/idls/nara_zk";
|
|
113
|
+
export type { NaraAgentRegistry } from "./src/idls/nara_agent_registry";
|
|
114
|
+
|
|
105
115
|
// Re-export commonly used types from dependencies
|
|
106
116
|
export { PublicKey, Keypair, Transaction } from "@solana/web3.js";
|
|
107
117
|
export { default as BN } from "bn.js";
|