create-message-kit 1.2.13 → 1.2.15
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +15 -15
- package/package.json +1 -1
- package/templates/coinbase-agent/.cursorrules +290 -0
- package/templates/coinbase-agent/.env.example +4 -0
- package/templates/coinbase-agent/.yarnrc.yml +9 -0
- package/templates/coinbase-agent/package.json +22 -0
- package/templates/coinbase-agent/src/index.ts +31 -0
- package/templates/coinbase-agent/src/plugins/learnweb3.ts +96 -0
- package/templates/coinbase-agent/src/plugins/redis.ts +15 -0
- package/templates/coinbase-agent/src/prompt.ts +64 -0
- package/templates/coinbase-agent/src/skills/drip.ts +83 -0
- package/templates/coinbase-agent/src/skills/mint.ts +99 -0
- package/templates/coinbase-agent/src/skills/pay.ts +35 -0
- package/templates/coinbase-agent/src/skills/swap.ts +52 -0
- package/templates/ens/.env.example +1 -0
- package/templates/ens/.yarnrc.yml +5 -0
- package/templates/ens/src/index.ts +1 -1
- package/templates/ens/src/prompt.ts +1 -14
- package/templates/faucet/.cursorrules +290 -0
- package/templates/faucet/.env.example +5 -0
- package/templates/faucet/.yarnrc.yml +9 -0
- package/templates/faucet/package.json +22 -0
- package/templates/faucet/src/index.ts +39 -0
- package/templates/faucet/src/plugins/learnweb3.ts +96 -0
- package/templates/faucet/src/plugins/redis.ts +15 -0
- package/templates/faucet/src/prompt.ts +11 -0
- package/templates/faucet/src/skills/faucet.ts +140 -0
- package/templates/gated-group/.cursorrules +290 -0
- package/templates/gated-group/.env.example +3 -0
- package/templates/gated-group/.yarnrc.yml +9 -0
- package/templates/gated-group/package.json +23 -0
- package/templates/gated-group/src/index.ts +17 -0
- package/templates/gated-group/src/plugins/alchemy.ts +27 -0
- package/templates/gated-group/src/plugins/xmtp.ts +137 -0
- package/templates/gated-group/src/prompt.ts +11 -0
- package/templates/gated-group/src/skills/gated.ts +88 -0
- package/templates/gm/.cursorrules +290 -0
- package/templates/gm/.env.example +2 -0
- package/templates/gm/.yarnrc.yml +9 -0
- package/templates/gm/package.json +20 -0
- package/templates/gm/src/index.ts +8 -0
- package/templates/playground/.cursorrules +290 -0
- package/templates/playground/.env.example +6 -0
- package/templates/playground/.yarnrc.yml +9 -0
- package/templates/playground/package.json +26 -0
- package/templates/playground/src/index.ts +40 -0
- package/templates/playground/src/plugins/alchemy.ts +27 -0
- package/templates/playground/src/plugins/minilog.ts +26 -0
- package/templates/playground/src/plugins/usdc.ts +99 -0
- package/templates/playground/src/plugins/xmtp.ts +137 -0
- package/templates/playground/src/prompt.ts +11 -0
- package/templates/playground/src/skills/broadcast.ts +39 -0
- package/templates/playground/src/skills/cash.ts +122 -0
- package/templates/playground/src/skills/cryptoPrice.ts +63 -0
- package/templates/playground/src/skills/dalle.ts +61 -0
- package/templates/playground/src/skills/gated.ts +88 -0
- package/templates/playground/src/skills/search.ts +159 -0
- package/templates/playground/src/skills/todo.ts +79 -0
- package/templates/playground/src/skills/token.ts +57 -0
- package/templates/playground/src/skills/web.ts +83 -0
- package/templates/playground/src/skills/wordle.ts +96 -0
- package/templates/simple/.env.example +1 -0
- package/templates/simple/.yarnrc.yml +5 -0
- package/templates/simple/src/index.ts +1 -1
- package/templates/simple/src/prompt.ts +2 -0
- package/templates/thegeneralstore/.cursorrules +290 -0
- package/templates/thegeneralstore/.env.example +9 -0
- package/templates/thegeneralstore/.yarnrc.yml +9 -0
- package/templates/thegeneralstore/package.json +24 -0
- package/templates/thegeneralstore/src/data/db.json +812 -0
- package/templates/thegeneralstore/src/index.ts +37 -0
- package/templates/thegeneralstore/src/plugins/learnweb3.ts +96 -0
- package/templates/thegeneralstore/src/plugins/lowdb.ts +11 -0
- package/templates/thegeneralstore/src/plugins/notion.ts +89 -0
- package/templates/thegeneralstore/src/plugins/redis.ts +15 -0
- package/templates/thegeneralstore/src/prompt.md +51 -0
- package/templates/thegeneralstore/src/prompt.ts +3 -0
- package/templates/thegeneralstore/src/skills/faucet.ts +114 -0
- package/templates/thegeneralstore/src/skills/notion.ts +17 -0
- package/templates/thegeneralstore/src/skills/poap.ts +48 -0
- package/templates/thegeneralstore/src/skills.ts +37 -0
- package/templates/toss/.cursorrules +290 -0
- package/templates/toss/.env.example +7 -0
- package/templates/toss/.yarnrc.yml +9 -0
- package/templates/toss/package.json +21 -0
- package/templates/toss/src/index.ts +33 -0
- package/templates/toss/src/plugins/helpers.ts +185 -0
- package/templates/toss/src/plugins/redis.ts +78 -0
- package/templates/toss/src/prompt.ts +54 -0
- package/templates/toss/src/skills/toss.ts +489 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
import { createClient } from "@redis/client";
|
2
|
+
import { RedisClientType } from "@redis/client";
|
3
|
+
|
4
|
+
export const getRedisClient = async () => {
|
5
|
+
const client = createClient({
|
6
|
+
url: process.env.REDIS_CONNECTION_STRING,
|
7
|
+
});
|
8
|
+
|
9
|
+
client.on("error", (err) => {
|
10
|
+
console.error("Redis client error:", err);
|
11
|
+
});
|
12
|
+
|
13
|
+
await client.connect();
|
14
|
+
return client as RedisClientType;
|
15
|
+
};
|
@@ -0,0 +1,140 @@
|
|
1
|
+
import { XMTPContext, clearMemory, Skill } from "@xmtp/message-kit";
|
2
|
+
import { getRedisClient } from "../plugins/redis.js";
|
3
|
+
import {
|
4
|
+
FIVE_MINUTES,
|
5
|
+
LearnWeb3Client,
|
6
|
+
Network,
|
7
|
+
} from "../plugins/learnweb3.js";
|
8
|
+
|
9
|
+
export const faucet: Skill[] = [
|
10
|
+
{
|
11
|
+
skill: "faucet",
|
12
|
+
handler: handleFaucet,
|
13
|
+
examples: [
|
14
|
+
"/faucet 0x1234567890123456789012345678901234567890 sepolia",
|
15
|
+
"/faucet 0x1234567890123456789012345678901234567890 arbitrum_sepolia",
|
16
|
+
"/faucet 0x1234567890123456789012345678901234567890 base_sepolia",
|
17
|
+
],
|
18
|
+
description: "Get some testnet tokens.",
|
19
|
+
params: {
|
20
|
+
address: {
|
21
|
+
type: "string",
|
22
|
+
},
|
23
|
+
network: {
|
24
|
+
type: "string",
|
25
|
+
},
|
26
|
+
},
|
27
|
+
},
|
28
|
+
{
|
29
|
+
skill: "/networks",
|
30
|
+
handler: handleFaucet,
|
31
|
+
examples: ["/networks"],
|
32
|
+
description: "Get the list of supported networks.",
|
33
|
+
},
|
34
|
+
];
|
35
|
+
|
36
|
+
export async function handleFaucet(context: XMTPContext) {
|
37
|
+
const { message } = context;
|
38
|
+
const redisClient = await getRedisClient();
|
39
|
+
const {
|
40
|
+
content: { skill, params },
|
41
|
+
sender,
|
42
|
+
} = message;
|
43
|
+
|
44
|
+
// Initialize LearnWeb3Client
|
45
|
+
const learnWeb3Client = new LearnWeb3Client();
|
46
|
+
|
47
|
+
// Fetch supported networks from Redis cache or API
|
48
|
+
let supportedNetworks: Network[];
|
49
|
+
const cachedSupportedNetworksData =
|
50
|
+
await redisClient.get("supported-networks");
|
51
|
+
supportedNetworks = JSON.parse(
|
52
|
+
cachedSupportedNetworksData!,
|
53
|
+
).supportedNetworks;
|
54
|
+
|
55
|
+
if (skill === "networks") {
|
56
|
+
if (
|
57
|
+
!cachedSupportedNetworksData ||
|
58
|
+
Date.now() >
|
59
|
+
parseInt(JSON.parse(cachedSupportedNetworksData).lastSyncedAt) +
|
60
|
+
FIVE_MINUTES
|
61
|
+
) {
|
62
|
+
console.log("Cleared cache");
|
63
|
+
const updatedSupportedNetworksData = await learnWeb3Client.getNetworks();
|
64
|
+
await redisClient.set(
|
65
|
+
"supported-networks",
|
66
|
+
JSON.stringify({
|
67
|
+
lastSyncedAt: Date.now(),
|
68
|
+
supportedNetworks: updatedSupportedNetworksData,
|
69
|
+
}),
|
70
|
+
);
|
71
|
+
supportedNetworks = updatedSupportedNetworksData;
|
72
|
+
} else {
|
73
|
+
supportedNetworks = JSON.parse(
|
74
|
+
cachedSupportedNetworksData!,
|
75
|
+
).supportedNetworks;
|
76
|
+
}
|
77
|
+
|
78
|
+
supportedNetworks = supportedNetworks.filter(
|
79
|
+
(n) =>
|
80
|
+
!n.networkId.toLowerCase().includes("starknet") &&
|
81
|
+
!n.networkId.toLowerCase().includes("fuel") &&
|
82
|
+
!n.networkId.toLowerCase().includes("mode"),
|
83
|
+
);
|
84
|
+
|
85
|
+
const networkList = supportedNetworks.map((n, index) => {
|
86
|
+
return `${index + 1}. ${n.networkId
|
87
|
+
.replace(/_/g, " ")
|
88
|
+
.replace(/\b\w/g, (l) => l.toUpperCase())}`;
|
89
|
+
});
|
90
|
+
|
91
|
+
return {
|
92
|
+
message: `Available networks:\n\n${networkList.join("\n")}`,
|
93
|
+
code: 200,
|
94
|
+
};
|
95
|
+
} else if (skill === "faucet") {
|
96
|
+
const { network } = params;
|
97
|
+
const selectedNetwork = supportedNetworks.find(
|
98
|
+
(n) => n.networkId === network,
|
99
|
+
);
|
100
|
+
|
101
|
+
if (!selectedNetwork) {
|
102
|
+
await context.send("Invalid network. Please select a valid option.");
|
103
|
+
return;
|
104
|
+
}
|
105
|
+
|
106
|
+
await context.send(
|
107
|
+
"Your testnet tokens are being processed. Please wait a moment for the transaction to process.",
|
108
|
+
);
|
109
|
+
|
110
|
+
const result = await learnWeb3Client.dripTokens(
|
111
|
+
selectedNetwork.networkId,
|
112
|
+
sender.address,
|
113
|
+
);
|
114
|
+
|
115
|
+
if (!result.ok) {
|
116
|
+
await context.send(
|
117
|
+
`❌ Sorry, there was an error processing your request:\n\n"${result.error!}"`,
|
118
|
+
);
|
119
|
+
// Clear any in-memory cache or state related to the prompt
|
120
|
+
clearMemory();
|
121
|
+
return;
|
122
|
+
}
|
123
|
+
|
124
|
+
await context.send("Here's your transaction receipt:");
|
125
|
+
await context.send(
|
126
|
+
`${process.env.FRAME_BASE_URL}?txLink=${result.value}&networkLogo=${
|
127
|
+
selectedNetwork?.networkLogo
|
128
|
+
}&networkName=${selectedNetwork?.networkName.replaceAll(
|
129
|
+
" ",
|
130
|
+
"-",
|
131
|
+
)}&tokenName=${selectedNetwork?.tokenName}&amount=${
|
132
|
+
selectedNetwork?.dripAmount
|
133
|
+
}`,
|
134
|
+
);
|
135
|
+
// Clear any in-memory cache or state related to the prompt
|
136
|
+
clearMemory();
|
137
|
+
} else {
|
138
|
+
await context.send("Unknown skill. Please use 'list' or 'drip'.");
|
139
|
+
}
|
140
|
+
}
|
@@ -0,0 +1,290 @@
|
|
1
|
+
# MessageKit Skill Template
|
2
|
+
|
3
|
+
## Examples
|
4
|
+
|
5
|
+
### Check if a Domain is Available
|
6
|
+
|
7
|
+
|
8
|
+
import { ensUrl } from "../index.js";
|
9
|
+
import { XMTPContext } from "@xmtp/message-kit";
|
10
|
+
import type { Skill } from "@xmtp/message-kit";
|
11
|
+
|
12
|
+
// Define Skill
|
13
|
+
export const checkDomain: Skill[] = [
|
14
|
+
{
|
15
|
+
skill: "check",
|
16
|
+
handler: handler,
|
17
|
+
examples: ["/check vitalik.eth", "/check fabri.base.eth"],
|
18
|
+
description: "Check if a domain is available.",
|
19
|
+
params: {
|
20
|
+
domain: {
|
21
|
+
type: "string",
|
22
|
+
},
|
23
|
+
},
|
24
|
+
},
|
25
|
+
];
|
26
|
+
|
27
|
+
// Handler Implementation
|
28
|
+
export async function handler(context: XMTPContext) {
|
29
|
+
const {
|
30
|
+
message: {
|
31
|
+
content: {
|
32
|
+
params: { domain },
|
33
|
+
},
|
34
|
+
},
|
35
|
+
} = context;
|
36
|
+
|
37
|
+
const data = await context.getUserInfo(domain);
|
38
|
+
|
39
|
+
if (!data?.address) {
|
40
|
+
let message = `Looks like ${domain} is available! Here you can register it: ${ensUrl}${domain} or would you like to see some cool alternatives?`;
|
41
|
+
return {
|
42
|
+
code: 200,
|
43
|
+
message,
|
44
|
+
};
|
45
|
+
} else {
|
46
|
+
let message = `Looks like ${domain} is already registered!`;
|
47
|
+
await context.executeSkill("/cool " + domain);
|
48
|
+
return {
|
49
|
+
code: 404,
|
50
|
+
message,
|
51
|
+
};
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
### Generate a payment request
|
56
|
+
|
57
|
+
|
58
|
+
import { XMTPContext } from "@xmtp/message-kit";
|
59
|
+
import type { Skill } from "@xmtp/message-kit";
|
60
|
+
|
61
|
+
// Define Skill
|
62
|
+
export const paymentRequest: Skill[] = [
|
63
|
+
{
|
64
|
+
skill: "pay",
|
65
|
+
examples: [
|
66
|
+
"/pay 10 vitalik.eth",
|
67
|
+
"/pay 1 usdc to 0xC60E6Bb79322392761BFe3081E302aEB79B30B03",
|
68
|
+
],
|
69
|
+
description:
|
70
|
+
"Send a specified amount of a cryptocurrency to a destination address. \nWhen tipping, you can assume it's 1 USDC.",
|
71
|
+
handler: handler,
|
72
|
+
params: {
|
73
|
+
amount: {
|
74
|
+
default: 10,
|
75
|
+
type: "number",
|
76
|
+
},
|
77
|
+
token: {
|
78
|
+
default: "usdc",
|
79
|
+
type: "string",
|
80
|
+
values: ["eth", "dai", "usdc", "degen"], // Accepted tokens
|
81
|
+
},
|
82
|
+
username: {
|
83
|
+
default: "",
|
84
|
+
type: "username",
|
85
|
+
},
|
86
|
+
address: {
|
87
|
+
default: "",
|
88
|
+
type: "address",
|
89
|
+
},
|
90
|
+
},
|
91
|
+
},
|
92
|
+
];
|
93
|
+
|
94
|
+
// Handler Implementation
|
95
|
+
export async function handler(context: XMTPContext) {
|
96
|
+
const {
|
97
|
+
message: {
|
98
|
+
content: {
|
99
|
+
params: { amount, token, username, address },
|
100
|
+
},
|
101
|
+
},
|
102
|
+
} = context;
|
103
|
+
let receiverAddress = address;
|
104
|
+
if (username) {
|
105
|
+
receiverAddress = (await context.getUserInfo(username))?.address;
|
106
|
+
}
|
107
|
+
if (address) {
|
108
|
+
// Prioritize address over username
|
109
|
+
receiverAddress = address;
|
110
|
+
}
|
111
|
+
|
112
|
+
await context.requestPayment(amount, token, receiverAddress);
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
## Types
|
117
|
+
|
118
|
+
import { XMTPContext } from "../plugins/xmtp.js";
|
119
|
+
import { ClientOptions, GroupMember } from "@xmtp/node-sdk";
|
120
|
+
import { ContentTypeId } from "@xmtp/content-type-primitives";
|
121
|
+
|
122
|
+
export type MessageAbstracted = {
|
123
|
+
id: string;
|
124
|
+
sent: Date;
|
125
|
+
content: {
|
126
|
+
text?: string | undefined;
|
127
|
+
reply?: string | undefined;
|
128
|
+
previousMsg?: string | undefined;
|
129
|
+
react?: string | undefined;
|
130
|
+
content?: any | undefined;
|
131
|
+
params?: any | undefined;
|
132
|
+
reference?: string | undefined;
|
133
|
+
skill?: string | undefined;
|
134
|
+
};
|
135
|
+
version: "v2" | "v3";
|
136
|
+
sender: AbstractedMember;
|
137
|
+
typeId: string;
|
138
|
+
};
|
139
|
+
export type GroupAbstracted = {
|
140
|
+
id: string;
|
141
|
+
sync: () => Promise<void>;
|
142
|
+
addMembers: (addresses: string[]) => Promise<void>;
|
143
|
+
addMembersByInboxId: (inboxIds: string[]) => Promise<void>;
|
144
|
+
send: (content: string, contentType?: ContentTypeId) => Promise<string>;
|
145
|
+
isAdmin: (inboxId: string) => boolean;
|
146
|
+
isSuperAdmin: (inboxId: string) => boolean;
|
147
|
+
admins: string[];
|
148
|
+
superAdmins: string[];
|
149
|
+
createdAt: Date;
|
150
|
+
members: GroupMember[];
|
151
|
+
};
|
152
|
+
export type SkillResponse = {
|
153
|
+
code: number;
|
154
|
+
message: string;
|
155
|
+
data?: any;
|
156
|
+
};
|
157
|
+
|
158
|
+
export type SkillHandler = (
|
159
|
+
context: XMTPContext,
|
160
|
+
) => Promise<SkillResponse | void>;
|
161
|
+
|
162
|
+
export type Handler = (context: XMTPContext) => Promise<void>;
|
163
|
+
|
164
|
+
export type RunConfig = {
|
165
|
+
// client options from XMTP client
|
166
|
+
client?: ClientOptions;
|
167
|
+
// private key to be used for the client, if not, default from env
|
168
|
+
privateKey?: string;
|
169
|
+
// if true, the init log message with messagekit logo and stuff will be hidden
|
170
|
+
experimental?: boolean;
|
171
|
+
// hide the init log message with messagekit logo and stuff
|
172
|
+
hideInitLogMessage?: boolean;
|
173
|
+
// if true, attachments will be enabled
|
174
|
+
attachments?: boolean;
|
175
|
+
// if true, member changes will be enabled, like adding members to the group
|
176
|
+
memberChange?: boolean;
|
177
|
+
// skills to be used
|
178
|
+
agent?: Agent;
|
179
|
+
// model to be used
|
180
|
+
gptModel?: string;
|
181
|
+
};
|
182
|
+
export interface SkillParamConfig {
|
183
|
+
default?: string | number | boolean;
|
184
|
+
type:
|
185
|
+
| "number"
|
186
|
+
| "string"
|
187
|
+
| "username"
|
188
|
+
| "quoted"
|
189
|
+
| "address"
|
190
|
+
| "prompt"
|
191
|
+
| "url";
|
192
|
+
plural?: boolean;
|
193
|
+
values?: string[]; // Accepted values for the parameter
|
194
|
+
}
|
195
|
+
|
196
|
+
export interface Frame {
|
197
|
+
title: string;
|
198
|
+
buttons: { content: string; action: string; target: string }[];
|
199
|
+
image: string;
|
200
|
+
}
|
201
|
+
export interface Agent {
|
202
|
+
name: string;
|
203
|
+
description: string;
|
204
|
+
tag: string;
|
205
|
+
skills: Skill[];
|
206
|
+
}
|
207
|
+
export interface Skill {
|
208
|
+
skill: string;
|
209
|
+
handler?: SkillHandler | undefined;
|
210
|
+
adminOnly?: boolean;
|
211
|
+
description: string;
|
212
|
+
examples: string[];
|
213
|
+
params: Record<string, SkillParamConfig>;
|
214
|
+
}
|
215
|
+
|
216
|
+
export interface AbstractedMember {
|
217
|
+
inboxId: string;
|
218
|
+
address: string;
|
219
|
+
accountAddresses: string[];
|
220
|
+
installationIds?: string[];
|
221
|
+
}
|
222
|
+
|
223
|
+
export type MetadataValue = string | number | boolean;
|
224
|
+
export type Metadata = Record<string, MetadataValue | MetadataValue[]>;
|
225
|
+
|
226
|
+
|
227
|
+
## Example final prompt
|
228
|
+
|
229
|
+
Your are a helpful and playful ens agent called @bot that lives inside a messaging app called Converse.
|
230
|
+
|
231
|
+
|
232
|
+
# Rules
|
233
|
+
- You can respond with multiple messages if needed. Each message should be separated by a newline character.
|
234
|
+
- You can trigger skills by only sending the command in a newline message.
|
235
|
+
- Each command starts with a slash (/).
|
236
|
+
- Never announce actions without using a command separated by a newline character.
|
237
|
+
- Never use markdown in your responses.
|
238
|
+
- Do not make guesses or assumptions
|
239
|
+
- Only answer if the verified information is in the prompt.
|
240
|
+
- Check that you are not missing a command
|
241
|
+
- Focus only on helping users with operations detailed below.
|
242
|
+
- Date: Fri, 06 Dec 2024 16:03:22 GMT
|
243
|
+
- When mentioning any action related to available skills, you MUST trigger the corresponding command in a new line
|
244
|
+
- If you suggest an action that has a command, you must trigger that command
|
245
|
+
|
246
|
+
|
247
|
+
## User context
|
248
|
+
- Start by fetch their domain from or Converse username
|
249
|
+
- Call the user by their name or domain, in case they have one
|
250
|
+
- Ask for a name (if they don't have one) so you can suggest domains.
|
251
|
+
- Message sent date: 2024-12-06T16:03:36.582Z
|
252
|
+
- Users address is: 0x40f08f0f853d1c42c61815652b7ccd5a50f0be09
|
253
|
+
- Users name is: ArizonaOregon
|
254
|
+
- Converse username is: ArizonaOregon
|
255
|
+
|
256
|
+
## Commands
|
257
|
+
/check [domain] - Check if a domain is available.
|
258
|
+
/cool [domain] - Get cool alternatives for a .eth domain.
|
259
|
+
/info [domain] - Get detailed information about an ENS domain including owner, expiry date, and resolver.
|
260
|
+
/register [domain] - Register a new ENS domain. Returns a URL to complete the registration process.
|
261
|
+
/renew [domain] - Extend the registration period of your ENS domain. Returns a URL to complete the renewal.
|
262
|
+
/reset - Reset the conversation clearing memory and usernames cache.
|
263
|
+
/pay [amount] [token] [username] [address] - Send a specified amount of a cryptocurrency to a destination address.
|
264
|
+
When tipping, you can asume its 1 usdc.
|
265
|
+
|
266
|
+
## Examples
|
267
|
+
/check vitalik.eth
|
268
|
+
/check fabri.base.eth
|
269
|
+
/cool vitalik.eth
|
270
|
+
/info nick.eth
|
271
|
+
/register vitalik.eth
|
272
|
+
/renew fabri.base.eth
|
273
|
+
/reset
|
274
|
+
/pay 10 vitalik.eth
|
275
|
+
/pay 1 usdc to 0xC60E6Bb79322392761BFe3081E302aEB79B30B03
|
276
|
+
|
277
|
+
## Scenarios
|
278
|
+
1. Missing commands in responses
|
279
|
+
**Issue**: Sometimes responses are sent without the required command.
|
280
|
+
**Example**:
|
281
|
+
Incorrect:
|
282
|
+
> "Looks like vitalik.eth is registered! What about these cool alternatives?"
|
283
|
+
Correct:
|
284
|
+
> "Looks like vitalik.eth is registered! What about these cool alternatives?
|
285
|
+
> /cool vitalik.eth"
|
286
|
+
|
287
|
+
Incorrect:
|
288
|
+
> Here is a summary of your TODOs. I will now send it via email.
|
289
|
+
Correct:
|
290
|
+
> /todo
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"name": "gated-group",
|
3
|
+
"private": true,
|
4
|
+
"type": "module",
|
5
|
+
"scripts": {
|
6
|
+
"build": "tsc",
|
7
|
+
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
|
8
|
+
"start": "node dist/index.js"
|
9
|
+
},
|
10
|
+
"dependencies": {
|
11
|
+
"@xmtp/message-kit": "workspace:*",
|
12
|
+
"alchemy-sdk": "^3.0.0",
|
13
|
+
"express": "^4.19.2"
|
14
|
+
},
|
15
|
+
"devDependencies": {
|
16
|
+
"@types/express": "^4.17.20",
|
17
|
+
"@types/node": "^20.14.2",
|
18
|
+
"typescript": "^5.4.5"
|
19
|
+
},
|
20
|
+
"engines": {
|
21
|
+
"node": ">=20"
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { run, XMTPContext, Agent, xmtpClient } from "@xmtp/message-kit";
|
2
|
+
import { gated } from "./skills/gated.js";
|
3
|
+
import { startGatedGroupServer } from "./skills/gated.js";
|
4
|
+
|
5
|
+
const { client } = await xmtpClient({
|
6
|
+
hideInitLogMessage: true,
|
7
|
+
});
|
8
|
+
|
9
|
+
startGatedGroupServer(client);
|
10
|
+
|
11
|
+
export const agent: Agent = {
|
12
|
+
name: "Gated Group Creator Agent",
|
13
|
+
tag: "@bot",
|
14
|
+
description: "A gated group creator agent.",
|
15
|
+
skills: [...gated],
|
16
|
+
};
|
17
|
+
run(async (context: XMTPContext) => {}, { agent });
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { Alchemy, Network } from "alchemy-sdk";
|
2
|
+
|
3
|
+
const settings = {
|
4
|
+
apiKey: process.env.ALCHEMY_API_KEY, // Replace with your Alchemy API key
|
5
|
+
network: Network.BASE_MAINNET, // Use the appropriate network
|
6
|
+
};
|
7
|
+
|
8
|
+
export async function checkNft(
|
9
|
+
walletAddress: string,
|
10
|
+
collectionSlug: string,
|
11
|
+
): Promise<boolean> {
|
12
|
+
const alchemy = new Alchemy(settings);
|
13
|
+
try {
|
14
|
+
const nfts = await alchemy.nft.getNftsForOwner(walletAddress);
|
15
|
+
|
16
|
+
const ownsNft = nfts.ownedNfts.some(
|
17
|
+
(nft: any) =>
|
18
|
+
nft.contract.name.toLowerCase() === collectionSlug.toLowerCase(),
|
19
|
+
);
|
20
|
+
console.log("is the nft owned: ", ownsNft);
|
21
|
+
return ownsNft as boolean;
|
22
|
+
} catch (error) {
|
23
|
+
console.error("Error fetching NFTs from Alchemy:", error);
|
24
|
+
}
|
25
|
+
|
26
|
+
return false;
|
27
|
+
}
|
@@ -0,0 +1,137 @@
|
|
1
|
+
import { isOnXMTP, V3Client, V2Client } from "@xmtp/message-kit";
|
2
|
+
|
3
|
+
export async function createGroup(
|
4
|
+
client: V3Client,
|
5
|
+
senderAddress: string,
|
6
|
+
clientAddress: string,
|
7
|
+
) {
|
8
|
+
try {
|
9
|
+
let senderInboxId = "";
|
10
|
+
await client.conversations.sync();
|
11
|
+
const group = await client?.conversations.newGroup([
|
12
|
+
senderAddress,
|
13
|
+
clientAddress,
|
14
|
+
]);
|
15
|
+
console.log("Group created", group?.id);
|
16
|
+
const members = await group.members();
|
17
|
+
const senderMember = members.find((member) =>
|
18
|
+
member.accountAddresses.includes(senderAddress.toLowerCase()),
|
19
|
+
);
|
20
|
+
if (senderMember) {
|
21
|
+
senderInboxId = senderMember.inboxId;
|
22
|
+
console.log("Sender's inboxId:", senderInboxId);
|
23
|
+
} else {
|
24
|
+
console.log("Sender not found in members list");
|
25
|
+
}
|
26
|
+
await group.addSuperAdmin(senderInboxId);
|
27
|
+
console.log(
|
28
|
+
"Sender is superAdmin",
|
29
|
+
await group.isSuperAdmin(senderInboxId),
|
30
|
+
);
|
31
|
+
await group.send(`Welcome to the new group!`);
|
32
|
+
await group.send(`You are now the admin of this group as well as the bot`);
|
33
|
+
return group;
|
34
|
+
} catch (error) {
|
35
|
+
console.log("Error creating group", error);
|
36
|
+
return null;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
export async function removeFromGroup(
|
41
|
+
groupId: string,
|
42
|
+
client: V3Client,
|
43
|
+
v2client: V2Client,
|
44
|
+
senderAddress: string,
|
45
|
+
): Promise<{ code: number; message: string }> {
|
46
|
+
try {
|
47
|
+
let lowerAddress = senderAddress.toLowerCase();
|
48
|
+
const { v2, v3 } = await isOnXMTP(client, v2client, lowerAddress);
|
49
|
+
console.warn("Checking if on XMTP: v2", v2, "v3", v3);
|
50
|
+
if (!v3)
|
51
|
+
return {
|
52
|
+
code: 400,
|
53
|
+
message: "You don't seem to have a v3 identity ",
|
54
|
+
};
|
55
|
+
const conversation =
|
56
|
+
await client.conversations.getConversationById(groupId);
|
57
|
+
console.warn("removing from group", conversation?.id);
|
58
|
+
await conversation?.sync();
|
59
|
+
await conversation?.removeMembers([lowerAddress]);
|
60
|
+
console.warn("Removed member from group");
|
61
|
+
await conversation?.sync();
|
62
|
+
const members = await conversation?.members();
|
63
|
+
console.warn("Number of members", members?.length);
|
64
|
+
|
65
|
+
let wasRemoved = true;
|
66
|
+
if (members) {
|
67
|
+
for (const member of members) {
|
68
|
+
let lowerMemberAddress = member.accountAddresses[0].toLowerCase();
|
69
|
+
if (lowerMemberAddress === lowerAddress) {
|
70
|
+
wasRemoved = false;
|
71
|
+
break;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
return {
|
76
|
+
code: wasRemoved ? 200 : 400,
|
77
|
+
message: wasRemoved
|
78
|
+
? "You have been removed from the group"
|
79
|
+
: "Failed to remove from group",
|
80
|
+
};
|
81
|
+
} catch (error) {
|
82
|
+
console.log("Error removing from group", error);
|
83
|
+
return {
|
84
|
+
code: 400,
|
85
|
+
message: "Failed to remove from group",
|
86
|
+
};
|
87
|
+
}
|
88
|
+
}
|
89
|
+
export async function addToGroup(
|
90
|
+
groupId: string,
|
91
|
+
client: V3Client,
|
92
|
+
address: string,
|
93
|
+
asAdmin: boolean = false,
|
94
|
+
): Promise<{ code: number; message: string }> {
|
95
|
+
try {
|
96
|
+
let lowerAddress = address.toLowerCase();
|
97
|
+
const { v2, v3 } = await isOnXMTP(client, null, lowerAddress);
|
98
|
+
if (!v3)
|
99
|
+
return {
|
100
|
+
code: 400,
|
101
|
+
message: "You don't seem to have a v3 identity ",
|
102
|
+
};
|
103
|
+
const group = await client.conversations.getConversationById(groupId);
|
104
|
+
console.warn("Adding to group", group?.id);
|
105
|
+
await group?.sync();
|
106
|
+
await group?.addMembers([lowerAddress]);
|
107
|
+
console.warn("Added member to group");
|
108
|
+
await group?.sync();
|
109
|
+
if (asAdmin) {
|
110
|
+
await group?.addSuperAdmin(lowerAddress);
|
111
|
+
}
|
112
|
+
const members = await group?.members();
|
113
|
+
console.warn("Number of members", members?.length);
|
114
|
+
|
115
|
+
if (members) {
|
116
|
+
for (const member of members) {
|
117
|
+
let lowerMemberAddress = member.accountAddresses[0].toLowerCase();
|
118
|
+
if (lowerMemberAddress === lowerAddress) {
|
119
|
+
console.warn("Member exists", lowerMemberAddress);
|
120
|
+
return {
|
121
|
+
code: 200,
|
122
|
+
message: "You have been added to the group",
|
123
|
+
};
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|
127
|
+
return {
|
128
|
+
code: 400,
|
129
|
+
message: "Failed to add to group",
|
130
|
+
};
|
131
|
+
} catch (error) {
|
132
|
+
return {
|
133
|
+
code: 400,
|
134
|
+
message: "Failed to add to group",
|
135
|
+
};
|
136
|
+
}
|
137
|
+
}
|