diff --git a/docs/package.json b/docs/package.json index 7d800b917..066765edb 100644 --- a/docs/package.json +++ b/docs/package.json @@ -88,7 +88,7 @@ "@web3-onboard/web3auth": "^2.2.3", "@web3-onboard/xdefi": "^2.0.4", "@web3-onboard/zeal": "^2.0.4", - "@web3-onboard/particle-network": "^2.0.1-alpha.3", + "@web3-onboard/particle-network": "^2.0.1-alpha.4", "animejs": "^3.2.1", "bnc-sdk": "^4.6.6", "ethers": "^5.7.0", diff --git a/docs/yarn.lock b/docs/yarn.lock index ffbe106b9..d4751bc44 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -6074,10 +6074,10 @@ "@web3-onboard/common" "^2.3.3" lodash.uniqby "^4.7.0" -"@web3-onboard/particle-network@^2.0.1-alpha.2": - version "2.0.1-alpha.2" - resolved "https://registry.yarnpkg.com/@web3-onboard/particle-network/-/particle-network-2.0.1-alpha.2.tgz#45e60de7033904c1d2304759dff3caf9f8d5db81" - integrity sha512-jc3YdIwQWS2aSV7aGt2Z965e9ulN7Kz6hBew2BVlIu1FLDOFsbca402Btk8SWc/tsURcNgVnfNpwPqLM2rnCEw== +"@web3-onboard/particle-network@^2.0.1-alpha.3": + version "2.0.1-alpha.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/particle-network/-/particle-network-2.0.1-alpha.3.tgz#0a6b51272723676e1fb8804c9c9b70bec09666e2" + integrity sha512-Mad0p6pkexbQNGVOdDna2QTVQ/GVd4PluIE0zsNNIpR8gmzJAZY3K8XnDZdH6riZ5/I15DQE5Sgb3bmxygWPlA== dependencies: "@particle-network/auth" "^1.2.1" "@particle-network/provider" "^1.2.0" diff --git a/packages/particle-network/package.json b/packages/particle-network/package.json index 7ec3e598e..50e629e8a 100644 --- a/packages/particle-network/package.json +++ b/packages/particle-network/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/particle-network", - "version": "2.0.1-alpha.3", + "version": "2.0.1-alpha.4", "description": "Particle Network SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/particle-network/src/index.ts b/packages/particle-network/src/index.ts index 7cc1a63fe..be9e067ac 100644 --- a/packages/particle-network/src/index.ts +++ b/packages/particle-network/src/index.ts @@ -77,7 +77,8 @@ const particleAuth = (options: ParticleAuthModuleOptions): WalletInit => { import('./linkedin.js'), import('./github.js'), import('./twitch.js'), - import('./discord.js') + import('./discord.js'), + import('./icon.js') ]) const iconMap = { @@ -91,7 +92,8 @@ const particleAuth = (options: ParticleAuthModuleOptions): WalletInit => { linkedin: icons[7].default, github: icons[8].default, twitch: icons[9].default, - discord: icons[10].default + discord: icons[10].default, + icon: icons[10].default } const iconName = authType && setAsDisplay ? authType : ('icon' as AuthTypes)