diff --git a/package-lock.json b/package-lock.json index a004f5c4d..1dc21e4d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,7 +45,7 @@ "@types/react-dom": "^17.0.20", "@walletconnect/web3-provider": "^1.7.8", "@wormhole-foundation/sdk-icons": "^0.6.8", - "@xlabs-libs/wallet-aggregator-algorand": "0.0.1-alpha.26", + "@xlabs-libs/wallet-aggregator-algorand": "^0.0.1-alpha.28", "@xlabs-libs/wallet-aggregator-aptos": "^0.0.1-alpha.12", "@xlabs-libs/wallet-aggregator-core": "^0.0.1-alpha.21", "@xlabs-libs/wallet-aggregator-evm": "^0.0.1-alpha.43", @@ -7919,17 +7919,6 @@ "version": "1.1.0", "license": "BSD-3-Clause" }, - "node_modules/@randlabs/communication-bridge": { - "version": "1.0.1", - "license": "Apache-2.0" - }, - "node_modules/@randlabs/myalgo-connect": { - "version": "1.4.2", - "license": "Apache-2.0", - "dependencies": { - "@randlabs/communication-bridge": "1.0.1" - } - }, "node_modules/@react-native-community/cli": { "version": "11.3.6", "license": "MIT", @@ -16762,8 +16751,9 @@ } }, "node_modules/@xlabs-libs/wallet-aggregator-algorand": { - "version": "0.0.1-alpha.26", - "license": "MIT", + "version": "0.0.1-alpha.28", + "resolved": "https://registry.npmjs.org/@xlabs-libs/wallet-aggregator-algorand/-/wallet-aggregator-algorand-0.0.1-alpha.28.tgz", + "integrity": "sha512-rcKsXZw0z0fC/jDNMyjBrIMkFTw3Z1gdE3W3nVbxwMxt+sBqUe3IPRPvV/099jklsJod9guG6GIzwYR1Nm2HmA==", "dependencies": { "@blockshake/defly-connect": "^1.1.1", "@ledgerhq/hw-app-algorand": "^6.27.12", @@ -16771,9 +16761,8 @@ "@ledgerhq/hw-transport-web-ble": "^6.27.12", "@ledgerhq/hw-transport-webhid": "^6.27.12", "@ledgerhq/hw-transport-webusb": "^6.27.12", - "@perawallet/connect": "^1.3.2", - "@randlabs/myalgo-connect": "^1.4.0", - "@xlabs-libs/wallet-aggregator-core": "^0.0.1-alpha.17", + "@perawallet/connect": "^1.3.3", + "@xlabs-libs/wallet-aggregator-core": "^0.0.1-alpha.21", "algosdk": "^1.24.0" } }, diff --git a/package.json b/package.json index 169186f76..bc472a67d 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "@types/react-dom": "^17.0.20", "@walletconnect/web3-provider": "^1.7.8", "@wormhole-foundation/sdk-icons": "^0.6.8", - "@xlabs-libs/wallet-aggregator-algorand": "0.0.1-alpha.26", + "@xlabs-libs/wallet-aggregator-algorand": "^0.0.1-alpha.28", "@xlabs-libs/wallet-aggregator-aptos": "^0.0.1-alpha.12", "@xlabs-libs/wallet-aggregator-core": "^0.0.1-alpha.21", "@xlabs-libs/wallet-aggregator-evm": "^0.0.1-alpha.43", diff --git a/src/contexts/AlgorandWalletContext.tsx b/src/contexts/AlgorandWalletContext.tsx index 18f299b8c..2ac46c5d6 100644 --- a/src/contexts/AlgorandWalletContext.tsx +++ b/src/contexts/AlgorandWalletContext.tsx @@ -5,17 +5,11 @@ import { useMemo } from "react"; import { AlgorandLedgerWallet, DeflyWallet, - MyAlgoWallet, PeraWallet, } from "@xlabs-libs/wallet-aggregator-algorand"; export const getAlgorandWallets = (): AlgorandWallet[] => { - return [ - new MyAlgoWallet(), - new PeraWallet(), - new DeflyWallet({}), - new AlgorandLedgerWallet(), - ]; + return [new PeraWallet(), new DeflyWallet({}), new AlgorandLedgerWallet()]; }; export const useAlgorandWallet = () => {