web3bio-profile-kit 0.1.38 → 0.1.39
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.
- package/dist/types/source.cjs +3 -0
- package/dist/types/source.d.ts +3 -0
- package/dist/types/source.js +3 -0
- package/dist/utils/source.cjs +14 -0
- package/dist/utils/source.js +14 -0
- package/package.json +1 -1
package/dist/types/source.cjs
CHANGED
|
@@ -7,8 +7,10 @@
|
|
|
7
7
|
*/
|
|
8
8
|
exports.Source = void 0;
|
|
9
9
|
(function (Source) {
|
|
10
|
+
Source["baseapp"] = "baseapp";
|
|
10
11
|
Source["basenames"] = "basenames";
|
|
11
12
|
Source["camp_network"] = "camp_network";
|
|
13
|
+
Source["clicker"] = "clicker";
|
|
12
14
|
Source["clusters"] = "clusters";
|
|
13
15
|
Source["crowdsourcing"] = "crowdsourcing";
|
|
14
16
|
Source["dentity"] = "dentity";
|
|
@@ -18,6 +20,7 @@ exports.Source = void 0;
|
|
|
18
20
|
Source["exchange_art"] = "exchange_art";
|
|
19
21
|
Source["farcaster"] = "farcaster";
|
|
20
22
|
Source["firefly"] = "firefly";
|
|
23
|
+
Source["fomo"] = "fomo";
|
|
21
24
|
Source["foundation"] = "foundation";
|
|
22
25
|
Source["gallery"] = "gallery";
|
|
23
26
|
Source["gmgn"] = "gmgn";
|
package/dist/types/source.d.ts
CHANGED
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
6
|
export declare enum Source {
|
|
7
|
+
baseapp = "baseapp",
|
|
7
8
|
basenames = "basenames",
|
|
8
9
|
camp_network = "camp_network",
|
|
10
|
+
clicker = "clicker",
|
|
9
11
|
clusters = "clusters",
|
|
10
12
|
crowdsourcing = "crowdsourcing",
|
|
11
13
|
dentity = "dentity",
|
|
@@ -15,6 +17,7 @@ export declare enum Source {
|
|
|
15
17
|
exchange_art = "exchange_art",
|
|
16
18
|
farcaster = "farcaster",
|
|
17
19
|
firefly = "firefly",
|
|
20
|
+
fomo = "fomo",
|
|
18
21
|
foundation = "foundation",
|
|
19
22
|
gallery = "gallery",
|
|
20
23
|
gmgn = "gmgn",
|
package/dist/types/source.js
CHANGED
|
@@ -5,8 +5,10 @@
|
|
|
5
5
|
*/
|
|
6
6
|
var Source;
|
|
7
7
|
(function (Source) {
|
|
8
|
+
Source["baseapp"] = "baseapp";
|
|
8
9
|
Source["basenames"] = "basenames";
|
|
9
10
|
Source["camp_network"] = "camp_network";
|
|
11
|
+
Source["clicker"] = "clicker";
|
|
10
12
|
Source["clusters"] = "clusters";
|
|
11
13
|
Source["crowdsourcing"] = "crowdsourcing";
|
|
12
14
|
Source["dentity"] = "dentity";
|
|
@@ -16,6 +18,7 @@ var Source;
|
|
|
16
18
|
Source["exchange_art"] = "exchange_art";
|
|
17
19
|
Source["farcaster"] = "farcaster";
|
|
18
20
|
Source["firefly"] = "firefly";
|
|
21
|
+
Source["fomo"] = "fomo";
|
|
19
22
|
Source["foundation"] = "foundation";
|
|
20
23
|
Source["gallery"] = "gallery";
|
|
21
24
|
Source["gmgn"] = "gmgn";
|
package/dist/utils/source.cjs
CHANGED
|
@@ -7,6 +7,11 @@ var source = require('../types/source.cjs');
|
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
9
9
|
const SOURCE_DATA = {
|
|
10
|
+
[source.Source.baseapp]: {
|
|
11
|
+
name: "Base App",
|
|
12
|
+
description: "The Base Wallet app",
|
|
13
|
+
icon: "icons/icon-baseapp.svg",
|
|
14
|
+
},
|
|
10
15
|
[source.Source.basenames]: {
|
|
11
16
|
name: "Basenames",
|
|
12
17
|
description: "The domain system on Base",
|
|
@@ -16,6 +21,10 @@ const SOURCE_DATA = {
|
|
|
16
21
|
name: "Camp Network",
|
|
17
22
|
description: "Modernize intellectual property infrastructure",
|
|
18
23
|
},
|
|
24
|
+
[source.Source.clicker]: {
|
|
25
|
+
name: "Clicker",
|
|
26
|
+
description: "The social network for traders",
|
|
27
|
+
},
|
|
19
28
|
[source.Source.clusters]: {
|
|
20
29
|
name: "Clusters",
|
|
21
30
|
description: "On-chain social protocol",
|
|
@@ -60,6 +69,11 @@ const SOURCE_DATA = {
|
|
|
60
69
|
description: "Web3 social platform",
|
|
61
70
|
icon: "icons/icon-firefly.svg",
|
|
62
71
|
},
|
|
72
|
+
[source.Source.fomo]: {
|
|
73
|
+
name: "fomo",
|
|
74
|
+
description: "The Social-First Crypto Trading Platform",
|
|
75
|
+
icon: "icons/icon-fomo.svg",
|
|
76
|
+
},
|
|
63
77
|
[source.Source.foundation]: {
|
|
64
78
|
name: "Foundation",
|
|
65
79
|
description: "NFT marketplace",
|
package/dist/utils/source.js
CHANGED
|
@@ -5,6 +5,11 @@ import { Source } from '../types/source.js';
|
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
7
|
const SOURCE_DATA = {
|
|
8
|
+
[Source.baseapp]: {
|
|
9
|
+
name: "Base App",
|
|
10
|
+
description: "The Base Wallet app",
|
|
11
|
+
icon: "icons/icon-baseapp.svg",
|
|
12
|
+
},
|
|
8
13
|
[Source.basenames]: {
|
|
9
14
|
name: "Basenames",
|
|
10
15
|
description: "The domain system on Base",
|
|
@@ -14,6 +19,10 @@ const SOURCE_DATA = {
|
|
|
14
19
|
name: "Camp Network",
|
|
15
20
|
description: "Modernize intellectual property infrastructure",
|
|
16
21
|
},
|
|
22
|
+
[Source.clicker]: {
|
|
23
|
+
name: "Clicker",
|
|
24
|
+
description: "The social network for traders",
|
|
25
|
+
},
|
|
17
26
|
[Source.clusters]: {
|
|
18
27
|
name: "Clusters",
|
|
19
28
|
description: "On-chain social protocol",
|
|
@@ -58,6 +67,11 @@ const SOURCE_DATA = {
|
|
|
58
67
|
description: "Web3 social platform",
|
|
59
68
|
icon: "icons/icon-firefly.svg",
|
|
60
69
|
},
|
|
70
|
+
[Source.fomo]: {
|
|
71
|
+
name: "fomo",
|
|
72
|
+
description: "The Social-First Crypto Trading Platform",
|
|
73
|
+
icon: "icons/icon-fomo.svg",
|
|
74
|
+
},
|
|
61
75
|
[Source.foundation]: {
|
|
62
76
|
name: "Foundation",
|
|
63
77
|
description: "NFT marketplace",
|