@bitgo-beta/sdk-coin-cosmos 1.0.1-alpha.10 → 1.0.1-alpha.100
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/dist/test/resources/mantra.d.ts +70 -0
- package/dist/test/resources/mantra.d.ts.map +1 -0
- package/dist/test/resources/mantra.js +80 -0
- package/dist/test/testUtils/generators.d.ts +54 -0
- package/dist/test/testUtils/generators.d.ts.map +1 -0
- package/dist/test/testUtils/generators.js +183 -0
- package/dist/test/testUtils/index.d.ts +8 -0
- package/dist/test/testUtils/index.d.ts.map +1 -0
- package/dist/test/testUtils/index.js +25 -0
- package/dist/test/testUtils/types.d.ts +203 -0
- package/dist/test/testUtils/types.d.ts.map +1 -0
- package/dist/test/testUtils/types.js +7 -0
- package/dist/test/testUtils/utils.d.ts +43 -0
- package/dist/test/testUtils/utils.d.ts.map +1 -0
- package/dist/test/testUtils/utils.js +122 -0
- package/dist/test/unit/cosmosSharedCoin.d.ts +2 -0
- package/dist/test/unit/cosmosSharedCoin.d.ts.map +1 -0
- package/dist/test/unit/cosmosSharedCoin.js +300 -0
- package/dist/test/unit/keyPair.d.ts +2 -0
- package/dist/test/unit/keyPair.d.ts.map +1 -0
- package/dist/test/unit/keyPair.js +73 -0
- package/dist/test/unit/register.d.ts +2 -0
- package/dist/test/unit/register.d.ts.map +1 -0
- package/dist/test/unit/register.js +48 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.js +46 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.js +186 -0
- package/dist/test/unit/utils.d.ts +2 -0
- package/dist/test/unit/utils.d.ts.map +1 -0
- package/dist/test/unit/utils.js +82 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +12 -9
- package/.eslintignore +0 -5
- package/.mocharc.yml +0 -8
- package/CHANGELOG.md +0 -34
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo-beta/sdk-coin-cosmos",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.100",
|
|
4
4
|
"description": "BitGo SDK coin library for Cosmos",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "yarn tsc --build --incremental --verbose .",
|
|
9
9
|
"fmt": "prettier --write .",
|
|
10
|
-
"check-fmt": "prettier --check
|
|
10
|
+
"check-fmt": "prettier --check '**/*.{ts,js,json}'",
|
|
11
11
|
"clean": "rm -r ./dist",
|
|
12
12
|
"lint": "eslint --quiet .",
|
|
13
13
|
"prepare": "npm run build",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=20 <23"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -40,17 +40,20 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bitgo-beta/abstract-cosmos": "1.0.0-alpha.
|
|
44
|
-
"@bitgo-beta/sdk-api": "1.6.1-alpha.
|
|
45
|
-
"@bitgo-beta/sdk-core": "2.4.1-alpha.
|
|
46
|
-
"@bitgo-beta/statics": "10.0.1-alpha.
|
|
43
|
+
"@bitgo-beta/abstract-cosmos": "1.0.0-alpha.402",
|
|
44
|
+
"@bitgo-beta/sdk-api": "1.6.1-alpha.453",
|
|
45
|
+
"@bitgo-beta/sdk-core": "2.4.1-alpha.454",
|
|
46
|
+
"@bitgo-beta/statics": "10.0.1-alpha.454",
|
|
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-test": "^9.
|
|
53
|
+
"@bitgo-beta/sdk-test": "^9.1.20"
|
|
54
54
|
},
|
|
55
|
-
"
|
|
55
|
+
"files": [
|
|
56
|
+
"dist"
|
|
57
|
+
],
|
|
58
|
+
"gitHead": "f3db5d080888737aa951608b0cc14c3cbcf60dde"
|
|
56
59
|
}
|
package/.mocharc.yml
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-cosmos@1.3.0...@bitgo/sdk-coin-cosmos@1.4.0) (2025-07-31)
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
- **sdk-coin-cosmos:** generic config driven tests for shared cosmos ([b181c59](https://github.com/BitGo/BitGoJS/commit/b181c5924002196e365341cf573dd35dcd7cd6cc))
|
|
11
|
-
- **sdk-coin-cosmos:** integration of cosmos module ([9d2e614](https://github.com/BitGo/BitGoJS/commit/9d2e614b987835896259e17b3716be3b2e40a279))
|
|
12
|
-
|
|
13
|
-
# [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-cosmos@1.2.0...@bitgo/sdk-coin-cosmos@1.3.0) (2025-07-30)
|
|
14
|
-
|
|
15
|
-
### Bug Fixes
|
|
16
|
-
|
|
17
|
-
- **sdk-coin-cosmos:** utils and cosmosSharedCoin fixes ([e58c0e8](https://github.com/BitGo/BitGoJS/commit/e58c0e838f768520814ca5e6697be272ef49049a))
|
|
18
|
-
|
|
19
|
-
### Features
|
|
20
|
-
|
|
21
|
-
- **root:** align package versions for cosmos ([865b287](https://github.com/BitGo/BitGoJS/commit/865b287431ae743c99faaa50318857dff54dfa8b))
|
|
22
|
-
- **sdk-coin-cosmos:** add cosmos shared coin functionalities ([a170bad](https://github.com/BitGo/BitGoJS/commit/a170bad860723b844ee12e3f257ea93df1831ee9))
|
|
23
|
-
|
|
24
|
-
# 1.2.0 (2025-07-25)
|
|
25
|
-
|
|
26
|
-
### Features
|
|
27
|
-
|
|
28
|
-
- add sdk-coin-cosmos skeleton ([4d7fd4a](https://github.com/BitGo/BitGoJS/commit/4d7fd4ae10417c063e2ddc9da37ba44dd408fdb8))
|
|
29
|
-
|
|
30
|
-
# 1.1.0 (2025-07-23)
|
|
31
|
-
|
|
32
|
-
### Features
|
|
33
|
-
|
|
34
|
-
- add sdk-coin-cosmos skeleton ([4d7fd4a](https://github.com/BitGo/BitGoJS/commit/4d7fd4ae10417c063e2ddc9da37ba44dd408fdb8))
|