Skip to content

Commit 4237f27

Browse files
committed
Fix types
1 parent a46ee10 commit 4237f27

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

examples/gated-group/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ async function main() {
2424
await agent.send({
2525
message: `Group created!\n- ID: ${group?.id}\n- Group URL: https://converse.xyz/group/${group?.id}: \n- This url will deelink to the group inside Converse\n- Once in the other group you can share the invite with your friends.`,
2626
originalMessage: message,
27+
metadata: {},
2728
});
2829
return;
2930
} else {
3031
await agent.send({
3132
message:
3233
"👋 Welcome to the Gated Bot Group!\nTo get started, type /create to set up a new group. 🚀\nThis example will check if the user has a particular nft and add them to the group if they do.\nOnce your group is created, you'll receive a unique Group ID and URL.\nShare the URL with friends to invite them to join your group!",
3334
originalMessage: message,
35+
metadata: {},
3436
});
3537
}
3638
},

examples/gm/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ async function main() {
1010
await agent.send({
1111
message: "gm",
1212
originalMessage: message,
13+
metadata: {},
1314
});
1415
},
1516
});

0 commit comments

Comments
 (0)