@dynamic-labs/iconic 4.25.7 → 4.25.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 CHANGED
@@ -1,4 +1,24 @@
1
1
 
2
+ ### [4.25.9](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.8...v4.25.9) (2025-08-01)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * use zerodev rpc for zerodev calls ([#9280](https://github.com/dynamic-labs/dynamic-auth/issues/9280)) ([87d52f3](https://github.com/dynamic-labs/dynamic-auth/commit/87d52f30de968919d675b0fada15a372b1533b76))
8
+
9
+ ### [4.25.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.7...v4.25.8) (2025-07-31)
10
+
11
+
12
+ ### Features
13
+
14
+ * add link_wallet_message copykey ([#9266](https://github.com/dynamic-labs/dynamic-auth/issues/9266)) ([a465300](https://github.com/dynamic-labs/dynamic-auth/commit/a46530050db5faf6d05dd12723421d33780da034))
15
+ * implement onSignedMessage event trigger for wallet transfer flows ([#9251](https://github.com/dynamic-labs/dynamic-auth/issues/9251)) ([554cd6c](https://github.com/dynamic-labs/dynamic-auth/commit/554cd6c4cb34db5f0096d1de30877c6a6c4dcbee))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * improve session key handling ([#9249](https://github.com/dynamic-labs/dynamic-auth/issues/9249)) ([fba683a](https://github.com/dynamic-labs/dynamic-auth/commit/fba683abc57bc1ad9bdb6fb2e26b195f616d63cc))
21
+
2
22
  ### [4.25.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.6...v4.25.7) (2025-07-28)
3
23
 
4
24
  ### [4.25.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.5...v4.25.6) (2025-07-28)
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.25.7";
6
+ var version = "4.25.9";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.25.7";
2
+ var version = "4.25.9";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "4.25.7",
3
+ "version": "4.25.9",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -22,8 +22,8 @@
22
22
  "react-dom": ">=18.0.0 <20.0.0"
23
23
  },
24
24
  "dependencies": {
25
- "@dynamic-labs/assert-package-version": "4.25.7",
26
- "@dynamic-labs/logger": "4.25.7",
25
+ "@dynamic-labs/assert-package-version": "4.25.9",
26
+ "@dynamic-labs/logger": "4.25.9",
27
27
  "sharp": "0.33.5"
28
28
  }
29
29
  }
@@ -20,6 +20,11 @@ const AuroraIcon = Iconic.createIconic({
20
20
  iconName: 'aurora',
21
21
  sourcePath: 'icons/chains/aurora.svg',
22
22
  });
23
+ const AxelarIcon = Iconic.createIconic({
24
+ alt: 'Axelar Chain',
25
+ iconName: 'axelar',
26
+ sourcePath: 'icons/chains/axelar.svg',
27
+ });
23
28
  const BaseChainIcon = Iconic.createIconic({
24
29
  alt: 'Base Chain',
25
30
  iconName: 'base',
@@ -50,36 +55,11 @@ const EclipseIcon = Iconic.createIconic({
50
55
  iconName: 'eclipse',
51
56
  sourcePath: 'icons/chains/eclipse.svg',
52
57
  });
53
- const OsmosisIcon = Iconic.createIconic({
54
- alt: 'Osmosis Chain',
55
- iconName: 'osmosis',
56
- sourcePath: 'icons/chains/osmosis.svg',
57
- });
58
- const AxelarIcon = Iconic.createIconic({
59
- alt: 'Axelar Chain',
60
- iconName: 'axelar',
61
- sourcePath: 'icons/chains/axelar.svg',
62
- });
63
- const SeiIcon = Iconic.createIconic({
64
- alt: 'Sei Chain',
65
- iconName: 'sei',
66
- sourcePath: 'icons/chains/sei.svg',
67
- });
68
58
  const EthereumIcon = Iconic.createIconic({
69
59
  alt: 'Ethereum Chain',
70
60
  iconName: 'ethereum',
71
61
  sourcePath: 'icons/chains/ethereum.svg',
72
62
  });
73
- const GoerliIcon = Iconic.createIconic({
74
- alt: 'Goerli Chain',
75
- iconName: 'goerli',
76
- sourcePath: 'icons/chains/goerli.svg',
77
- });
78
- const ZkSyncIcon = Iconic.createIconic({
79
- alt: 'zkSync Era Chain',
80
- iconName: 'zkSync',
81
- sourcePath: 'icons/chains/zkSync.svg',
82
- });
83
63
  const FlowIcon = Iconic.createIconic({
84
64
  alt: 'Flow Chain',
85
65
  iconName: 'flow',
@@ -90,11 +70,21 @@ const GnosisIcon = Iconic.createIconic({
90
70
  iconName: 'gnosis',
91
71
  sourcePath: 'icons/chains/gnosis.svg',
92
72
  });
73
+ const GoerliIcon = Iconic.createIconic({
74
+ alt: 'Goerli Chain',
75
+ iconName: 'goerli',
76
+ sourcePath: 'icons/chains/goerli.svg',
77
+ });
93
78
  const OptimismIcon = Iconic.createIconic({
94
79
  alt: 'Optimism Chain',
95
80
  iconName: 'optimism',
96
81
  sourcePath: 'icons/chains/optimism.svg',
97
82
  });
83
+ const OsmosisIcon = Iconic.createIconic({
84
+ alt: 'Osmosis Chain',
85
+ iconName: 'osmosis',
86
+ sourcePath: 'icons/chains/osmosis.svg',
87
+ });
98
88
  const PalmIcon = Iconic.createIconic({
99
89
  alt: 'Palm Chain',
100
90
  iconName: 'palm',
@@ -105,11 +95,21 @@ const PolygonIcon = Iconic.createIconic({
105
95
  iconName: 'polygon',
106
96
  sourcePath: 'icons/chains/polygon.svg',
107
97
  });
98
+ const SeiIcon = Iconic.createIconic({
99
+ alt: 'Sei Chain',
100
+ iconName: 'sei',
101
+ sourcePath: 'icons/chains/sei.svg',
102
+ });
108
103
  const SolanaIcon = Iconic.createIconic({
109
104
  alt: 'Solana Chain',
110
105
  iconName: 'solana',
111
106
  sourcePath: 'icons/chains/solana.svg',
112
107
  });
108
+ const SparkIcon = Iconic.createIconic({
109
+ alt: 'Spark Chain',
110
+ iconName: 'spark',
111
+ sourcePath: 'icons/chains/spark.svg',
112
+ });
113
113
  const StarknetIcon = Iconic.createIconic({
114
114
  alt: 'Starknet Chain',
115
115
  iconName: 'starknet',
@@ -120,6 +120,11 @@ const SuiIcon = Iconic.createIconic({
120
120
  iconName: 'sui',
121
121
  sourcePath: 'icons/chains/sui.svg',
122
122
  });
123
+ const ZkSyncIcon = Iconic.createIconic({
124
+ alt: 'zkSync Era Chain',
125
+ iconName: 'zkSync',
126
+ sourcePath: 'icons/chains/zkSync.svg',
127
+ });
123
128
 
124
129
  exports.AlgorandIcon = AlgorandIcon;
125
130
  exports.ArbitrumIcon = ArbitrumIcon;
@@ -141,6 +146,7 @@ exports.PalmIcon = PalmIcon;
141
146
  exports.PolygonIcon = PolygonIcon;
142
147
  exports.SeiIcon = SeiIcon;
143
148
  exports.SolanaIcon = SolanaIcon;
149
+ exports.SparkIcon = SparkIcon;
144
150
  exports.StarknetIcon = StarknetIcon;
145
151
  exports.SuiIcon = SuiIcon;
146
152
  exports.ZkSyncIcon = ZkSyncIcon;
@@ -2,23 +2,24 @@ import { type Iconic } from '../../Iconic';
2
2
  export declare const AlgorandIcon: Iconic;
3
3
  export declare const ArbitrumIcon: Iconic;
4
4
  export declare const AuroraIcon: Iconic;
5
+ export declare const AxelarIcon: Iconic;
5
6
  export declare const BaseChainIcon: Iconic;
6
7
  export declare const BerachainIcon: Iconic;
7
8
  export declare const BitcoinIcon: Iconic;
8
9
  export declare const BnbIcon: Iconic;
9
10
  export declare const CosmosIcon: Iconic;
10
11
  export declare const EclipseIcon: Iconic;
11
- export declare const OsmosisIcon: Iconic;
12
- export declare const AxelarIcon: Iconic;
13
- export declare const SeiIcon: Iconic;
14
12
  export declare const EthereumIcon: Iconic;
15
- export declare const GoerliIcon: Iconic;
16
- export declare const ZkSyncIcon: Iconic;
17
13
  export declare const FlowIcon: Iconic;
18
14
  export declare const GnosisIcon: Iconic;
15
+ export declare const GoerliIcon: Iconic;
19
16
  export declare const OptimismIcon: Iconic;
17
+ export declare const OsmosisIcon: Iconic;
20
18
  export declare const PalmIcon: Iconic;
21
19
  export declare const PolygonIcon: Iconic;
20
+ export declare const SeiIcon: Iconic;
22
21
  export declare const SolanaIcon: Iconic;
22
+ export declare const SparkIcon: Iconic;
23
23
  export declare const StarknetIcon: Iconic;
24
24
  export declare const SuiIcon: Iconic;
25
+ export declare const ZkSyncIcon: Iconic;
@@ -16,6 +16,11 @@ const AuroraIcon = createIconic({
16
16
  iconName: 'aurora',
17
17
  sourcePath: 'icons/chains/aurora.svg',
18
18
  });
19
+ const AxelarIcon = createIconic({
20
+ alt: 'Axelar Chain',
21
+ iconName: 'axelar',
22
+ sourcePath: 'icons/chains/axelar.svg',
23
+ });
19
24
  const BaseChainIcon = createIconic({
20
25
  alt: 'Base Chain',
21
26
  iconName: 'base',
@@ -46,36 +51,11 @@ const EclipseIcon = createIconic({
46
51
  iconName: 'eclipse',
47
52
  sourcePath: 'icons/chains/eclipse.svg',
48
53
  });
49
- const OsmosisIcon = createIconic({
50
- alt: 'Osmosis Chain',
51
- iconName: 'osmosis',
52
- sourcePath: 'icons/chains/osmosis.svg',
53
- });
54
- const AxelarIcon = createIconic({
55
- alt: 'Axelar Chain',
56
- iconName: 'axelar',
57
- sourcePath: 'icons/chains/axelar.svg',
58
- });
59
- const SeiIcon = createIconic({
60
- alt: 'Sei Chain',
61
- iconName: 'sei',
62
- sourcePath: 'icons/chains/sei.svg',
63
- });
64
54
  const EthereumIcon = createIconic({
65
55
  alt: 'Ethereum Chain',
66
56
  iconName: 'ethereum',
67
57
  sourcePath: 'icons/chains/ethereum.svg',
68
58
  });
69
- const GoerliIcon = createIconic({
70
- alt: 'Goerli Chain',
71
- iconName: 'goerli',
72
- sourcePath: 'icons/chains/goerli.svg',
73
- });
74
- const ZkSyncIcon = createIconic({
75
- alt: 'zkSync Era Chain',
76
- iconName: 'zkSync',
77
- sourcePath: 'icons/chains/zkSync.svg',
78
- });
79
59
  const FlowIcon = createIconic({
80
60
  alt: 'Flow Chain',
81
61
  iconName: 'flow',
@@ -86,11 +66,21 @@ const GnosisIcon = createIconic({
86
66
  iconName: 'gnosis',
87
67
  sourcePath: 'icons/chains/gnosis.svg',
88
68
  });
69
+ const GoerliIcon = createIconic({
70
+ alt: 'Goerli Chain',
71
+ iconName: 'goerli',
72
+ sourcePath: 'icons/chains/goerli.svg',
73
+ });
89
74
  const OptimismIcon = createIconic({
90
75
  alt: 'Optimism Chain',
91
76
  iconName: 'optimism',
92
77
  sourcePath: 'icons/chains/optimism.svg',
93
78
  });
79
+ const OsmosisIcon = createIconic({
80
+ alt: 'Osmosis Chain',
81
+ iconName: 'osmosis',
82
+ sourcePath: 'icons/chains/osmosis.svg',
83
+ });
94
84
  const PalmIcon = createIconic({
95
85
  alt: 'Palm Chain',
96
86
  iconName: 'palm',
@@ -101,11 +91,21 @@ const PolygonIcon = createIconic({
101
91
  iconName: 'polygon',
102
92
  sourcePath: 'icons/chains/polygon.svg',
103
93
  });
94
+ const SeiIcon = createIconic({
95
+ alt: 'Sei Chain',
96
+ iconName: 'sei',
97
+ sourcePath: 'icons/chains/sei.svg',
98
+ });
104
99
  const SolanaIcon = createIconic({
105
100
  alt: 'Solana Chain',
106
101
  iconName: 'solana',
107
102
  sourcePath: 'icons/chains/solana.svg',
108
103
  });
104
+ const SparkIcon = createIconic({
105
+ alt: 'Spark Chain',
106
+ iconName: 'spark',
107
+ sourcePath: 'icons/chains/spark.svg',
108
+ });
109
109
  const StarknetIcon = createIconic({
110
110
  alt: 'Starknet Chain',
111
111
  iconName: 'starknet',
@@ -116,5 +116,10 @@ const SuiIcon = createIconic({
116
116
  iconName: 'sui',
117
117
  sourcePath: 'icons/chains/sui.svg',
118
118
  });
119
+ const ZkSyncIcon = createIconic({
120
+ alt: 'zkSync Era Chain',
121
+ iconName: 'zkSync',
122
+ sourcePath: 'icons/chains/zkSync.svg',
123
+ });
119
124
 
120
- export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, StarknetIcon, SuiIcon, ZkSyncIcon };
125
+ export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, SparkIcon, StarknetIcon, SuiIcon, ZkSyncIcon };
package/src/index.cjs CHANGED
@@ -45,6 +45,7 @@ exports.PalmIcon = index$1.PalmIcon;
45
45
  exports.PolygonIcon = index$1.PolygonIcon;
46
46
  exports.SeiIcon = index$1.SeiIcon;
47
47
  exports.SolanaIcon = index$1.SolanaIcon;
48
+ exports.SparkIcon = index$1.SparkIcon;
48
49
  exports.StarknetIcon = index$1.StarknetIcon;
49
50
  exports.SuiIcon = index$1.SuiIcon;
50
51
  exports.ZkSyncIcon = index$1.ZkSyncIcon;
package/src/index.js CHANGED
@@ -2,7 +2,7 @@
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, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, StarknetIcon, SuiIcon, ZkSyncIcon } from './icons/chains/index.js';
5
+ export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, SparkIcon, StarknetIcon, SuiIcon, ZkSyncIcon } from './icons/chains/index.js';
6
6
  export { BanxaIcon, CoinbasePayIcon } from './icons/onramps/index.js';
7
7
  export { AppleDarkSocialIcon, AppleSocialIcon, BinanceSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, KrakenDarkIcon, KrakenIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, ShopifyIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
8
8
  export { AbstractIcon, AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, ByBitIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, DynamicWaasIcon, 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, SlushIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuietIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnknownWalletIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';