Skip to content

Commit ce0e794

Browse files
committed
feat: added docs for plugin-nft-generation
1 parent e185e6a commit ce0e794

File tree

1 file changed

+173
-0
lines changed

1 file changed

+173
-0
lines changed
+173
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
### NFT Collection Generation Plugin
2+
A plugin for handling NFT collection generation, NFT creation, anNFT Collection Generation Plugin
3+
A plugin for handling NFT collection generation, NFT creation, and verification on the Solana blockchain.
4+
5+
## Handlers
6+
### createCollection
7+
The createCollection handler generates an NFT collection logo, uploads it to AWS S3, and creates a Solana blockchain collection.
8+
9+
#### Usage
10+
```typescript
11+
import { createCollection } from "./handlers/createCollection.ts";
12+
13+
const result = await createCollection({
14+
runtime: runtimeInstance, // An instance of IAgentRuntime
15+
collectionName: "MyCollection", // The name of the collection
16+
fee: 0.01, // (Optional) Fee for transactions
17+
});
18+
19+
console.log("Collection created:", result);
20+
```
21+
#### Features
22+
Image Generation: Automatically generates a collection logo based on the provided name and theme.
23+
AWS S3 Integration: Uploads the generated logo and metadata to AWS S3.
24+
Solana Blockchain: Creates a collection with the generated logo and metadata on the Solana blockchain.
25+
### createNFT
26+
The createNFT handler generates individual NFTs for a collection. It includes metadata creation and uploads the NFT information to AWS S3.
27+
28+
#### Usage
29+
```typescript
30+
import { createNFT } from "./handlers/createNFT.ts";
31+
32+
const nftResult = await createNFT({
33+
runtime: runtimeInstance,
34+
collectionName: "MyCollection",
35+
collectionAddress: "collectionAddress123",
36+
collectionAdminPublicKey: "adminPublicKey123",
37+
collectionFee: 0.01,
38+
tokenId: 1,
39+
});
40+
41+
console.log("NFT created:", nftResult);
42+
```
43+
44+
### verifyNFT
45+
The verifyNFT handler verifies an NFT against its collection using the Solana blockchain.
46+
47+
#### Usage
48+
```typescript
49+
import { verifyNFT } from "./handlers/verifyNFT.ts";
50+
51+
const verificationResult = await verifyNFT({
52+
runtime: runtimeInstance,
53+
collectionAddress: "collectionAddress123",
54+
NFTAddress: "NFTAddress123",
55+
});
56+
57+
console.log("NFT verified:", verificationResult);
58+
````
59+
---
60+
61+
### Example Workflow
62+
The plugin provides a streamlined process for generating and verifying NFT collections:
63+
64+
```typescript
65+
import { createCollection, createNFT, verifyNFT } from "./handlers";
66+
67+
const runtime = initializeRuntime(); // Replace with actual IAgentRuntime initialization
68+
69+
(async () => {
70+
// Step 1: Create Collection
71+
const collectionResult = await createCollection({
72+
runtime,
73+
collectionName: "MyUniqueCollection",
74+
});
75+
76+
console.log("Collection created:", collectionResult);
77+
78+
// Step 2: Create an NFT in the Collection
79+
const nftResult = await createNFT({
80+
runtime,
81+
collectionName: "MyUniqueCollection",
82+
collectionAddress: collectionResult.address,
83+
collectionAdminPublicKey: collectionResult.collectionInfo.adminPublicKey,
84+
collectionFee: 0.01,
85+
tokenId: 1,
86+
});
87+
88+
console.log("NFT created:", nftResult);
89+
90+
// Step 3: Verify the NFT
91+
const verificationResult = await verifyNFT({
92+
runtime,
93+
collectionAddress: collectionResult.address,
94+
NFTAddress: nftResult.address,
95+
});
96+
97+
console.log("NFT verified:", verificationResult);
98+
})();
99+
```
100+
101+
### Configuration
102+
103+
#### Environment Variables
104+
```
105+
Ensure the following environment variables are set for proper functionality:
106+
107+
Variable Name Description
108+
AWS_ACCESS_KEY_ID AWS access key for S3 uploads
109+
AWS_SECRET_ACCESS_KEY AWS secret key for S3 uploads
110+
AWS_REGION AWS region where S3 is located
111+
AWS_S3_BUCKET Name of the AWS S3 bucket
112+
SOLANA_PUBLIC_KEY Public key for Solana blockchain
113+
SOLANA_PRIVATE_KEY Private key for Solana blockchain
114+
SOLANA_ADMIN_PUBLIC_KEY Admin public key for Solana operations
115+
SOLANA_ADMIN_PRIVATE_KEY Admin private key for Solana operations
116+
```
117+
#### Example Prompts
118+
Here are some examples of user prompts to trigger NFT collection generation:
119+
120+
"Generate a collection named MyCollection."
121+
"Create a new NFT collection."
122+
"Compile an NFT collection for me."
123+
"Build a sci-fi themed collection."
124+
125+
126+
#### Local Testing with TEE Simulator
127+
To test locally using a Trusted Execution Environment (TEE) simulator, follow these steps:
128+
129+
Pull the simulator Docker image:
130+
``` bash
131+
docker pull phalanetwork/tappd-simulator:latest
132+
```
133+
Run the simulator:
134+
135+
``` bash
136+
docker run --rm -p 8090:8090 phalanetwork/tappd-simulator:latest
137+
```
138+
Update your environment variable for the simulator:
139+
140+
```env
141+
DSTACK_SIMULATOR_ENDPOINT="http://localhost:8090"
142+
```
143+
144+
#### Dependencies
145+
This plugin relies on the following services and libraries:
146+
147+
[@ai16z/plugin-node]
148+
[@ai16z/eliza]
149+
[@ai16z/plugin-image-generation]
150+
[@solana/web3.js]
151+
### Action Configuration
152+
#### GENERATE_COLLECTION
153+
The action for generating NFT collections is configured with the following parameters:
154+
155+
```typescript
156+
const nftCollectionGeneration: Action = {
157+
name: "GENERATE_COLLECTION",
158+
description: "Generate an NFT collection for the message",
159+
handler: async (runtime, message, state, options, callback) => {
160+
// Implementation
161+
},
162+
examples: [
163+
{
164+
user: "{{user1}}",
165+
content: { text: "Generate a collection named Galaxy." },
166+
},
167+
{
168+
agent: "{{agentName}}",
169+
content: { text: "The collection Galaxy has been successfully created." },
170+
},
171+
],
172+
};
173+
```

0 commit comments

Comments
 (0)