generated from ubiquity-os/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanifest.json
36 lines (36 loc) · 1.01 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "Wallet",
"description": "Allows users to register their wallets to collect rewards.",
"ubiquity:listeners": ["issue_comment.created"],
"skipBotEvents": true,
"commands": {
"wallet": {
"ubiquity:example": "/wallet ubq.eth",
"description": "Register your wallet address for payments. Use '/wallet unset' to unlink your wallet.",
"parameters": {
"type": "object",
"properties": {
"walletAddress": {
"description": "Ethereum address or Ethereum Name Service",
"type": "string"
},
"unset": {
"description": "Unsets the wallet associated with a user",
"type": "boolean",
"default": false
}
}
}
}
},
"configuration": {
"type": "object",
"properties": {
"registerWalletWithVerification": {
"default": false,
"type": "boolean"
}
}
},
"homepage_url": "https://ubiquity-os-command-wallet-development.ubiquity.workers.dev"
}