@dynamic-labs/iconic 3.9.7 → 3.9.9
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/CHANGELOG.md +22 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +3 -3
- package/src/helpers/getIconicSpriteUrl.cjs +1 -1
- package/src/helpers/getIconicSpriteUrl.js +1 -1
- package/src/icons/chains/index.cjs +12 -0
- package/src/icons/chains/index.d.ts +2 -0
- package/src/icons/chains/index.js +11 -1
- package/src/icons/social/index.cjs +6 -0
- package/src/icons/social/index.d.ts +1 -0
- package/src/icons/social/index.js +6 -1
- package/src/icons/wallets/index.cjs +49 -1
- package/src/icons/wallets/index.d.ts +8 -0
- package/src/icons/wallets/index.js +42 -2
- package/src/index.cjs +11 -0
- package/src/index.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
|
|
2
|
+
### [3.9.9](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.8...v3.9.9) (2025-01-15)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add hook for upgrading embedded wallets ([#7785](https://github.com/dynamic-labs/DynamicAuth/issues/7785)) ([5dcf776](https://github.com/dynamic-labs/DynamicAuth/commit/5dcf7769d5bd1c98d4e35427e0a0b34f52b530f6))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* getWalletClient method not returning client with chain for Coinbase ([#7799](https://github.com/dynamic-labs/DynamicAuth/issues/7799)) ([#7800](https://github.com/dynamic-labs/DynamicAuth/issues/7800)) ([4f77045](https://github.com/dynamic-labs/DynamicAuth/commit/4f770456eb986ca16e17c4445b277f9d447b05e4))
|
|
13
|
+
* handle session key expire error code ([#7807](https://github.com/dynamic-labs/DynamicAuth/issues/7807)) ([1700b53](https://github.com/dynamic-labs/DynamicAuth/commit/1700b53496fd6577a6240af3c16ade8bdd8666a1))
|
|
14
|
+
|
|
15
|
+
### [3.9.8](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.7...v3.9.8) (2025-01-09)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* allow confirmed commitment transactions for solana ([#7735](https://github.com/dynamic-labs/DynamicAuth/issues/7735)) ([7a43b79](https://github.com/dynamic-labs/DynamicAuth/commit/7a43b792ba615e277573b5540801a8b3e0c68155))
|
|
21
|
+
* allow selecting wallet directly without showing group view if wallet key is the same as group key ([#7748](https://github.com/dynamic-labs/DynamicAuth/issues/7748)) ([b335cbd](https://github.com/dynamic-labs/DynamicAuth/commit/b335cbdafc22d757c84995bd276c55681e6b2de5))
|
|
22
|
+
* make transaction destination parsing for regular EVM transactions ([#7719](https://github.com/dynamic-labs/DynamicAuth/issues/7719)) ([890bc0f](https://github.com/dynamic-labs/DynamicAuth/commit/890bc0f32a79fe3670d9dc4474b34c85854c0e70))
|
|
23
|
+
|
|
2
24
|
### [3.9.7](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.6...v3.9.7) (2025-01-02)
|
|
3
25
|
|
|
4
26
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/iconic",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.9",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"react-dom": "^18.0.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@dynamic-labs/assert-package-version": "3.9.
|
|
34
|
-
"@dynamic-labs/logger": "3.9.
|
|
33
|
+
"@dynamic-labs/assert-package-version": "3.9.9",
|
|
34
|
+
"@dynamic-labs/logger": "3.9.9",
|
|
35
35
|
"sharp": "0.33.2"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -10,7 +10,7 @@ const DEFAULT_ICONIC_SPRITE_URL = 'https://iconic.dynamic-static-assets.com/icon
|
|
|
10
10
|
const getIconicSpriteUrl = () => {
|
|
11
11
|
var _a, _b, _c;
|
|
12
12
|
if (typeof process !== 'undefined' && process.env) {
|
|
13
|
-
return ((_c = (_b = (_a = process.env['ICONIC_SPRITE_CDN_URL']) !== null && _a !== void 0 ? _a : process.env['NEXT_PUBLIC_ICONIC_SPRITE_CDN_URL']) !== null && _b !== void 0 ? _b : process.env['
|
|
13
|
+
return ((_c = (_b = (_a = process.env['ICONIC_SPRITE_CDN_URL']) !== null && _a !== void 0 ? _a : process.env['NEXT_PUBLIC_ICONIC_SPRITE_CDN_URL']) !== null && _b !== void 0 ? _b : process.env['REACT_APP_ICONIC_SPRITE_CDN_URL']) !== null && _c !== void 0 ? _c : DEFAULT_ICONIC_SPRITE_URL);
|
|
14
14
|
}
|
|
15
15
|
return DEFAULT_ICONIC_SPRITE_URL;
|
|
16
16
|
};
|
|
@@ -6,7 +6,7 @@ const DEFAULT_ICONIC_SPRITE_URL = 'https://iconic.dynamic-static-assets.com/icon
|
|
|
6
6
|
const getIconicSpriteUrl = () => {
|
|
7
7
|
var _a, _b, _c;
|
|
8
8
|
if (typeof process !== 'undefined' && process.env) {
|
|
9
|
-
return ((_c = (_b = (_a = process.env['ICONIC_SPRITE_CDN_URL']) !== null && _a !== void 0 ? _a : process.env['NEXT_PUBLIC_ICONIC_SPRITE_CDN_URL']) !== null && _b !== void 0 ? _b : process.env['
|
|
9
|
+
return ((_c = (_b = (_a = process.env['ICONIC_SPRITE_CDN_URL']) !== null && _a !== void 0 ? _a : process.env['NEXT_PUBLIC_ICONIC_SPRITE_CDN_URL']) !== null && _b !== void 0 ? _b : process.env['REACT_APP_ICONIC_SPRITE_CDN_URL']) !== null && _c !== void 0 ? _c : DEFAULT_ICONIC_SPRITE_URL);
|
|
10
10
|
}
|
|
11
11
|
return DEFAULT_ICONIC_SPRITE_URL;
|
|
12
12
|
};
|
|
@@ -45,6 +45,11 @@ const CosmosIcon = Iconic.createIconic({
|
|
|
45
45
|
iconName: 'cosmos',
|
|
46
46
|
sourcePath: 'icons/chains/cosmos.svg',
|
|
47
47
|
});
|
|
48
|
+
const EclipseIcon = Iconic.createIconic({
|
|
49
|
+
alt: 'Eclipse',
|
|
50
|
+
iconName: 'eclipse',
|
|
51
|
+
sourcePath: 'icons/chains/eclipse.svg',
|
|
52
|
+
});
|
|
48
53
|
const OsmosisIcon = Iconic.createIconic({
|
|
49
54
|
alt: 'Osmosis Chain',
|
|
50
55
|
iconName: 'osmosis',
|
|
@@ -55,6 +60,11 @@ const AxelarIcon = Iconic.createIconic({
|
|
|
55
60
|
iconName: 'axelar',
|
|
56
61
|
sourcePath: 'icons/chains/axelar.svg',
|
|
57
62
|
});
|
|
63
|
+
const SeiIcon = Iconic.createIconic({
|
|
64
|
+
alt: 'Sei Chain',
|
|
65
|
+
iconName: 'sei',
|
|
66
|
+
sourcePath: 'icons/chains/sei.svg',
|
|
67
|
+
});
|
|
58
68
|
const EthereumIcon = Iconic.createIconic({
|
|
59
69
|
alt: 'Ethereum Chain',
|
|
60
70
|
iconName: 'ethereum',
|
|
@@ -115,6 +125,7 @@ exports.BerachainIcon = BerachainIcon;
|
|
|
115
125
|
exports.BitcoinIcon = BitcoinIcon;
|
|
116
126
|
exports.BnbIcon = BnbIcon;
|
|
117
127
|
exports.CosmosIcon = CosmosIcon;
|
|
128
|
+
exports.EclipseIcon = EclipseIcon;
|
|
118
129
|
exports.EthereumIcon = EthereumIcon;
|
|
119
130
|
exports.FlowIcon = FlowIcon;
|
|
120
131
|
exports.GnosisIcon = GnosisIcon;
|
|
@@ -123,6 +134,7 @@ exports.OptimismIcon = OptimismIcon;
|
|
|
123
134
|
exports.OsmosisIcon = OsmosisIcon;
|
|
124
135
|
exports.PalmIcon = PalmIcon;
|
|
125
136
|
exports.PolygonIcon = PolygonIcon;
|
|
137
|
+
exports.SeiIcon = SeiIcon;
|
|
126
138
|
exports.SolanaIcon = SolanaIcon;
|
|
127
139
|
exports.StarknetIcon = StarknetIcon;
|
|
128
140
|
exports.ZkSyncIcon = ZkSyncIcon;
|
|
@@ -7,8 +7,10 @@ export declare const BerachainIcon: Iconic;
|
|
|
7
7
|
export declare const BitcoinIcon: Iconic;
|
|
8
8
|
export declare const BnbIcon: Iconic;
|
|
9
9
|
export declare const CosmosIcon: Iconic;
|
|
10
|
+
export declare const EclipseIcon: Iconic;
|
|
10
11
|
export declare const OsmosisIcon: Iconic;
|
|
11
12
|
export declare const AxelarIcon: Iconic;
|
|
13
|
+
export declare const SeiIcon: Iconic;
|
|
12
14
|
export declare const EthereumIcon: Iconic;
|
|
13
15
|
export declare const GoerliIcon: Iconic;
|
|
14
16
|
export declare const ZkSyncIcon: Iconic;
|
|
@@ -41,6 +41,11 @@ const CosmosIcon = createIconic({
|
|
|
41
41
|
iconName: 'cosmos',
|
|
42
42
|
sourcePath: 'icons/chains/cosmos.svg',
|
|
43
43
|
});
|
|
44
|
+
const EclipseIcon = createIconic({
|
|
45
|
+
alt: 'Eclipse',
|
|
46
|
+
iconName: 'eclipse',
|
|
47
|
+
sourcePath: 'icons/chains/eclipse.svg',
|
|
48
|
+
});
|
|
44
49
|
const OsmosisIcon = createIconic({
|
|
45
50
|
alt: 'Osmosis Chain',
|
|
46
51
|
iconName: 'osmosis',
|
|
@@ -51,6 +56,11 @@ const AxelarIcon = createIconic({
|
|
|
51
56
|
iconName: 'axelar',
|
|
52
57
|
sourcePath: 'icons/chains/axelar.svg',
|
|
53
58
|
});
|
|
59
|
+
const SeiIcon = createIconic({
|
|
60
|
+
alt: 'Sei Chain',
|
|
61
|
+
iconName: 'sei',
|
|
62
|
+
sourcePath: 'icons/chains/sei.svg',
|
|
63
|
+
});
|
|
54
64
|
const EthereumIcon = createIconic({
|
|
55
65
|
alt: 'Ethereum Chain',
|
|
56
66
|
iconName: 'ethereum',
|
|
@@ -102,4 +112,4 @@ const StarknetIcon = createIconic({
|
|
|
102
112
|
sourcePath: 'icons/chains/starknet.svg',
|
|
103
113
|
});
|
|
104
114
|
|
|
105
|
-
export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SolanaIcon, StarknetIcon, ZkSyncIcon };
|
|
115
|
+
export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, StarknetIcon, ZkSyncIcon };
|
|
@@ -175,6 +175,11 @@ const LineIcon = Iconic.createIconic({
|
|
|
175
175
|
iconName: 'line',
|
|
176
176
|
sourcePath: 'icons/social/line.svg',
|
|
177
177
|
});
|
|
178
|
+
const ShopifyIcon = Iconic.createIconic({
|
|
179
|
+
alt: 'shopify',
|
|
180
|
+
iconName: 'shopify',
|
|
181
|
+
sourcePath: 'icons/social/shopify.svg',
|
|
182
|
+
});
|
|
178
183
|
|
|
179
184
|
exports.AppleDarkSocialIcon = AppleDarkSocialIcon;
|
|
180
185
|
exports.AppleSocialIcon = AppleSocialIcon;
|
|
@@ -197,6 +202,7 @@ exports.LinkedinIcon = LinkedinIcon;
|
|
|
197
202
|
exports.MicrosoftIcon = MicrosoftIcon;
|
|
198
203
|
exports.OnePasswordDarkIcon = OnePasswordDarkIcon;
|
|
199
204
|
exports.OnePasswordIcon = OnePasswordIcon;
|
|
205
|
+
exports.ShopifyIcon = ShopifyIcon;
|
|
200
206
|
exports.SlackIcon = SlackIcon;
|
|
201
207
|
exports.SpotifyDarkIcon = SpotifyDarkIcon;
|
|
202
208
|
exports.SpotifyIcon = SpotifyIcon;
|
|
@@ -171,5 +171,10 @@ const LineIcon = createIconic({
|
|
|
171
171
|
iconName: 'line',
|
|
172
172
|
sourcePath: 'icons/social/line.svg',
|
|
173
173
|
});
|
|
174
|
+
const ShopifyIcon = createIconic({
|
|
175
|
+
alt: 'shopify',
|
|
176
|
+
iconName: 'shopify',
|
|
177
|
+
sourcePath: 'icons/social/shopify.svg',
|
|
178
|
+
});
|
|
174
179
|
|
|
175
|
-
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
|
|
180
|
+
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, ShopifyIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
|
|
@@ -97,9 +97,19 @@ const ExodusIcon = Iconic.createIconic({
|
|
|
97
97
|
});
|
|
98
98
|
const FireblocksIcon = Iconic.createIconic({
|
|
99
99
|
alt: 'Fireblocks Wallet',
|
|
100
|
-
iconName: 'fireblocks
|
|
100
|
+
iconName: 'fireblocks',
|
|
101
101
|
sourcePath: 'icons/wallets/fireblocks.svg',
|
|
102
102
|
});
|
|
103
|
+
const FlowWalletIcon = Iconic.createIconic({
|
|
104
|
+
alt: 'Flow Wallet',
|
|
105
|
+
iconName: 'flowwallet',
|
|
106
|
+
sourcePath: 'icons/wallets/flowwallet.svg',
|
|
107
|
+
});
|
|
108
|
+
const FordefiIcon = Iconic.createIconic({
|
|
109
|
+
alt: 'Fordefi Wallet',
|
|
110
|
+
iconName: 'fordefi',
|
|
111
|
+
sourcePath: 'icons/wallets/fordefi.svg',
|
|
112
|
+
});
|
|
103
113
|
const FortmaticIcon = Iconic.createIconic({
|
|
104
114
|
alt: 'Fortmatic Wallet',
|
|
105
115
|
iconName: 'fortmatic',
|
|
@@ -180,6 +190,16 @@ const OpeanSeaIcon = Iconic.createIconic({
|
|
|
180
190
|
iconName: 'opeansea',
|
|
181
191
|
sourcePath: 'icons/wallets/opensea.svg',
|
|
182
192
|
});
|
|
193
|
+
const OylIcon = Iconic.createIconic({
|
|
194
|
+
alt: 'Oyl Wallet',
|
|
195
|
+
iconName: 'oyl',
|
|
196
|
+
sourcePath: 'icons/wallets/oyl.svg',
|
|
197
|
+
});
|
|
198
|
+
const PasskeysWalletIcon = Iconic.createIconic({
|
|
199
|
+
alt: 'Passkeys Wallet',
|
|
200
|
+
iconName: 'passkeys',
|
|
201
|
+
sourcePath: 'icons/wallets/passkeys.svg',
|
|
202
|
+
});
|
|
183
203
|
const PeraIcon = Iconic.createIconic({
|
|
184
204
|
alt: 'Pera Wallet',
|
|
185
205
|
iconName: 'pera',
|
|
@@ -355,7 +375,28 @@ const CloverWalletIcon = Iconic.createIconic({
|
|
|
355
375
|
iconName: 'clover',
|
|
356
376
|
sourcePath: 'icons/wallets/clover.svg',
|
|
357
377
|
});
|
|
378
|
+
const UnknownWalletIcon = Iconic.createIconic({
|
|
379
|
+
alt: 'Unknown Wallet',
|
|
380
|
+
iconName: 'unknown-wallet',
|
|
381
|
+
sourcePath: 'icons/wallets/unknown.svg',
|
|
382
|
+
});
|
|
383
|
+
const AbstractIcon = Iconic.createIconic({
|
|
384
|
+
alt: 'Abstract',
|
|
385
|
+
iconName: 'abstract',
|
|
386
|
+
sourcePath: 'icons/wallets/abstract.svg',
|
|
387
|
+
});
|
|
388
|
+
const EdenOnlineIcon = Iconic.createIconic({
|
|
389
|
+
alt: 'Eden Online',
|
|
390
|
+
iconName: 'edenonline',
|
|
391
|
+
sourcePath: 'icons/wallets/edenonline.svg',
|
|
392
|
+
});
|
|
393
|
+
const IntersendIcon = Iconic.createIconic({
|
|
394
|
+
alt: 'Intersend',
|
|
395
|
+
iconName: 'intersend',
|
|
396
|
+
sourcePath: 'icons/wallets/intersend.svg',
|
|
397
|
+
});
|
|
358
398
|
|
|
399
|
+
exports.AbstractIcon = AbstractIcon;
|
|
359
400
|
exports.AmbireIcon = AmbireIcon;
|
|
360
401
|
exports.ArgentMobile = ArgentMobile;
|
|
361
402
|
exports.ArgentWebWallet = ArgentWebWallet;
|
|
@@ -374,15 +415,19 @@ exports.CryptoIcon = CryptoIcon;
|
|
|
374
415
|
exports.DapperIcon = DapperIcon;
|
|
375
416
|
exports.DawnIcon = DawnIcon;
|
|
376
417
|
exports.DefaultIcon = DefaultIcon;
|
|
418
|
+
exports.EdenOnlineIcon = EdenOnlineIcon;
|
|
377
419
|
exports.EmailSignIcon = EmailSignIcon;
|
|
378
420
|
exports.ExodusIcon = ExodusIcon;
|
|
379
421
|
exports.FireblocksIcon = FireblocksIcon;
|
|
422
|
+
exports.FlowWalletIcon = FlowWalletIcon;
|
|
423
|
+
exports.FordefiIcon = FordefiIcon;
|
|
380
424
|
exports.FortmaticIcon = FortmaticIcon;
|
|
381
425
|
exports.FrameIcon = FrameIcon;
|
|
382
426
|
exports.GamestopIcon = GamestopIcon;
|
|
383
427
|
exports.GlowIcon = GlowIcon;
|
|
384
428
|
exports.ImTokenWallet = ImTokenWallet;
|
|
385
429
|
exports.InjectedWalletIcon = InjectedWalletIcon;
|
|
430
|
+
exports.IntersendIcon = IntersendIcon;
|
|
386
431
|
exports.KeplrIcon = KeplrIcon;
|
|
387
432
|
exports.LeatherIcon = LeatherIcon;
|
|
388
433
|
exports.LedgerIcon = LedgerIcon;
|
|
@@ -402,6 +447,8 @@ exports.OmniIcon = OmniIcon;
|
|
|
402
447
|
exports.OneInchIcon = OneInchIcon;
|
|
403
448
|
exports.OneKeyIcon = OneKeyIcon;
|
|
404
449
|
exports.OpeanSeaIcon = OpeanSeaIcon;
|
|
450
|
+
exports.OylIcon = OylIcon;
|
|
451
|
+
exports.PasskeysWalletIcon = PasskeysWalletIcon;
|
|
405
452
|
exports.PeraIcon = PeraIcon;
|
|
406
453
|
exports.PhantomIcon = PhantomIcon;
|
|
407
454
|
exports.RabbyIcon = RabbyIcon;
|
|
@@ -420,6 +467,7 @@ exports.TorusIcon = TorusIcon;
|
|
|
420
467
|
exports.TrustIcon = TrustIcon;
|
|
421
468
|
exports.TurnkeyIcon = TurnkeyIcon;
|
|
422
469
|
exports.UnisatIcon = UnisatIcon;
|
|
470
|
+
exports.UnknownWalletIcon = UnknownWalletIcon;
|
|
423
471
|
exports.UnstoppableIcon = UnstoppableIcon;
|
|
424
472
|
exports.VenlyIcon = VenlyIcon;
|
|
425
473
|
exports.WalletConnectIcon = WalletConnectIcon;
|
|
@@ -18,6 +18,8 @@ export declare const EmailSignIcon: Iconic;
|
|
|
18
18
|
export declare const SignInWithEmailIcon: Iconic;
|
|
19
19
|
export declare const ExodusIcon: Iconic;
|
|
20
20
|
export declare const FireblocksIcon: Iconic;
|
|
21
|
+
export declare const FlowWalletIcon: Iconic;
|
|
22
|
+
export declare const FordefiIcon: Iconic;
|
|
21
23
|
export declare const FortmaticIcon: Iconic;
|
|
22
24
|
export declare const FrameIcon: Iconic;
|
|
23
25
|
export declare const GamestopIcon: Iconic;
|
|
@@ -34,6 +36,8 @@ export declare const MissingIcon: Iconic;
|
|
|
34
36
|
export declare const MyalgoIcon: Iconic;
|
|
35
37
|
export declare const OmniIcon: Iconic;
|
|
36
38
|
export declare const OpeanSeaIcon: Iconic;
|
|
39
|
+
export declare const OylIcon: Iconic;
|
|
40
|
+
export declare const PasskeysWalletIcon: Iconic;
|
|
37
41
|
export declare const PeraIcon: Iconic;
|
|
38
42
|
export declare const PhantomIcon: Iconic;
|
|
39
43
|
export declare const RabbyIcon: Iconic;
|
|
@@ -69,3 +73,7 @@ export declare const AmbireIcon: Iconic;
|
|
|
69
73
|
export declare const BitGetWalletIcon: Iconic;
|
|
70
74
|
export declare const MathWalletIcon: Iconic;
|
|
71
75
|
export declare const CloverWalletIcon: Iconic;
|
|
76
|
+
export declare const UnknownWalletIcon: Iconic;
|
|
77
|
+
export declare const AbstractIcon: Iconic;
|
|
78
|
+
export declare const EdenOnlineIcon: Iconic;
|
|
79
|
+
export declare const IntersendIcon: Iconic;
|
|
@@ -93,9 +93,19 @@ const ExodusIcon = createIconic({
|
|
|
93
93
|
});
|
|
94
94
|
const FireblocksIcon = createIconic({
|
|
95
95
|
alt: 'Fireblocks Wallet',
|
|
96
|
-
iconName: 'fireblocks
|
|
96
|
+
iconName: 'fireblocks',
|
|
97
97
|
sourcePath: 'icons/wallets/fireblocks.svg',
|
|
98
98
|
});
|
|
99
|
+
const FlowWalletIcon = createIconic({
|
|
100
|
+
alt: 'Flow Wallet',
|
|
101
|
+
iconName: 'flowwallet',
|
|
102
|
+
sourcePath: 'icons/wallets/flowwallet.svg',
|
|
103
|
+
});
|
|
104
|
+
const FordefiIcon = createIconic({
|
|
105
|
+
alt: 'Fordefi Wallet',
|
|
106
|
+
iconName: 'fordefi',
|
|
107
|
+
sourcePath: 'icons/wallets/fordefi.svg',
|
|
108
|
+
});
|
|
99
109
|
const FortmaticIcon = createIconic({
|
|
100
110
|
alt: 'Fortmatic Wallet',
|
|
101
111
|
iconName: 'fortmatic',
|
|
@@ -176,6 +186,16 @@ const OpeanSeaIcon = createIconic({
|
|
|
176
186
|
iconName: 'opeansea',
|
|
177
187
|
sourcePath: 'icons/wallets/opensea.svg',
|
|
178
188
|
});
|
|
189
|
+
const OylIcon = createIconic({
|
|
190
|
+
alt: 'Oyl Wallet',
|
|
191
|
+
iconName: 'oyl',
|
|
192
|
+
sourcePath: 'icons/wallets/oyl.svg',
|
|
193
|
+
});
|
|
194
|
+
const PasskeysWalletIcon = createIconic({
|
|
195
|
+
alt: 'Passkeys Wallet',
|
|
196
|
+
iconName: 'passkeys',
|
|
197
|
+
sourcePath: 'icons/wallets/passkeys.svg',
|
|
198
|
+
});
|
|
179
199
|
const PeraIcon = createIconic({
|
|
180
200
|
alt: 'Pera Wallet',
|
|
181
201
|
iconName: 'pera',
|
|
@@ -351,5 +371,25 @@ const CloverWalletIcon = createIconic({
|
|
|
351
371
|
iconName: 'clover',
|
|
352
372
|
sourcePath: 'icons/wallets/clover.svg',
|
|
353
373
|
});
|
|
374
|
+
const UnknownWalletIcon = createIconic({
|
|
375
|
+
alt: 'Unknown Wallet',
|
|
376
|
+
iconName: 'unknown-wallet',
|
|
377
|
+
sourcePath: 'icons/wallets/unknown.svg',
|
|
378
|
+
});
|
|
379
|
+
const AbstractIcon = createIconic({
|
|
380
|
+
alt: 'Abstract',
|
|
381
|
+
iconName: 'abstract',
|
|
382
|
+
sourcePath: 'icons/wallets/abstract.svg',
|
|
383
|
+
});
|
|
384
|
+
const EdenOnlineIcon = createIconic({
|
|
385
|
+
alt: 'Eden Online',
|
|
386
|
+
iconName: 'edenonline',
|
|
387
|
+
sourcePath: 'icons/wallets/edenonline.svg',
|
|
388
|
+
});
|
|
389
|
+
const IntersendIcon = createIconic({
|
|
390
|
+
alt: 'Intersend',
|
|
391
|
+
iconName: 'intersend',
|
|
392
|
+
sourcePath: 'icons/wallets/intersend.svg',
|
|
393
|
+
});
|
|
354
394
|
|
|
355
|
-
export { AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, PeraIcon, PhantomIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon };
|
|
395
|
+
export { AbstractIcon, AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, EdenOnlineIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FlowWalletIcon, FordefiIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, IntersendIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, OylIcon, PasskeysWalletIcon, PeraIcon, PhantomIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnknownWalletIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon };
|
package/src/index.cjs
CHANGED
|
@@ -33,6 +33,7 @@ exports.BerachainIcon = index$1.BerachainIcon;
|
|
|
33
33
|
exports.BitcoinIcon = index$1.BitcoinIcon;
|
|
34
34
|
exports.BnbIcon = index$1.BnbIcon;
|
|
35
35
|
exports.CosmosIcon = index$1.CosmosIcon;
|
|
36
|
+
exports.EclipseIcon = index$1.EclipseIcon;
|
|
36
37
|
exports.EthereumIcon = index$1.EthereumIcon;
|
|
37
38
|
exports.FlowIcon = index$1.FlowIcon;
|
|
38
39
|
exports.GnosisIcon = index$1.GnosisIcon;
|
|
@@ -41,9 +42,11 @@ exports.OptimismIcon = index$1.OptimismIcon;
|
|
|
41
42
|
exports.OsmosisIcon = index$1.OsmosisIcon;
|
|
42
43
|
exports.PalmIcon = index$1.PalmIcon;
|
|
43
44
|
exports.PolygonIcon = index$1.PolygonIcon;
|
|
45
|
+
exports.SeiIcon = index$1.SeiIcon;
|
|
44
46
|
exports.SolanaIcon = index$1.SolanaIcon;
|
|
45
47
|
exports.StarknetIcon = index$1.StarknetIcon;
|
|
46
48
|
exports.ZkSyncIcon = index$1.ZkSyncIcon;
|
|
49
|
+
exports.AbstractIcon = index$2.AbstractIcon;
|
|
47
50
|
exports.AmbireIcon = index$2.AmbireIcon;
|
|
48
51
|
exports.ArgentMobile = index$2.ArgentMobile;
|
|
49
52
|
exports.ArgentWebWallet = index$2.ArgentWebWallet;
|
|
@@ -62,15 +65,19 @@ exports.CryptoIcon = index$2.CryptoIcon;
|
|
|
62
65
|
exports.DapperIcon = index$2.DapperIcon;
|
|
63
66
|
exports.DawnIcon = index$2.DawnIcon;
|
|
64
67
|
exports.DefaultIcon = index$2.DefaultIcon;
|
|
68
|
+
exports.EdenOnlineIcon = index$2.EdenOnlineIcon;
|
|
65
69
|
exports.EmailSignIcon = index$2.EmailSignIcon;
|
|
66
70
|
exports.ExodusIcon = index$2.ExodusIcon;
|
|
67
71
|
exports.FireblocksIcon = index$2.FireblocksIcon;
|
|
72
|
+
exports.FlowWalletIcon = index$2.FlowWalletIcon;
|
|
73
|
+
exports.FordefiIcon = index$2.FordefiIcon;
|
|
68
74
|
exports.FortmaticIcon = index$2.FortmaticIcon;
|
|
69
75
|
exports.FrameIcon = index$2.FrameIcon;
|
|
70
76
|
exports.GamestopIcon = index$2.GamestopIcon;
|
|
71
77
|
exports.GlowIcon = index$2.GlowIcon;
|
|
72
78
|
exports.ImTokenWallet = index$2.ImTokenWallet;
|
|
73
79
|
exports.InjectedWalletIcon = index$2.InjectedWalletIcon;
|
|
80
|
+
exports.IntersendIcon = index$2.IntersendIcon;
|
|
74
81
|
exports.KeplrIcon = index$2.KeplrIcon;
|
|
75
82
|
exports.LeatherIcon = index$2.LeatherIcon;
|
|
76
83
|
exports.LedgerIcon = index$2.LedgerIcon;
|
|
@@ -90,6 +97,8 @@ exports.OmniIcon = index$2.OmniIcon;
|
|
|
90
97
|
exports.OneInchIcon = index$2.OneInchIcon;
|
|
91
98
|
exports.OneKeyIcon = index$2.OneKeyIcon;
|
|
92
99
|
exports.OpeanSeaIcon = index$2.OpeanSeaIcon;
|
|
100
|
+
exports.OylIcon = index$2.OylIcon;
|
|
101
|
+
exports.PasskeysWalletIcon = index$2.PasskeysWalletIcon;
|
|
93
102
|
exports.PeraIcon = index$2.PeraIcon;
|
|
94
103
|
exports.PhantomIcon = index$2.PhantomIcon;
|
|
95
104
|
exports.RabbyIcon = index$2.RabbyIcon;
|
|
@@ -108,6 +117,7 @@ exports.TorusIcon = index$2.TorusIcon;
|
|
|
108
117
|
exports.TrustIcon = index$2.TrustIcon;
|
|
109
118
|
exports.TurnkeyIcon = index$2.TurnkeyIcon;
|
|
110
119
|
exports.UnisatIcon = index$2.UnisatIcon;
|
|
120
|
+
exports.UnknownWalletIcon = index$2.UnknownWalletIcon;
|
|
111
121
|
exports.UnstoppableIcon = index$2.UnstoppableIcon;
|
|
112
122
|
exports.VenlyIcon = index$2.VenlyIcon;
|
|
113
123
|
exports.WalletConnectIcon = index$2.WalletConnectIcon;
|
|
@@ -137,6 +147,7 @@ exports.LinkedinIcon = index$4.LinkedinIcon;
|
|
|
137
147
|
exports.MicrosoftIcon = index$4.MicrosoftIcon;
|
|
138
148
|
exports.OnePasswordDarkIcon = index$4.OnePasswordDarkIcon;
|
|
139
149
|
exports.OnePasswordIcon = index$4.OnePasswordIcon;
|
|
150
|
+
exports.ShopifyIcon = index$4.ShopifyIcon;
|
|
140
151
|
exports.SlackIcon = index$4.SlackIcon;
|
|
141
152
|
exports.SpotifyDarkIcon = index$4.SpotifyDarkIcon;
|
|
142
153
|
exports.SpotifyIcon = index$4.SpotifyIcon;
|
package/src/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
|
|
3
3
|
import { version } from '../package.js';
|
|
4
4
|
export { BraveIcon, ChromeIcon, EdgeIcon, FirefoxIcon, OperaIcon, SafariIcon } from './icons/browsers/index.js';
|
|
5
|
-
export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SolanaIcon, StarknetIcon, ZkSyncIcon } from './icons/chains/index.js';
|
|
6
|
-
export { AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, PeraIcon, PhantomIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';
|
|
5
|
+
export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, StarknetIcon, ZkSyncIcon } from './icons/chains/index.js';
|
|
6
|
+
export { AbstractIcon, AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, EdenOnlineIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FlowWalletIcon, FordefiIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, IntersendIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, OylIcon, PasskeysWalletIcon, PeraIcon, PhantomIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnknownWalletIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';
|
|
7
7
|
export { AndroidIcon, AppleIcon } from './icons/mobile/index.js';
|
|
8
|
-
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
|
|
8
|
+
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, ShopifyIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
|
|
9
9
|
export { ArrowSendIcon, CaptchaWaveIcon, UserProfileIcon } from './icons/misc/index.js';
|
|
10
10
|
export { SocialIcon } from './components/SocialIcon.js';
|
|
11
11
|
export { getSocialIcon } from './components/getSocialIcon.js';
|