-
Notifications
You must be signed in to change notification settings - Fork 1
/
snap.manifest.json
54 lines (54 loc) · 1.29 KB
/
snap.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"version": "0.7.1",
"proposedName": "Scheduled And Recurring Payments Snap",
"description": "An example snap for storing address book entries.",
"repository": {
"type": "git",
"url": "https://github.com/Montoya/address-book-snap-tutorial.git"
},
"source": {
"shasum": "9hjcGrRJq60MkdkLZSuMoFWkyfDbDLnmMqE+N+zvtj0=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
"iconPath": "images/icon.svg",
"packageName": "@metamask/address-book-snap",
"registry": "https://registry.npmjs.org/"
}
}
},
"initialPermissions": {
"endowment:network-access": {},
"snap_manageState": {},
"endowment:transaction-insight": {
"allowTransactionOrigin": true
},
"endowment:cronjob": {
"jobs": [
{
"expression": "* * * * *",
"request": {
"method": "checkTransaction",
"params": {
"param1": "bar"
}
}
},
{
"expression": "* * * * *",
"request": {
"method": "recurringTransaction",
"params": {
"param1": "foo"
}
}
}
]
},
"endowment:rpc": {
"dapps": true,
"snaps": false
}
},
"manifestVersion": "0.1"
}