@ens-node-metadata/agent 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/README.md +38 -5
  2. package/SKILL.md +31 -21
  3. package/dist/{chunk-3VTAAUSG.js → chunk-6IGJKB4W.js} +5 -0
  4. package/dist/chunk-DXAESRZH.js +1122 -0
  5. package/dist/chunk-X6M7WZJF.js +43 -0
  6. package/dist/chunk-YZFATT7X.js +9 -0
  7. package/dist/cli.js +6 -1
  8. package/dist/commands/metadata/set.js +264 -11
  9. package/dist/commands/metadata/template.js +2 -1
  10. package/dist/commands/metadata/validate.js +2 -1
  11. package/dist/commands/registration-file/publish.js +1 -0
  12. package/dist/commands/registration-file/template.js +2 -0
  13. package/dist/commands/registration-file/validate.js +1 -0
  14. package/dist/commands/registry/identity/index.d.ts +3 -0
  15. package/dist/commands/registry/identity/index.js +7 -0
  16. package/dist/commands/registry/identity/query.d.ts +19 -0
  17. package/dist/commands/registry/identity/query.js +74 -0
  18. package/dist/commands/registry/identity/register.d.ts +25 -0
  19. package/dist/commands/registry/identity/register.js +112 -0
  20. package/dist/commands/registry/identity/set-uri.d.ts +25 -0
  21. package/dist/commands/registry/identity/set-uri.js +113 -0
  22. package/dist/commands/registry/identity/set-wallet.d.ts +31 -0
  23. package/dist/commands/registry/identity/set-wallet.js +191 -0
  24. package/dist/commands/registry/identity/unset-wallet.d.ts +25 -0
  25. package/dist/commands/registry/identity/unset-wallet.js +108 -0
  26. package/dist/commands/skill.js +2 -0
  27. package/dist/index.js +1 -0
  28. package/dist/meta-2D4D777X.js +99 -0
  29. package/dist/meta-3V4ARLLT.js +90 -0
  30. package/dist/meta-4FOJTBXM.js +99 -0
  31. package/dist/meta-4WYOTBTO.js +99 -0
  32. package/dist/meta-6ZW4JGML.js +99 -0
  33. package/dist/meta-CVZI45M2.js +99 -0
  34. package/dist/meta-GPMB2YZD.js +99 -0
  35. package/dist/meta-KQ3IEVWD.js +99 -0
  36. package/dist/meta-OVOAMXLB.js +99 -0
  37. package/dist/meta-PRCHJBWX.js +99 -0
  38. package/dist/meta-Q27UTR4Z.js +99 -0
  39. package/dist/meta-VOM2POTX.js +99 -0
  40. package/dist/schema-533SFVLQ.js +70 -0
  41. package/dist/schema-5VKXCUCI.js +58 -0
  42. package/dist/schema-FGOA4QOU.js +86 -0
  43. package/dist/schema-JNRQYFPA.js +79 -0
  44. package/dist/schema-JWSXL7CR.js +51 -0
  45. package/dist/schema-NESH3IQS.js +90 -0
  46. package/dist/schema-O4SLAGNC.js +65 -0
  47. package/dist/schema-SFNY6GI4.js +95 -0
  48. package/dist/schema-WUU2T2HE.js +53 -0
  49. package/dist/schema-YRD3DNDN.js +97 -0
  50. package/dist/schema-Z7FM6RGM.js +84 -0
  51. package/dist/schema-ZCETI367.js +83 -0
  52. package/package.json +3 -1
  53. package/dist/commands/registry/identity.d.ts +0 -19
  54. package/dist/commands/registry/identity.js +0 -91
@@ -0,0 +1,99 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/wallet/versions/1.0.0/meta.json
4
+ var schemaId = "wallet";
5
+ var version = "1.0.0";
6
+ var title = "Wallet";
7
+ var description = "A wallet for holding or managing assets.";
8
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
9
+ var cid = "QmTdnHbDob1Cf7Uy1dYmrRezyETvf19QWcaNpFP3WSe2JD";
10
+ var checksum = "sha256:1a6fadb35c51e238e7ddb947b1ac6b9e899df71247f0eb85c7724092fd075988";
11
+ var timestamp = 1771420712;
12
+ var schemaPath = "packages/schemas/published/wallet/versions/1.0.0/schema.json";
13
+ var publisher = "pinata";
14
+ var signer = "0x6837047F46Da1d5d9A79846b25810b92adF456F6";
15
+ var signature = "0x906ad914e05bc1eda1e7c0bbd0ca4b778e0a0add0cc3ae040a5999f8298fe9c4560102eb1826a1504595db04e4d213d8ef844e306067e5274d7cff155b1de25c1c";
16
+ var eip712 = {
17
+ domain: {
18
+ name: "ENS Schema Publisher",
19
+ version: "1"
20
+ },
21
+ types: {
22
+ PublishedSchema: [
23
+ {
24
+ name: "schemaId",
25
+ type: "string"
26
+ },
27
+ {
28
+ name: "version",
29
+ type: "string"
30
+ },
31
+ {
32
+ name: "cid",
33
+ type: "string"
34
+ },
35
+ {
36
+ name: "checksum",
37
+ type: "string"
38
+ },
39
+ {
40
+ name: "timestamp",
41
+ type: "uint256"
42
+ },
43
+ {
44
+ name: "schemaPath",
45
+ type: "string"
46
+ },
47
+ {
48
+ name: "publisher",
49
+ type: "string"
50
+ },
51
+ {
52
+ name: "notes",
53
+ type: "string"
54
+ }
55
+ ]
56
+ },
57
+ primaryType: "PublishedSchema",
58
+ message: {
59
+ schemaId: "wallet",
60
+ version: "1.0.0",
61
+ cid: "QmTdnHbDob1Cf7Uy1dYmrRezyETvf19QWcaNpFP3WSe2JD",
62
+ checksum: "sha256:1a6fadb35c51e238e7ddb947b1ac6b9e899df71247f0eb85c7724092fd075988",
63
+ timestamp: 1771420712,
64
+ schemaPath: "packages/schemas/published/wallet/versions/1.0.0/schema.json",
65
+ publisher: "pinata",
66
+ notes: ""
67
+ }
68
+ };
69
+ var meta_default = {
70
+ schemaId,
71
+ version,
72
+ title,
73
+ description,
74
+ source,
75
+ cid,
76
+ checksum,
77
+ timestamp,
78
+ schemaPath,
79
+ publisher,
80
+ signer,
81
+ signature,
82
+ eip712
83
+ };
84
+ export {
85
+ checksum,
86
+ cid,
87
+ meta_default as default,
88
+ description,
89
+ eip712,
90
+ publisher,
91
+ schemaId,
92
+ schemaPath,
93
+ signature,
94
+ signer,
95
+ source,
96
+ timestamp,
97
+ title,
98
+ version
99
+ };
@@ -0,0 +1,99 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/grant/versions/1.0.0/meta.json
4
+ var schemaId = "grant";
5
+ var version = "1.0.0";
6
+ var title = "Grant";
7
+ var description = "A grant issued by an organization.";
8
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
9
+ var cid = "QmdktToaxwvN31DGDEtWQ7uVKNURssW5k8oCtgceTFHemS";
10
+ var checksum = "sha256:205ff736e4ce769bbc86332aedf56fe55275154ffcfda4d2c5003bc809ca4df4";
11
+ var timestamp = 1771420688;
12
+ var schemaPath = "packages/schemas/published/grant/versions/1.0.0/schema.json";
13
+ var publisher = "pinata";
14
+ var signer = "0x6837047F46Da1d5d9A79846b25810b92adF456F6";
15
+ var signature = "0xc7799e99c7878ed52e05a165e0173640e2cc3119a257552a4a81d4387a94252d6c632c3d48a59d96604db59801350691609ea4b8f5b0fa1e1cecc683379d35681b";
16
+ var eip712 = {
17
+ domain: {
18
+ name: "ENS Schema Publisher",
19
+ version: "1"
20
+ },
21
+ types: {
22
+ PublishedSchema: [
23
+ {
24
+ name: "schemaId",
25
+ type: "string"
26
+ },
27
+ {
28
+ name: "version",
29
+ type: "string"
30
+ },
31
+ {
32
+ name: "cid",
33
+ type: "string"
34
+ },
35
+ {
36
+ name: "checksum",
37
+ type: "string"
38
+ },
39
+ {
40
+ name: "timestamp",
41
+ type: "uint256"
42
+ },
43
+ {
44
+ name: "schemaPath",
45
+ type: "string"
46
+ },
47
+ {
48
+ name: "publisher",
49
+ type: "string"
50
+ },
51
+ {
52
+ name: "notes",
53
+ type: "string"
54
+ }
55
+ ]
56
+ },
57
+ primaryType: "PublishedSchema",
58
+ message: {
59
+ schemaId: "grant",
60
+ version: "1.0.0",
61
+ cid: "QmdktToaxwvN31DGDEtWQ7uVKNURssW5k8oCtgceTFHemS",
62
+ checksum: "sha256:205ff736e4ce769bbc86332aedf56fe55275154ffcfda4d2c5003bc809ca4df4",
63
+ timestamp: 1771420688,
64
+ schemaPath: "packages/schemas/published/grant/versions/1.0.0/schema.json",
65
+ publisher: "pinata",
66
+ notes: ""
67
+ }
68
+ };
69
+ var meta_default = {
70
+ schemaId,
71
+ version,
72
+ title,
73
+ description,
74
+ source,
75
+ cid,
76
+ checksum,
77
+ timestamp,
78
+ schemaPath,
79
+ publisher,
80
+ signer,
81
+ signature,
82
+ eip712
83
+ };
84
+ export {
85
+ checksum,
86
+ cid,
87
+ meta_default as default,
88
+ description,
89
+ eip712,
90
+ publisher,
91
+ schemaId,
92
+ schemaPath,
93
+ signature,
94
+ signer,
95
+ source,
96
+ timestamp,
97
+ title,
98
+ version
99
+ };
@@ -0,0 +1,99 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/person/versions/1.0.0/meta.json
4
+ var schemaId = "person";
5
+ var version = "1.0.0";
6
+ var title = "Person";
7
+ var description = "A person.";
8
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
9
+ var cid = "QmYZNmUKP751Vfj2ZEVwXawvGto1zsmi4oiTsnunzx6dsp";
10
+ var checksum = "sha256:c40c06eff4eae205f64a70eb8ab2bb639e6ec7a62aeceeab7d7ae5eaf9959760";
11
+ var timestamp = 1771420704;
12
+ var schemaPath = "packages/schemas/published/person/versions/1.0.0/schema.json";
13
+ var publisher = "pinata";
14
+ var signer = "0x6837047F46Da1d5d9A79846b25810b92adF456F6";
15
+ var signature = "0x780e2f78336490047dda383e9f5432de992e0c62e39b6867e9126e9bcd32bdd91bbaf60a29f75b9a852e663dfdcebcd7907f9b9c5d2b190aef3b50203df944141b";
16
+ var eip712 = {
17
+ domain: {
18
+ name: "ENS Schema Publisher",
19
+ version: "1"
20
+ },
21
+ types: {
22
+ PublishedSchema: [
23
+ {
24
+ name: "schemaId",
25
+ type: "string"
26
+ },
27
+ {
28
+ name: "version",
29
+ type: "string"
30
+ },
31
+ {
32
+ name: "cid",
33
+ type: "string"
34
+ },
35
+ {
36
+ name: "checksum",
37
+ type: "string"
38
+ },
39
+ {
40
+ name: "timestamp",
41
+ type: "uint256"
42
+ },
43
+ {
44
+ name: "schemaPath",
45
+ type: "string"
46
+ },
47
+ {
48
+ name: "publisher",
49
+ type: "string"
50
+ },
51
+ {
52
+ name: "notes",
53
+ type: "string"
54
+ }
55
+ ]
56
+ },
57
+ primaryType: "PublishedSchema",
58
+ message: {
59
+ schemaId: "person",
60
+ version: "1.0.0",
61
+ cid: "QmYZNmUKP751Vfj2ZEVwXawvGto1zsmi4oiTsnunzx6dsp",
62
+ checksum: "sha256:c40c06eff4eae205f64a70eb8ab2bb639e6ec7a62aeceeab7d7ae5eaf9959760",
63
+ timestamp: 1771420704,
64
+ schemaPath: "packages/schemas/published/person/versions/1.0.0/schema.json",
65
+ publisher: "pinata",
66
+ notes: ""
67
+ }
68
+ };
69
+ var meta_default = {
70
+ schemaId,
71
+ version,
72
+ title,
73
+ description,
74
+ source,
75
+ cid,
76
+ checksum,
77
+ timestamp,
78
+ schemaPath,
79
+ publisher,
80
+ signer,
81
+ signature,
82
+ eip712
83
+ };
84
+ export {
85
+ checksum,
86
+ cid,
87
+ meta_default as default,
88
+ description,
89
+ eip712,
90
+ publisher,
91
+ schemaId,
92
+ schemaPath,
93
+ signature,
94
+ signer,
95
+ source,
96
+ timestamp,
97
+ title,
98
+ version
99
+ };
@@ -0,0 +1,99 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/application/versions/1.0.0/meta.json
4
+ var schemaId = "application";
5
+ var version = "1.0.0";
6
+ var title = "Application";
7
+ var description = "An application, service, or dApp within the organization.";
8
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
9
+ var cid = "QmSsjRkk2xZSU6yXxjgPmyKpyfQVGmUw5qLGaPkYcdPW9A";
10
+ var checksum = "sha256:79de7f6f9d48810193959754c27315a7558529d713a532d5c2566f3de2197819";
11
+ var timestamp = 1771420672;
12
+ var schemaPath = "packages/schemas/published/application/versions/1.0.0/schema.json";
13
+ var publisher = "pinata";
14
+ var signer = "0x6837047F46Da1d5d9A79846b25810b92adF456F6";
15
+ var signature = "0xbbb146176ece2e25662dbb1cf1f55b0eec1516a6b4f91b5d38b81381b015b92831a6a34e1a3c9c746a5811ffb16f9fcf7b70862da10b1e052a87e61a2ec739071b";
16
+ var eip712 = {
17
+ domain: {
18
+ name: "ENS Schema Publisher",
19
+ version: "1"
20
+ },
21
+ types: {
22
+ PublishedSchema: [
23
+ {
24
+ name: "schemaId",
25
+ type: "string"
26
+ },
27
+ {
28
+ name: "version",
29
+ type: "string"
30
+ },
31
+ {
32
+ name: "cid",
33
+ type: "string"
34
+ },
35
+ {
36
+ name: "checksum",
37
+ type: "string"
38
+ },
39
+ {
40
+ name: "timestamp",
41
+ type: "uint256"
42
+ },
43
+ {
44
+ name: "schemaPath",
45
+ type: "string"
46
+ },
47
+ {
48
+ name: "publisher",
49
+ type: "string"
50
+ },
51
+ {
52
+ name: "notes",
53
+ type: "string"
54
+ }
55
+ ]
56
+ },
57
+ primaryType: "PublishedSchema",
58
+ message: {
59
+ schemaId: "application",
60
+ version: "1.0.0",
61
+ cid: "QmSsjRkk2xZSU6yXxjgPmyKpyfQVGmUw5qLGaPkYcdPW9A",
62
+ checksum: "sha256:79de7f6f9d48810193959754c27315a7558529d713a532d5c2566f3de2197819",
63
+ timestamp: 1771420672,
64
+ schemaPath: "packages/schemas/published/application/versions/1.0.0/schema.json",
65
+ publisher: "pinata",
66
+ notes: ""
67
+ }
68
+ };
69
+ var meta_default = {
70
+ schemaId,
71
+ version,
72
+ title,
73
+ description,
74
+ source,
75
+ cid,
76
+ checksum,
77
+ timestamp,
78
+ schemaPath,
79
+ publisher,
80
+ signer,
81
+ signature,
82
+ eip712
83
+ };
84
+ export {
85
+ checksum,
86
+ cid,
87
+ meta_default as default,
88
+ description,
89
+ eip712,
90
+ publisher,
91
+ schemaId,
92
+ schemaPath,
93
+ signature,
94
+ signer,
95
+ source,
96
+ timestamp,
97
+ title,
98
+ version
99
+ };
@@ -0,0 +1,99 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/delegate/versions/1.0.0/meta.json
4
+ var schemaId = "delegate";
5
+ var version = "1.0.0";
6
+ var title = "Delegate";
7
+ var description = "A delegate.";
8
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
9
+ var cid = "QmaDG9p9vJjsLBtbtCPTd6tmfJUh2wuXmYQfNwrpe2qQwe";
10
+ var checksum = "sha256:a44ced384a3e28682f4ba1fc70124dee9a30a0339657a6ab6b33c0c3516a959c";
11
+ var timestamp = 1771420683;
12
+ var schemaPath = "packages/schemas/published/delegate/versions/1.0.0/schema.json";
13
+ var publisher = "pinata";
14
+ var signer = "0x6837047F46Da1d5d9A79846b25810b92adF456F6";
15
+ var signature = "0x9e96b9863c8076dc683196821e4647e088396fc197e0b98edb1beef16fce143d4bb54ef4b3efadd06799cb7759ec701db27b4580590acd321d15d9a94e6ada561b";
16
+ var eip712 = {
17
+ domain: {
18
+ name: "ENS Schema Publisher",
19
+ version: "1"
20
+ },
21
+ types: {
22
+ PublishedSchema: [
23
+ {
24
+ name: "schemaId",
25
+ type: "string"
26
+ },
27
+ {
28
+ name: "version",
29
+ type: "string"
30
+ },
31
+ {
32
+ name: "cid",
33
+ type: "string"
34
+ },
35
+ {
36
+ name: "checksum",
37
+ type: "string"
38
+ },
39
+ {
40
+ name: "timestamp",
41
+ type: "uint256"
42
+ },
43
+ {
44
+ name: "schemaPath",
45
+ type: "string"
46
+ },
47
+ {
48
+ name: "publisher",
49
+ type: "string"
50
+ },
51
+ {
52
+ name: "notes",
53
+ type: "string"
54
+ }
55
+ ]
56
+ },
57
+ primaryType: "PublishedSchema",
58
+ message: {
59
+ schemaId: "delegate",
60
+ version: "1.0.0",
61
+ cid: "QmaDG9p9vJjsLBtbtCPTd6tmfJUh2wuXmYQfNwrpe2qQwe",
62
+ checksum: "sha256:a44ced384a3e28682f4ba1fc70124dee9a30a0339657a6ab6b33c0c3516a959c",
63
+ timestamp: 1771420683,
64
+ schemaPath: "packages/schemas/published/delegate/versions/1.0.0/schema.json",
65
+ publisher: "pinata",
66
+ notes: ""
67
+ }
68
+ };
69
+ var meta_default = {
70
+ schemaId,
71
+ version,
72
+ title,
73
+ description,
74
+ source,
75
+ cid,
76
+ checksum,
77
+ timestamp,
78
+ schemaPath,
79
+ publisher,
80
+ signer,
81
+ signature,
82
+ eip712
83
+ };
84
+ export {
85
+ checksum,
86
+ cid,
87
+ meta_default as default,
88
+ description,
89
+ eip712,
90
+ publisher,
91
+ schemaId,
92
+ schemaPath,
93
+ signature,
94
+ signer,
95
+ source,
96
+ timestamp,
97
+ title,
98
+ version
99
+ };
@@ -0,0 +1,70 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/org/versions/0.1.8/schema.json
4
+ var $id = "https://github.com/0xLighthouse/ens-node-metadata/schemas/org/0.1.5";
5
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
6
+ var title = "Organization";
7
+ var version = "0.1.8";
8
+ var description = "A legal or organizational entity.";
9
+ var type = "object";
10
+ var properties = {
11
+ class: {
12
+ type: "string",
13
+ default: "Organization",
14
+ description: "High-level identifier of this node type",
15
+ examples: [
16
+ "Organization",
17
+ "Foundation",
18
+ "OPCo"
19
+ ]
20
+ },
21
+ name: {
22
+ type: "string",
23
+ description: "The name of this business unit"
24
+ },
25
+ avatar: {
26
+ type: "string",
27
+ description: "A URL to an image used as an avatar or logo"
28
+ },
29
+ description: {
30
+ type: "string",
31
+ description: "A description of the name"
32
+ },
33
+ url: {
34
+ type: "string",
35
+ format: "uri",
36
+ description: "URL of the organization"
37
+ }
38
+ };
39
+ var required = [
40
+ "class"
41
+ ];
42
+ var recommended = [
43
+ "name",
44
+ "avatar",
45
+ "description",
46
+ "url"
47
+ ];
48
+ var schema_default = {
49
+ $id,
50
+ source,
51
+ title,
52
+ version,
53
+ description,
54
+ type,
55
+ properties,
56
+ required,
57
+ recommended
58
+ };
59
+ export {
60
+ $id,
61
+ schema_default as default,
62
+ description,
63
+ properties,
64
+ recommended,
65
+ required,
66
+ source,
67
+ title,
68
+ type,
69
+ version
70
+ };
@@ -0,0 +1,58 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/treasury/versions/1.0.0/schema.json
4
+ var $id = "https://github.com/0xLighthouse/ens-node-metadata/schemas/treasury/1.0.0";
5
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
6
+ var title = "Treasury";
7
+ var version = "1.0.0";
8
+ var description = "Funds and assets managed by a collective of individuals or entities.";
9
+ var type = "object";
10
+ var properties = {
11
+ class: {
12
+ type: "string",
13
+ default: "Treasury",
14
+ description: "High-level identifier of this node type",
15
+ examples: [
16
+ "Treasury",
17
+ "Vault"
18
+ ]
19
+ },
20
+ name: {
21
+ type: "string",
22
+ description: "The name of the treasury"
23
+ },
24
+ description: {
25
+ type: "string",
26
+ description: "A description of the name"
27
+ }
28
+ };
29
+ var required = [
30
+ "class"
31
+ ];
32
+ var recommended = [
33
+ "name",
34
+ "description"
35
+ ];
36
+ var schema_default = {
37
+ $id,
38
+ source,
39
+ title,
40
+ version,
41
+ description,
42
+ type,
43
+ properties,
44
+ required,
45
+ recommended
46
+ };
47
+ export {
48
+ $id,
49
+ schema_default as default,
50
+ description,
51
+ properties,
52
+ recommended,
53
+ required,
54
+ source,
55
+ title,
56
+ type,
57
+ version
58
+ };
@@ -0,0 +1,86 @@
1
+ import "./chunk-YZFATT7X.js";
2
+
3
+ // ../schemas/published/grant/versions/1.0.0/schema.json
4
+ var $id = "https://github.com/0xLighthouse/ens-node-metadata/schemas/grantProgram/1.0.0";
5
+ var source = "https://github.com/0xLighthouse/ens-node-metadata";
6
+ var title = "Grant";
7
+ var version = "1.0.0";
8
+ var description = "A grant issued by an organization.";
9
+ var type = "object";
10
+ var properties = {
11
+ class: {
12
+ type: "string",
13
+ default: "Grant",
14
+ description: "High-level identifier of this node type",
15
+ examples: [
16
+ "Grant",
17
+ "GrantProgram"
18
+ ]
19
+ },
20
+ name: {
21
+ type: "string",
22
+ description: "The name of the grant program"
23
+ },
24
+ description: {
25
+ type: "string",
26
+ description: "Description of the grant purpose and scope"
27
+ },
28
+ url: {
29
+ type: "string",
30
+ format: "uri",
31
+ description: "URL of the grant program"
32
+ },
33
+ status: {
34
+ type: "string",
35
+ description: "Grant status",
36
+ enum: [
37
+ "Active",
38
+ "Incomplete",
39
+ "Pending",
40
+ "Completed",
41
+ "Cancelled"
42
+ ]
43
+ },
44
+ budget: {
45
+ type: "string",
46
+ description: "Total budget expressed as WEI eg. 100 USDC = 100 * 10^6"
47
+ },
48
+ token: {
49
+ type: "string",
50
+ description: 'Token expressed as ERC-20 token address eg. "0x0000000000000000000000000000000000000000"'
51
+ }
52
+ };
53
+ var required = [
54
+ "class"
55
+ ];
56
+ var recommended = [
57
+ "name",
58
+ "description",
59
+ "url",
60
+ "status",
61
+ "budget",
62
+ "token"
63
+ ];
64
+ var schema_default = {
65
+ $id,
66
+ source,
67
+ title,
68
+ version,
69
+ description,
70
+ type,
71
+ properties,
72
+ required,
73
+ recommended
74
+ };
75
+ export {
76
+ $id,
77
+ schema_default as default,
78
+ description,
79
+ properties,
80
+ recommended,
81
+ required,
82
+ source,
83
+ title,
84
+ type,
85
+ version
86
+ };