Skip to content

Commit

Permalink
refactor: rename to wallet-wallet-connect
Browse files Browse the repository at this point in the history
  • Loading branch information
bangjelkoski committed Oct 23, 2024
1 parent 5f27985 commit ea5a1c2
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/wallets/wallet-strategy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@injectivelabs/utils": "^1.14.14",
"@injectivelabs/wallet-base": "^0.0.1",
"@injectivelabs/wallet-core": "^0.0.1",
"@injectivelabs/wallet-connect": "^0.0.1",
"@injectivelabs/wallet-wallet-connect": "^0.0.1",
"@injectivelabs/wallet-cosmos": "^0.0.1",
"@injectivelabs/wallet-cosmostation": "^0.0.1",
"@injectivelabs/wallet-evm": "^0.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { EvmWalletStrategy } from '@injectivelabs/wallet-evm'
import { BaseWalletStrategy } from '@injectivelabs/wallet-core'
import { CosmosWalletStrategy } from '@injectivelabs/wallet-cosmos'
import { TrezorWalletStrategy } from '@injectivelabs/wallet-trezor'
import { WalletConnectStrategy } from '@injectivelabs/wallet-connect'
import { WalletConnectStrategy } from '@injectivelabs/wallet-wallet-connect'
import { PrivateKeyWalletStrategy } from '@injectivelabs/wallet-private-key'
import { CosmostationWalletStrategy } from '@injectivelabs/wallet-cosmostation'

Expand Down
2 changes: 1 addition & 1 deletion packages/wallets/wallet-strategy/tsconfig.build.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"path": "../wallet-base/tsconfig.build.esm.json"
},
{
"path": "../wallet-connect/tsconfig.build.esm.json"
"path": "../wallet-wallet-connect/tsconfig.build.esm.json"
},
{
"path": "../wallet-core/tsconfig.build.esm.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/wallets/wallet-strategy/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"path": "../wallet-base/tsconfig.build.json"
},
{
"path": "../wallet-connect/tsconfig.build.json"
"path": "../wallet-wallet-connect/tsconfig.build.json"
},
{
"path": "../wallet-core/tsconfig.build.json"
Expand Down
3 changes: 3 additions & 0 deletions packages/wallets/wallet-strategy/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
},
{
"path": "../wallet-keplr/tsconfig.json"
},
{
"path": "../wallet-wallet-connect/tsconfig.json"
}
]
}
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# 🌟 Injective Protocol - Magic Wallet Strategy
# 🌟 Injective Protocol - Wallet connect Wallet Strategy

<!-- TODO -->

[![downloads](https://img.shields.io/npm/dm/@injectivelabs/wallet-ts.svg)](https://www.npmjs.com/package/@injectivelabs/wallet-ts)
[![npm-version](https://img.shields.io/npm/v/@injectivelabs/wallet-ts.svg)](https://www.npmjs.com/package/@injectivelabs/wallet-ts)
[![license](https://img.shields.io/npm/l/express.svg)]()

_Package to use Magic Wallets on Injective via the wallet strategy._
_Package to use Wallet Connect Wallets on Injective via the wallet strategy._

---

## 📚 Installation

```bash
yarn add @injectivelabs/wallet-magic
yarn add @injectivelabs/wallet-wallet-connect
```

---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@injectivelabs/wallet-connect",
"name": "@injectivelabs/wallet-wallet-connect",
"description": "Wallet connect strategy for use with @injectivelabs/wallet-core.",
"version": "0.0.1",
"sideEffects": false,
Expand All @@ -15,7 +15,7 @@
"dist"
],
"_moduleAliases": {
"~wallet-connect": "dist"
"~wallet-wallet-connect": "dist"
},
"scripts": {
"postinstall": "link-module-alias",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"moduleResolution": "Node",
"tsBuildInfoFile": "../../.build-cache/wallet-connect.esm.tsbuildinfo"
"tsBuildInfoFile": "../../.build-cache/wallet-wallet-connect.esm.tsbuildinfo"
},
"references": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist/cjs",
"tsBuildInfoFile": "../../.build-cache/wallet-connect.tsbuildinfo"
"tsBuildInfoFile": "../../.build-cache/wallet-wallet-connect.tsbuildinfo"
},
"include": [
"./src/**/*.ts"
Expand Down
File renamed without changes.
9 changes: 9 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@
"@injectivelabs/wallet-keplr": [
"packages/wallets/wallet-keplr"
],
"@injectivelabs/wallet-trezor": [
"packages/wallets/wallet-trezor"
],
"@injectivelabs/wallet-magic": [
"packages/wallets/wallet-magic"
],
"@injectivelabs/wallet-wallet-connect": [
"packages/wallets/wallet-wallet-connect"
],
"@injectivelabs/wallet-strategy": [
"packages/wallets/wallet-strategy"
]
Expand Down

0 comments on commit ea5a1c2

Please sign in to comment.