Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Particle Network (Wallet-as-a-Service) #1962

Merged
merged 20 commits into from
Feb 20, 2024

Conversation

TABASCOatw
Copy link
Contributor

@TABASCOatw TABASCOatw commented Oct 18, 2023

Description

This PR adds Particle Network as a supported wallet.

Particle Network is a Wallet-as-a-Service provider leveraging social logins to facilitate interaction via embedded wallet.

Beyond providing the capability of displaying Particle as a standalone wallet provider, functionality to display Particle as a purely social login shortcut has also been included, adding further flexibility to web3-onboard.

PLEASE NOTE- Checklist must be complete prior to review.

Checklist

  • Increment the version field in package.json of the package you have made changes in following semantic versioning and using alpha release tagging
  • Check the box that allows repo maintainers to update this PR
  • Test locally to make sure this feature/fix works
  • Run yarn check-all to confirm there are not any associated errors
  • Confirm this PR passes Circle CI checks
  • Add or update relevant information in the documentation

Docs Checklist

  • Include a screenshot of any changes (see docs README on running locally)
  • Add/update the appropriate package README (if applicable)
  • Add/update the related module in the docs demo (if applicable)
  • Add/update the related package in the docs/package.json file (if applicable)

If this PR includes changes to add an injected wallet or SDK wallet module:

Please complete the following using the internal demo package.
To run this demo use the command yarn && yarn dev to get the project running at http://localhost:8080/

Tests with demo app (injected)

  • send transaction
  • switch chains
  • sign message
  • sign typed message
  • disconnect

Tests with demo app (SDK)

  • send transaction
  • switch chains
  • sign message
  • sign typed message
  • disconnect

@socket-security
Copy link

socket-security bot commented Oct 18, 2023

New dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@particle-network/auth@1.3.1 None +9 875 kB particle-web3
npm/@particle-network/provider@1.3.2 Transitive: network +12 2.75 MB

View full report↗︎

@leightkt
Copy link
Contributor

@TABASCOatw thank you for submitting! I don't currently see any changes to the demo package, which is were all the testing should be conducted. Will you please add this new module to the demo and test and commit those changes?
If you follow this PR example, you can see the changes to the demo: PR EXAMPLE

@TABASCOatw
Copy link
Contributor Author

@TABASCOatw thank you for submitting! I don't currently see any changes to the demo package, which is were all the testing should be conducted. Will you please add this new module to the demo and test and commit those changes? If you follow this PR example, you can see the changes to the demo: PR EXAMPLE

Sure, np, how's this?

@leightkt
Copy link
Contributor

@TABASCOatw I'm seeing a bunch of errors on start up of the demo- can you take a look?

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
@TABASCOatw
Copy link
Contributor Author

Sure, will check

@TABASCOatw
Copy link
Contributor Author

@TABASCOatw I'm seeing a bunch of errors on start up of the demo- can you take a look?

Are you testing it locally? The changes to the demo in this PR assumes @web3-onboard/particle-network exists, which it wont until this is merged- this could potentially be the issue? (if so, would need to import locally when testing) Could you share some of the specific errors that you're seeing?

@TABASCOatw
Copy link
Contributor Author

@TABASCOatw I'm seeing a bunch of errors on start up of the demo- can you take a look?

Are you testing it locally? The changes to the demo in this PR assumes @web3-onboard/particle-network exists, which it wont until this is merged- this could potentially be the issue? (if so, would need to import locally when testing) Could you share some of the specific errors that you're seeing?

Bumping this quickly @leightkt

@leightkt
Copy link
Contributor

@TABASCOatw while running the demo package (which pulls packages from the repo so as far as it is concerned @web3-onboard/particle-network exists. You need to run the demo and run through the checklist for tests with demo app above. They are checked off currently, but if you haven't run the package in the demo app- those tests are incomplete

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
@TABASCOatw
Copy link
Contributor Author

@TABASCOatw I'm seeing a bunch of errors on start up of the demo- can you take a look?

Could you specify which errors you were seeing in relation to particle-network? Currently attempting to reproduce them.

Also, incase you'd like to give it a try as well, here's a deployed demo we put together a while back: https://particle-web3-onboard-demo.replit.app

@leightkt
Copy link
Contributor

leightkt commented Dec 8, 2023

@TABASCOatw I'm seeing errors for loading the social icon files:

 ERROR in ../particle-network/dist/apple.d.ts 1:8
 | Module parse failed: Unexpected token (1:8)

This is what I see when I run yarn && yarn dev to start the demo:
Screenshot 2023-12-08 at 9 19 13 AM

@TABASCOatw
Copy link
Contributor Author

@TABASCOatw I'm seeing errors for loading the social icon files:

 ERROR in ../particle-network/dist/apple.d.ts 1:8
 | Module parse failed: Unexpected token (1:8)

This is what I see when I run yarn && yarn dev to start the demo: Screenshot 2023-12-08 at 9 19 13 AM

Thanks for this! I just went ahead and applied a number of fixes, the demo no longer throws any TS errors or issues surrounding the icons. Could you give it another try when you have some time? Works locally for me now.

Thank you!

@leightkt
Copy link
Contributor

@TABASCOatw demo now builds- icon for particle is missing, and when I try to connect my wallet I get an error:
Screenshot 2023-12-21 at 10 26 01 AM
Screenshot 2023-12-21 at 10 26 18 AM

@TABASCOatw
Copy link
Contributor Author

@TABASCOatw demo now builds- icon for particle is missing, and when I try to connect my wallet I get an error: Screenshot 2023-12-21 at 10 26 01 AM Screenshot 2023-12-21 at 10 26 18 AM

Apologies, I just updated it, there was a small error in the initial update with the way in which the image was referenced. Should be good to go now, tested everything locally and all test functions work properly. Let me know if it's working on your end, and thank you for the continued help here!

@TABASCOatw
Copy link
Contributor Author

Let me know if it works now - happy to make any additional changes if needed aswell!

@leightkt
Copy link
Contributor

@TABASCOatw apologies for the delay in my response- I was out of office. Looking and testing good!

@leightkt leightkt merged commit 2e51cfe into blocknative:develop Feb 20, 2024
3 checks passed
Adamj1232 added a commit that referenced this pull request Mar 21, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 21, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 22, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 22, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 22, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 22, 2024
…Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 22, 2024
* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 22, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

* bump docs to latest w3o verisons

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>
Adamj1232 added a commit that referenced this pull request Mar 26, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.co…
Adamj1232 added a commit that referenced this pull request Mar 26, 2024
* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Mar 26, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Apr 4, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.co…
Adamj1232 added a commit that referenced this pull request Apr 4, 2024
* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Apr 4, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Apr 9, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.co…
Adamj1232 added a commit that referenced this pull request Apr 9, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: …
Adamj1232 added a commit that referenced this pull request Apr 9, 2024
* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Apr 9, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Apr 15, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.co…
Adamj1232 added a commit that referenced this pull request Apr 15, 2024
* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
Adamj1232 added a commit that referenced this pull request Apr 15, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

--…
leightkt added a commit that referenced this pull request Apr 23, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Change node verison for MM and trezor

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Decrement node version for metamask module

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump resource class for MM build

* Reset node version

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node v to 18.9.1

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of…
leightkt added a commit that referenced this pull request Apr 23, 2024
* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (docs) (#2103)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@g…
leightkt added a commit that referenced this pull request Apr 23, 2024
* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (#2104)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update MetaMask CCI node version to 18.18.1 (#2105)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Bump CCI resource class for MetaMask module (#2106)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* load ledger connect kit via package instead of loader (#2061)

* load ledger connect kit via package instead of loader

* change import ethereumprovider type file extension

* Update default optional methods, bump to minor version as deps changed and test

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Bump ledger module node version for build to 16.14.2 (#2062)

* Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063)

* Bump ledger module node version for build to 16.14.2

* Bump node version again for WC dep within ledger

* Add Lif3 Wallet Support (#2058)

* add lif3Wallet

* Update package version and add wallet to docs

* Fix Lif3 Wallet name

---------

Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Adds Particle Network (Wallet-as-a-Service) (#1962)

* Add files via upload

* Update README.md

* Create +page.md

* Update package.json

* Rename +page.md to +page.md

* Update apple.ts

* Demo addition

* Update packages/demo/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Update packages/particle-network/package.json

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* Fixes

* Correction

* Update index.ts

* Update index.ts

* Update index.ts

* Update index.ts

* Small type fix and format

* async fix

---------

Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>

* add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069)

* Add capsule to docs wallet options (#2070)

* Fix the connect modal getting covered by the bottom bar (#2057)

* fix the connect modal being covered by the bottom bar

* pump the package version

* feat: remove .mobile-safari class

* bump packages' version

* bump the version of @web3-onboard/core in other packages

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* feat: rabby support mobile (#2079)

* FEAT - Add 6963 support to injected wallets module (#2076)

* Add 6963 support to injected module

* add option to disable usage

* update docs

* Update readmes

* Helper fnc to check for executable js

* Update packages/injected/src/wallets.ts

* Merge in dev

* feat: update blocto version (#2082)

* feat: update blocto sdk version

* feat: update blocto version

* feat: update demo polygon testnet rpcUrl

* feat: update package version

* fix: update package version

* fix: use optional chaining

* fix: uppercase variable name

* fix: use css vars for font size (wallet button) (#2072)

* fix: use css vars for font-size

* chore: bump version

* chore: bump dependents

* chore: bump versions

* Bump module versions

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update: WalletConnet deps to latest (#2083)

* Update WC deps

* Update WC versions

* Fix the demo (#2086)

* Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093)

* Bump packages that require common, fix inter url (#2092)

* Update Trezor & Keepkey build node v to 18 (#2098)

* Update trezor build node v to 18

* Update keepkey node v also

* [FIX] -  Keepkey build Node version to 16.20.2 (#2099)

* Update trezor build node v to 18

* Update keepkey node v also

* Update keepkey node v

* Revert node v changes for bitkeep

* Bump MetaMask module sdk deps (#2087)

* Bump MetaMask deps

* Add engines to metamask to define node version requirements

* Update node version for metamask within CCI to 18.19.1 (#2100)

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Change node verison for MM and trezor

* Decrement node version for metamask module

* Bump resource class for MM build

* Reset node version

* Update node v to 18.9.1

* Update node min verison on MM module

* Update npm publish script

* Refine node v for metamask and trezor

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
Co-authored-by: Samy Rabah <rabah.m.samy@gmail.com>
Co-authored-by: Kean Laurens <keanlaurens@gmail.com>
Co-authored-by: Tekrajs <ricket999@gmail.com>
Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com>
Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
Co-authored-by: Hugh Do <mhughdo@gmail.com>
Co-authored-by: DMY <147dmy@gmail.com>
Co-authored-by: jimmy.pan <pan831225@gmail.com>
Co-authored-by: Ryan Waldon <ryanpwaldon@gmail.com>

* Release 2.25.0 (develop) (#2101)

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Bump versions for release and Remove console.log

* Bump versions for release and Remove console.log

* node engine

* node engine

* Release 2.25.0 (#2102)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Release 2.24.19 (develop) (#2042)

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* Release 2.24.19 (docs) (#2044)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

* Release 2.24.19 (#2043)

* Remove gamestop wallet support as wallet has been deprecated (#2037)

* Update WC imports, bump WC package version, bump WC dep version (#2036)

* Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038)

* change option name

* add Blockscout to default list of allowed domains

* change option name in docs

* increment the version

* return the old param name

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Update packages/gnosis/package.json

* Update packages/demo/package.json

* Yarn it

---------

Co-authored-by: Adam Carpenter <adamcarpenter86@gmail.com>

* Update versions for release

* Bump injected version in demo

---------

Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>

* rebase main

* Update node version required for Walletconnect package

* Yarn

* [FIX] - Update node version required for Walletconnect package (#2045)

* rebase main

* Update node version required for Walletconnect package

* Yarn

* Updated config.yml

* Updated config.yml

---------

Co-authored-by: Max Alekseenko <nnwen0609@g…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants