@coin98-com/wallet-adapter-compass 0.1.60 → 0.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +6 -3
- package/CHANGELOG.md +27 -0
- package/dist/index.mjs +5 -0
- package/package.json +6 -4
- package/tsup.config.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @coin98-com/wallet-adapter-compass@0.1.
|
2
|
+
> @coin98-com/wallet-adapter-compass@0.1.63 build /Users/khiemdang/Coding/Partner/WalletSelectorC98/packages/wallets/compass/wallets
|
3
3
|
> tsup
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
@@ -9,8 +9,11 @@
|
|
9
9
|
[34mCLI[39m Target: es6
|
10
10
|
[34mCLI[39m Cleaning output folder
|
11
11
|
[34mCJS[39m Build start
|
12
|
+
[34mESM[39m Build start
|
12
13
|
[32mCJS[39m [1mdist/index.js [22m[32m278.00 B[39m
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
14
|
+
[32mCJS[39m ⚡️ Build success in 39ms
|
15
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m241.00 B[39m
|
16
|
+
[32mESM[39m ⚡️ Build success in 40ms
|
14
17
|
[34mDTS[39m Build start
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
18
|
+
[32mDTS[39m ⚡️ Build success in 1915ms
|
16
19
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m310.00 B[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,32 @@
|
|
1
1
|
# @coin98-com/wallet-adapter-keplr
|
2
2
|
|
3
|
+
## 0.1.63
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- fix: prevent connect metamask on coin98 dApp
|
8
|
+
- Updated dependencies
|
9
|
+
- @coin98-com/wallet-adapter-compass-cosmos@0.1.63
|
10
|
+
- @coin98-com/wallet-adapter-base@0.1.63
|
11
|
+
|
12
|
+
## 0.1.62
|
13
|
+
|
14
|
+
### Patch Changes
|
15
|
+
|
16
|
+
- fix: reverse solana chainId, not installed state
|
17
|
+
- Updated dependencies
|
18
|
+
- @coin98-com/wallet-adapter-compass-cosmos@0.1.62
|
19
|
+
- @coin98-com/wallet-adapter-base@0.1.62
|
20
|
+
|
21
|
+
## 0.1.61
|
22
|
+
|
23
|
+
### Patch Changes
|
24
|
+
|
25
|
+
- fix: module support, keep connection until switchchain success
|
26
|
+
- Updated dependencies
|
27
|
+
- @coin98-com/wallet-adapter-compass-cosmos@0.1.61
|
28
|
+
- @coin98-com/wallet-adapter-base@0.1.61
|
29
|
+
|
3
30
|
## 0.1.60
|
4
31
|
|
5
32
|
### Patch Changes
|
package/dist/index.mjs
ADDED
package/package.json
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@coin98-com/wallet-adapter-compass",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.63",
|
4
4
|
"sideEffects": false,
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"main": "./dist/index.js",
|
7
7
|
"exports": {
|
8
|
-
"
|
8
|
+
"types": "./dist/index.d.ts",
|
9
|
+
"import": "./dist/index.mjs",
|
10
|
+
"default": "./dist/index.js"
|
9
11
|
},
|
10
12
|
"license": "MIT",
|
11
13
|
"devDependencies": {
|
@@ -13,8 +15,8 @@
|
|
13
15
|
"tsconfig": "0.0.69"
|
14
16
|
},
|
15
17
|
"dependencies": {
|
16
|
-
"@coin98-com/wallet-adapter-
|
17
|
-
"@coin98-com/wallet-adapter-
|
18
|
+
"@coin98-com/wallet-adapter-compass-cosmos": "0.1.63",
|
19
|
+
"@coin98-com/wallet-adapter-base": "0.1.63"
|
18
20
|
},
|
19
21
|
"scripts": {
|
20
22
|
"build": "tsup",
|