We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 457b378 commit fffd181Copy full SHA for fffd181
agent/src/index.ts
@@ -102,7 +102,7 @@ import net from "net";
102
import path from "path";
103
import { fileURLToPath } from "url";
104
import yargs from "yargs";
105
-import {dominosPlugin} from "@elizaos/plugin-dominos";
+import { createNFTCollectionsPlugin } from "@ai16z/plugin-nft-collections";
106
107
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
108
const __dirname = path.dirname(__filename); // get the name of the directory
@@ -849,6 +849,9 @@ export async function createAgent(
849
getSecret(character, "QUAI_PRIVATE_KEY")
850
? quaiPlugin
851
: null,
852
+ getSecret(character, "RESERVOIR_API_KEY")
853
+ ? createNFTCollectionsPlugin()
854
+ : null,
855
].filter(Boolean),
856
providers: [],
857
actions: [],
0 commit comments