@bitgo-beta/sdk-coin-stt 1.0.1-beta.382 → 1.0.1-beta.384

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.
Files changed (47) hide show
  1. package/dist/src/index.d.ts +4 -0
  2. package/dist/src/index.d.ts.map +1 -0
  3. package/dist/src/index.js +21 -0
  4. package/dist/src/lib/index.d.ts +6 -0
  5. package/dist/src/lib/index.d.ts.map +1 -0
  6. package/dist/src/lib/index.js +46 -0
  7. package/dist/src/lib/resources.d.ts +3 -0
  8. package/dist/src/lib/resources.d.ts.map +1 -0
  9. package/dist/src/lib/resources.js +18 -0
  10. package/dist/src/lib/transactionBuilder.d.ts +13 -0
  11. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  12. package/dist/src/lib/transactionBuilder.js +30 -0
  13. package/dist/src/lib/transferBuilder.d.ts +2 -0
  14. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  15. package/dist/src/lib/transferBuilder.js +6 -0
  16. package/dist/src/lib/utils.d.ts +8 -0
  17. package/dist/src/lib/utils.d.ts.map +1 -0
  18. package/dist/src/lib/utils.js +21 -0
  19. package/dist/src/register.d.ts +3 -0
  20. package/dist/src/register.d.ts.map +1 -0
  21. package/dist/src/register.js +9 -0
  22. package/dist/src/stt.d.ts +25 -0
  23. package/dist/src/stt.d.ts.map +1 -0
  24. package/dist/src/stt.js +47 -0
  25. package/dist/src/tstt.d.ts +13 -0
  26. package/dist/src/tstt.d.ts.map +1 -0
  27. package/dist/src/tstt.js +14 -0
  28. package/dist/test/unit/getBuilder.d.ts +3 -0
  29. package/dist/test/unit/getBuilder.d.ts.map +1 -0
  30. package/dist/test/unit/getBuilder.js +10 -0
  31. package/dist/test/unit/resources.d.ts +14 -0
  32. package/dist/test/unit/resources.d.ts.map +1 -0
  33. package/dist/test/unit/resources.js +17 -0
  34. package/dist/test/unit/stt.d.ts +2 -0
  35. package/dist/test/unit/stt.d.ts.map +1 -0
  36. package/dist/test/unit/stt.js +25 -0
  37. package/dist/test/unit/transactionBuilder/send.d.ts +2 -0
  38. package/dist/test/unit/transactionBuilder/send.d.ts.map +1 -0
  39. package/dist/test/unit/transactionBuilder/send.js +61 -0
  40. package/dist/test/unit/utils.d.ts +2 -0
  41. package/dist/test/unit/utils.d.ts.map +1 -0
  42. package/dist/test/unit/utils.js +22 -0
  43. package/dist/tsconfig.tsbuildinfo +1 -0
  44. package/package.json +10 -7
  45. package/.eslintignore +0 -5
  46. package/.mocharc.yml +0 -8
  47. package/CHANGELOG.md +0 -138
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo-beta/sdk-coin-stt",
3
- "version": "1.0.1-beta.382",
3
+ "version": "1.0.1-beta.384",
4
4
  "description": "BitGo SDK coin library for Somnia",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -40,14 +40,17 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo-beta/abstract-eth": "1.0.2-beta.1455",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.1225",
45
- "@bitgo-beta/statics": "15.1.1-beta.1228",
43
+ "@bitgo-beta/abstract-eth": "1.0.2-beta.1457",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.1227",
45
+ "@bitgo-beta/statics": "15.1.1-beta.1230",
46
46
  "@ethereumjs/common": "^2.6.5"
47
47
  },
48
48
  "devDependencies": {
49
- "@bitgo-beta/sdk-api": "1.10.1-beta.1224",
50
- "@bitgo-beta/sdk-test": "^9.1.1"
49
+ "@bitgo-beta/sdk-api": "1.10.1-beta.1226",
50
+ "@bitgo-beta/sdk-test": "^9.1.2"
51
51
  },
52
- "gitHead": "6931d7c4ed383faba4a5a4f351bb2ce90a40e0c9"
52
+ "files": [
53
+ "dist"
54
+ ],
55
+ "gitHead": "63a34e6a921d18c02a2a97b1188d0ee6231eba96"
53
56
  }
package/.eslintignore DELETED
@@ -1,5 +0,0 @@
1
- node_modules
2
- .idea
3
- public
4
- dist
5
-
package/.mocharc.yml DELETED
@@ -1,8 +0,0 @@
1
- require: 'tsx'
2
- timeout: '120000'
3
- reporter: 'min'
4
- reporter-option:
5
- - 'cdn=true'
6
- - 'json=false'
7
- exit: true
8
- spec: ['test/unit/**/*.ts']
package/CHANGELOG.md DELETED
@@ -1,138 +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.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.4.0...@bitgo/sdk-coin-stt@1.4.1) (2025-09-29)
7
-
8
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
9
-
10
- # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.3.4...@bitgo/sdk-coin-stt@1.4.0) (2025-09-25)
11
-
12
- ### Features
13
-
14
- - configure learn to skip git operations ([ee3a622](https://github.com/BitGo/BitGoJS/commit/ee3a6220496476aa7f4545b5f4a9a3bf97d9bdb9))
15
-
16
- ## [1.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.3.3...@bitgo/sdk-coin-stt@1.3.4) (2025-09-03)
17
-
18
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
19
-
20
- ## [1.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.3.2...@bitgo/sdk-coin-stt@1.3.3) (2025-08-30)
21
-
22
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
23
-
24
- ## [1.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.3.1...@bitgo/sdk-coin-stt@1.3.2) (2025-08-29)
25
-
26
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
27
-
28
- ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.3.0...@bitgo/sdk-coin-stt@1.3.1) (2025-08-27)
29
-
30
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
31
-
32
- # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.15...@bitgo/sdk-coin-stt@1.3.0) (2025-08-22)
33
-
34
- ### Features
35
-
36
- - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
37
-
38
- ## [1.2.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.14...@bitgo/sdk-coin-stt@1.2.15) (2025-08-22)
39
-
40
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
41
-
42
- ## [1.2.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.13...@bitgo/sdk-coin-stt@1.2.14) (2025-08-19)
43
-
44
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
45
-
46
- ## [1.2.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.12...@bitgo/sdk-coin-stt@1.2.13) (2025-08-14)
47
-
48
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
49
-
50
- ## [1.2.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.11...@bitgo/sdk-coin-stt@1.2.12) (2025-08-07)
51
-
52
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
53
-
54
- ## [1.2.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.10...@bitgo/sdk-coin-stt@1.2.11) (2025-07-31)
55
-
56
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
57
-
58
- ## [1.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.9...@bitgo/sdk-coin-stt@1.2.10) (2025-07-30)
59
-
60
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
61
-
62
- ## [1.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.7...@bitgo/sdk-coin-stt@1.2.9) (2025-07-25)
63
-
64
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
65
-
66
- ## [1.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.7...@bitgo/sdk-coin-stt@1.2.8) (2025-07-23)
67
-
68
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
69
-
70
- ## [1.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.6...@bitgo/sdk-coin-stt@1.2.7) (2025-07-15)
71
-
72
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
73
-
74
- ## [1.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.5...@bitgo/sdk-coin-stt@1.2.6) (2025-07-10)
75
-
76
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
77
-
78
- ## [1.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.4...@bitgo/sdk-coin-stt@1.2.5) (2025-07-03)
79
-
80
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
81
-
82
- ## [1.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.3...@bitgo/sdk-coin-stt@1.2.4) (2025-06-25)
83
-
84
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
85
-
86
- ## [1.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.2...@bitgo/sdk-coin-stt@1.2.3) (2025-06-24)
87
-
88
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
89
-
90
- ## [1.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.1...@bitgo/sdk-coin-stt@1.2.2) (2025-06-18)
91
-
92
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
93
-
94
- ## [1.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.2.0...@bitgo/sdk-coin-stt@1.2.1) (2025-06-10)
95
-
96
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
97
-
98
- # [1.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.6...@bitgo/sdk-coin-stt@1.2.0) (2025-06-05)
99
-
100
- ### Features
101
-
102
- - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
103
-
104
- ## [1.1.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.5...@bitgo/sdk-coin-stt@1.1.6) (2025-06-02)
105
-
106
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
107
-
108
- ## [1.1.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.4...@bitgo/sdk-coin-stt@1.1.5) (2025-05-28)
109
-
110
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
111
-
112
- ## [1.1.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.3...@bitgo/sdk-coin-stt@1.1.4) (2025-05-22)
113
-
114
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
115
-
116
- ## [1.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.2...@bitgo/sdk-coin-stt@1.1.3) (2025-05-20)
117
-
118
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
119
-
120
- ## [1.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.1...@bitgo/sdk-coin-stt@1.1.2) (2025-05-07)
121
-
122
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
123
-
124
- ## [1.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-stt@1.1.0...@bitgo/sdk-coin-stt@1.1.1) (2025-04-29)
125
-
126
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
127
-
128
- # 1.1.0 (2025-04-25)
129
-
130
- ### Features
131
-
132
- - **sdk-coin-stt:** add transaction builder ([1e77306](https://github.com/BitGo/BitGoJS/commit/1e7730665a74235085d4dfe0c48ddecceb400624))
133
-
134
- ### Bug Fixes
135
-
136
- **Note:** Version bump only for package @bitgo/sdk-coin-stt
137
-
138
- ### Features