@bitgo-beta/sdk-coin-atom 3.1.2-beta.235 → 3.1.2-beta.237
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/CHANGELOG.md +52 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,58 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-atom@3.6.0...@bitgo/sdk-coin-atom@9.0.0) (2024-01-26)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add bech32 validation to cosmos address validation ([f5008a7](https://github.com/BitGo/BitGoJS/commit/f5008a7298f9cb470795f8087b6840cf7f254369))
|
|
11
|
+
- address verification for cosmos like coins ([5ac7879](https://github.com/BitGo/BitGoJS/commit/5ac78799b460d0d03eaa841db08a6855b571a46f))
|
|
12
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
13
|
+
|
|
14
|
+
### Code Refactoring
|
|
15
|
+
|
|
16
|
+
- **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- **sdk-coin-atom:** add sendMany support for cosmos chains ([ee609ec](https://github.com/BitGo/BitGoJS/commit/ee609ec5de3d3159c78ba59ecf7f43c79f6f5870))
|
|
21
|
+
|
|
22
|
+
### BREAKING CHANGES
|
|
23
|
+
|
|
24
|
+
- **sdk-coin-atom:** restructured exports
|
|
25
|
+
|
|
26
|
+
* Removed constants overlapping with @bitgo/abstract-cosmos
|
|
27
|
+
* Removed common Interfaces exported by @bitgo/abstract-cosmos
|
|
28
|
+
|
|
29
|
+
Code dependent on the previously exported Interfaces/Constants needs to
|
|
30
|
+
be updated to import these from @bitgo/abstract-cosmos instead
|
|
31
|
+
|
|
32
|
+
# [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-atom@3.6.0...@bitgo/sdk-coin-atom@8.0.0) (2024-01-26)
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
- add bech32 validation to cosmos address validation ([f5008a7](https://github.com/BitGo/BitGoJS/commit/f5008a7298f9cb470795f8087b6840cf7f254369))
|
|
37
|
+
- address verification for cosmos like coins ([5ac7879](https://github.com/BitGo/BitGoJS/commit/5ac78799b460d0d03eaa841db08a6855b571a46f))
|
|
38
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
39
|
+
|
|
40
|
+
### Code Refactoring
|
|
41
|
+
|
|
42
|
+
- **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
- **sdk-coin-atom:** add sendMany support for cosmos chains ([ee609ec](https://github.com/BitGo/BitGoJS/commit/ee609ec5de3d3159c78ba59ecf7f43c79f6f5870))
|
|
47
|
+
|
|
48
|
+
### BREAKING CHANGES
|
|
49
|
+
|
|
50
|
+
- **sdk-coin-atom:** restructured exports
|
|
51
|
+
|
|
52
|
+
* Removed constants overlapping with @bitgo/abstract-cosmos
|
|
53
|
+
* Removed common Interfaces exported by @bitgo/abstract-cosmos
|
|
54
|
+
|
|
55
|
+
Code dependent on the previously exported Interfaces/Constants needs to
|
|
56
|
+
be updated to import these from @bitgo/abstract-cosmos instead
|
|
57
|
+
|
|
6
58
|
# [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-atom@3.6.0...@bitgo/sdk-coin-atom@7.0.0) (2024-01-25)
|
|
7
59
|
|
|
8
60
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo-beta/sdk-coin-atom",
|
|
3
|
-
"version": "3.1.2-beta.
|
|
3
|
+
"version": "3.1.2-beta.237",
|
|
4
4
|
"description": "BitGo SDK coin library for Cosmos",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bitgo-beta/abstract-cosmos": "1.0.1-beta.
|
|
44
|
-
"@bitgo-beta/sdk-core": "8.2.1-beta.
|
|
45
|
-
"@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.
|
|
46
|
-
"@bitgo-beta/statics": "15.1.1-beta.
|
|
43
|
+
"@bitgo-beta/abstract-cosmos": "1.0.1-beta.219",
|
|
44
|
+
"@bitgo-beta/sdk-core": "8.2.1-beta.237",
|
|
45
|
+
"@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.229",
|
|
46
|
+
"@bitgo-beta/statics": "15.1.1-beta.240",
|
|
47
47
|
"@cosmjs/amino": "^0.29.5",
|
|
48
48
|
"@cosmjs/encoding": "^0.29.5",
|
|
49
49
|
"@cosmjs/stargate": "^0.29.5",
|
|
50
50
|
"bignumber.js": "^9.1.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@bitgo-beta/sdk-api": "1.10.1-beta.
|
|
54
|
-
"@bitgo-beta/sdk-test": "^
|
|
53
|
+
"@bitgo-beta/sdk-api": "1.10.1-beta.237",
|
|
54
|
+
"@bitgo-beta/sdk-test": "^6.0.0",
|
|
55
55
|
"@types/lodash": "^4.14.183",
|
|
56
56
|
"axios": "^1.3.4"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "f9e5ae0032cc9a49463f13d341250dca1c9bf30d"
|
|
59
59
|
}
|