Skip to content

Commit

Permalink
Remove MyAlgo
Browse files Browse the repository at this point in the history
  • Loading branch information
SilentRhetoric committed Feb 9, 2024
1 parent d881012 commit 0545266
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ The following wallet interfaces are supported and the library provides icons & l
| Defly | <https://defly.app> | <https://docs.defly.app/app/overview> | Mobile |
| Pera | <https://perawallet.app> | <https://docs.perawallet.app> | Mobile & Web |
| Exodus | <https://www.exodus.com> | <https://docs.exodus.com> | Chrome extension, MainNet only |
| MyAlgo | <https://connect.myalgo.com> | <https://connect.myalgo.com/docs/introduction> | Web |
| Ledger | <https://www.ledger.com/ledger-live> | <https://github.com/LedgerHQ/ledger-live/tree/develop/libs/ledgerjs/packages/hw-app-algorand> | Direct USB in Chrome |
| WalletConnect | <https://walletconnect.com> | <https://docs.walletconnect.com/2.0/> | Any compatible app |
| MetaMask (experimental) | <https://metamask.io> <https://snapalgo.io> | <https://snapalgo.io/docs> | Pre-release Algorand Snap running in MetaMask Flask <https://metamask.io/flask/> |
Expand All @@ -92,6 +91,8 @@ The following wallets have been identified as supporting Algorand but have not b

- [AlgoSigner](https://github.com/PureStake/algosigner/tree/develop) is no longer maintained by PureStake and so is not included.

- [MyAlgo](https://connect.myalgo.com) has shut down and so is not included.

## How It Works

### Configuration
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-algo-wallets",
"version": "0.1.6",
"version": "0.1.7",
"description": "Integrate multiple Algorand wallets with a SolidJS web application client",
"license": "MIT",
"author": "Brian Whippo <dev@silentrhetoric.com>",
Expand Down
4 changes: 2 additions & 2 deletions src/useSolidAlgoWallets.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { makePersisted } from '@solid-primitives/storage'
import { WalletAccount, WalletInterface } from './types'
import { createRoot, createSignal } from 'solid-js'
import UseMyAlgo from './wallets/myalgo'
// import UseMyAlgo from './wallets/myalgo'
import UseExodus from './wallets/exodus'
import UseLedger from './wallets/ledger'
import UsePera from './wallets/pera'
Expand Down Expand Up @@ -31,7 +31,7 @@ function UseSolidAlgoWallets() {
UsePera,
UseLedger,
UseExodus,
UseMyAlgo,
// UseMyAlgo,
UseWalletConnect,
// useWalletConnectOld,
// useDaffi,
Expand Down

0 comments on commit 0545266

Please sign in to comment.