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

Fix/wallet connect modal dependency #43

Closed
wants to merge 5 commits into from
Closed
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.0-rc.9] - 2023-11-23
### Fixed
- `@distributedlab/w3p` - `@walletconnect/modal` dependency

## [1.0.0-rc.8] - 2023-11-07
### Fixed
- `@distributedlab/tools` - `BN.fromRaw` parsing string value with the exponential notation
Expand Down Expand Up @@ -340,7 +344,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[old repo]: https://github.com/distributed-lab/web-kit-old

[Unreleased]: https://github.com/distributed-lab/web-kit/compare/1.0.0-rc.8...HEAD
[Unreleased]: https://github.com/distributed-lab/web-kit/compare/1.0.0-rc.9...HEAD
[1.0.0-rc.9]: https://github.com/distributed-lab/web-kit/compare/1.0.0-rc.8...1.0.0-rc.9
[1.0.0-rc.8]: https://github.com/distributed-lab/web-kit/compare/1.0.0-rc.7...1.0.0-rc.8
[1.0.0-rc.7]: https://github.com/distributed-lab/web-kit/compare/1.0.0-rc.6...1.0.0-rc.7
[1.0.0-rc.6]: https://github.com/distributed-lab/web-kit/compare/1.0.0-rc.5...1.0.0-rc.6
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"build:fetcher": "yarn workspace @distributedlab/fetcher build",
"build:tools": "yarn workspace @distributedlab/tools build",
"build:reactivity": "yarn workspace @distributedlab/reactivity build",
"build:w3p": "yarn workspace @rarimo/w3p build",
"build:w3p": "yarn workspace @distributedlab/w3p build",
"docs": "typedoc --options typedoc.json",
"lint": "eslint . --ext .ts --fix --cache --max-warnings=0 && yarn workspaces foreach -pv --no-private run typecheck",
"test": "yarn workspaces foreach -pv --no-private run test",
Expand Down
2 changes: 1 addition & 1 deletion packages/fetcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/fetcher",
"version": "1.0.0-rc.8",
"version": "1.0.0-rc.9",
"description": "Fetch API wrapper with the extended functionality and simple interface",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/jac/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/jac",
"version": "1.0.0-rc.8",
"version": "1.0.0-rc.9",
"description": "A library for constructing JSON-API compliant requests and responses",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/reactivity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/reactivity",
"version": "1.0.0-rc.8",
"version": "1.0.0-rc.9",
"description": "Implementation of the reactivity connections to propagate changes between objects",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/tools",
"version": "1.0.0-rc.8",
"version": "1.0.0-rc.9",
"description": "Collection of common utility functions and classes",
"repository": {
"type": "git",
Expand Down
7 changes: 2 additions & 5 deletions packages/w3p/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/w3p",
"version": "1.0.0-rc.8",
"version": "1.0.0-rc.9",
"description": "Wrapper for Web3 Providers",
"repository": {
"type": "git",
Expand Down Expand Up @@ -51,6 +51,7 @@
"@near-wallet-selector/core": "^7.8.2",
"@near-wallet-selector/my-near-wallet": "^7.8.2",
"@solana/web3.js": "^1.73.2",
"@walletconnect/modal": "^2.6.1",
"@walletconnect/universal-provider": "^2.10.0",
"bs58": "^5.0.0",
"ethers": "^5.7.2",
Expand All @@ -62,13 +63,9 @@
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.1",
"@types/node": "^18.14.2",
"@walletconnect/modal": "^2.6.1",
"jest": "^29.5.0",
"tsc-alias": "^1.8.2"
},
"peerDependencies": {
"@walletconnect/modal": "^2.6.1"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"readmeFile": "./README.md",
Expand Down
2 changes: 0 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,6 @@ __metadata:
jest: ^29.5.0
near-api-js: ^1.1.0
tsc-alias: ^1.8.2
peerDependencies:
"@walletconnect/modal": ^2.6.1
languageName: unknown
linkType: soft

Expand Down