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

chore: Remove Opto Wallet from the Wallet Selector #993

Merged
merged 1 commit into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ NEAR Wallet Selector makes it easy for users to interact with your dApp by provi
- [Nightly Connect](https://www.npmjs.com/package/@near-wallet-selector/nightly-connect) - Bridge wallet.
- [Here Wallet](https://www.npmjs.com/package/@near-wallet-selector/here-wallet) - Mobile wallet.
- [NearFi Wallet](https://www.npmjs.com/package/@near-wallet-selector/nearfi) - Mobile wallet.
- [Opto Wallet](https://www.npmjs.com/package/@near-wallet-selector/opto-wallet) - Mobile wallet & Browser wallet.
- [Ramper Wallet](https://www.npmjs.com/package/@near-wallet-selector/ramper-wallet) - Browser wallet.
- [Near Mobile Wallet](https://nearmobile.app/) - Mobile Wallet.

Expand Down Expand Up @@ -69,7 +68,6 @@ yarn add \
@near-wallet-selector/wallet-connect \
@near-wallet-selector/nightly-connect \
@near-wallet-selector/coin98-wallet \
@near-wallet-selector/opto-wallet \
@near-wallet-selector/neth \
@near-wallet-selector/xdefi \
@near-wallet-selector/ramper-wallet \
Expand All @@ -92,7 +90,6 @@ npm install \
@near-wallet-selector/wallet-connect \
@near-wallet-selector/nightly-connect \
@near-wallet-selector/coin98-wallet \
@near-wallet-selector/opto-wallet \
@near-wallet-selector/neth \
@near-wallet-selector/xdefi \
@near-wallet-selector/ramper-wallet \
Expand Down Expand Up @@ -130,7 +127,6 @@ import { setupWalletConnect } from "@near-wallet-selector/wallet-connect";
import { setupNightlyConnect } from "@near-wallet-selector/nightly-connect";
import { setupNearFi } from "@near-wallet-selector/nearfi";
import { setupCoin98Wallet } from "@near-wallet-selector/coin98-wallet";
import { setupOptoWallet } from "@near-wallet-selector/opto-wallet";
import { setupNeth } from "@near-wallet-selector/neth";
import { setupXDEFI } from "@near-wallet-selector/xdefi";
import { setupRamperWallet } from "@near-wallet-selector/ramper-wallet";
Expand All @@ -152,7 +148,6 @@ const selector = await setupWalletSelector({
setupLedger(),
setupNearFi(),
setupCoin98Wallet(),
setupOptoWallet(),
setupNeth(),
setupXDEFI(),
setupWalletConnect({
Expand Down
5 changes: 0 additions & 5 deletions examples/angular/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,6 @@
"input": "packages/coin98-wallet/assets/",
"output": "assets/"
},
{
"glob": "**/*",
"input": "packages/opto-wallet/assets/",
"output": "assets/"
},
{
"glob": "**/*",
"input": "packages/finer-wallet/assets/",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { setupHereWallet } from "@near-wallet-selector/here-wallet";
import { setupCoin98Wallet } from "@near-wallet-selector/coin98-wallet";
import { setupNearFi } from "@near-wallet-selector/nearfi";
import { setupNeth } from "@near-wallet-selector/neth";
import { setupOptoWallet } from "@near-wallet-selector/opto-wallet";
import { setupFinerWallet } from "@near-wallet-selector/finer-wallet";
import { setupWalletConnect } from "@near-wallet-selector/wallet-connect";
import { setupNightlyConnect } from "@near-wallet-selector/nightly-connect";
Expand Down Expand Up @@ -71,7 +70,6 @@ export class WalletSelectorExportComponent implements OnInit {
setupNeth({
bundle: false,
}),
setupOptoWallet(),
setupFinerWallet(),
setupWalletConnect({
projectId: "c4f79cc...",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { setupCoin98Wallet } from "@near-wallet-selector/coin98-wallet";
import { setupNearFi } from "@near-wallet-selector/nearfi";
import { setupNearSnap } from "@near-wallet-selector/near-snap";
import { setupNeth } from "@near-wallet-selector/neth";
import { setupOptoWallet } from "@near-wallet-selector/opto-wallet";
import { setupFinerWallet } from "@near-wallet-selector/finer-wallet";
import { setupWalletConnect } from "@near-wallet-selector/wallet-connect";
import { setupNightlyConnect } from "@near-wallet-selector/nightly-connect";
Expand Down Expand Up @@ -74,7 +73,6 @@ export class WalletSelectorComponent implements OnInit {
setupNeth({
bundle: false,
}),
setupOptoWallet(),
setupFinerWallet(),
setupWalletConnect({
projectId: "c8cb6204543639c31aef44ea4837a554", // Replace this with your own projectId form WalletConnect.
Expand Down
2 changes: 0 additions & 2 deletions examples/react/contexts/WalletSelectorContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { setupWalletConnect } from "@near-wallet-selector/wallet-connect";
import { setupWelldoneWallet } from "@near-wallet-selector/welldone-wallet";
import { setupNearSnap } from "@near-wallet-selector/near-snap";
import { setupNeth } from "@near-wallet-selector/neth";
import { setupOptoWallet } from "@near-wallet-selector/opto-wallet";
import { setupFinerWallet } from "@near-wallet-selector/finer-wallet";
import { setupMyNearWallet } from "@near-wallet-selector/my-near-wallet";
import { setupLedger } from "@near-wallet-selector/ledger";
Expand Down Expand Up @@ -85,7 +84,6 @@ export const WalletSelectorContextProvider: React.FC<{
gas: "300000000000000",
bundle: false,
}),
setupOptoWallet(),
setupFinerWallet(),
setupXDEFI(),
setupWalletConnect({
Expand Down
2 changes: 0 additions & 2 deletions examples/react/contexts/WalletSelectorExportContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { setupNightlyConnect } from "@near-wallet-selector/nightly-connect";
import { setupNearFi } from "@near-wallet-selector/nearfi";
import { setupWalletConnect } from "@near-wallet-selector/wallet-connect";
import { setupCoin98Wallet } from "@near-wallet-selector/coin98-wallet";
import { setupOptoWallet } from "@near-wallet-selector/opto-wallet";
import { Loading } from "../components/Loading";
import { setupMyNearWallet } from "@near-wallet-selector/my-near-wallet";
import { setupLedger } from "@near-wallet-selector/ledger";
Expand Down Expand Up @@ -70,7 +69,6 @@ export const ExportAccountSelectorContextProvider: React.FC<{
setupHereWallet(),
setupCoin98Wallet(),
setupNearFi(),
setupOptoWallet(),
setupRamperWallet(),
setupWalletConnect({
projectId: "c4f79cc...",
Expand Down
5 changes: 0 additions & 5 deletions examples/react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,6 @@
"input": "packages/coin98-wallet/assets/",
"output": "assets/"
},
{
"glob": "**/*",
"input": "packages/opto-wallet/assets/",
"output": "assets/"
},
{
"glob": "**/*",
"input": "packages/finer-wallet/assets/",
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"nearfi",
"meteor-wallet",
"welldone-wallet",
"opto-wallet",
"finer-wallet",
"ramper-wallet",
"near-mobile-wallet"
Expand Down Expand Up @@ -60,7 +59,6 @@
"build:wallet-connect": "nx run-many --target=build --projects=wallet-connect --configuration=production",
"build:nightly-connect": "nx run-many --target=build --projects=nightly-connect --configuration=production",
"build:narwallets": "nx run-many --target=build --projects=narwallets --configuration=production",
"build:opto-wallet": "nx run-many --target=build --projects=opto-wallet --configuration=production",
"build:finer-wallet": "nx run-many --target=build --projects=finer-wallet --configuration=production",
"build:xdefi-wallet": "nx run-many --target=build --projects=xdefi --configuration=production",
"build:wallet-utils": "nx run-many --target=build --projects=wallet-utils --configuration=production",
Expand Down
10 changes: 0 additions & 10 deletions packages/opto-wallet/.babelrc

This file was deleted.

18 changes: 0 additions & 18 deletions packages/opto-wallet/.eslintrc.json

This file was deleted.

63 changes: 0 additions & 63 deletions packages/opto-wallet/README.md

This file was deleted.

Binary file removed packages/opto-wallet/assets/opto-wallet-icon.png
Binary file not shown.
14 changes: 0 additions & 14 deletions packages/opto-wallet/jest.config.js

This file was deleted.

16 changes: 0 additions & 16 deletions packages/opto-wallet/jest.config.ts

This file was deleted.

27 changes: 0 additions & 27 deletions packages/opto-wallet/package.json

This file was deleted.

56 changes: 0 additions & 56 deletions packages/opto-wallet/project.json

This file was deleted.

2 changes: 0 additions & 2 deletions packages/opto-wallet/src/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/opto-wallet/src/lib/icon.ts

This file was deleted.

Loading
Loading