@bitgo-beta/sdk-coin-tao 1.0.1-alpha.13 → 1.0.1-alpha.131

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 (61) hide show
  1. package/.mocharc.yml +1 -1
  2. package/CHANGELOG.md +204 -0
  3. package/dist/src/index.d.ts +1 -0
  4. package/dist/src/index.d.ts.map +1 -1
  5. package/dist/src/index.js +2 -1
  6. package/dist/src/lib/iface.d.ts +7 -335
  7. package/dist/src/lib/iface.d.ts.map +1 -1
  8. package/dist/src/lib/iface.js +1 -126
  9. package/dist/src/lib/index.d.ts +5 -7
  10. package/dist/src/lib/index.d.ts.map +1 -1
  11. package/dist/src/lib/index.js +22 -47
  12. package/dist/src/lib/stakingBuilder.d.ts +63 -0
  13. package/dist/src/lib/stakingBuilder.d.ts.map +1 -0
  14. package/dist/src/lib/stakingBuilder.js +133 -0
  15. package/dist/src/lib/tokenTransferBuilder.d.ts +74 -0
  16. package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -0
  17. package/dist/src/lib/tokenTransferBuilder.js +154 -0
  18. package/dist/src/lib/tokenTransferTransaction.d.ts +10 -0
  19. package/dist/src/lib/tokenTransferTransaction.d.ts.map +1 -0
  20. package/dist/src/lib/tokenTransferTransaction.js +77 -0
  21. package/dist/src/lib/transactionBuilderFactory.d.ts +12 -5
  22. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
  23. package/dist/src/lib/transactionBuilderFactory.js +57 -8
  24. package/dist/src/lib/transferBuilder.d.ts +2 -4
  25. package/dist/src/lib/transferBuilder.d.ts.map +1 -1
  26. package/dist/src/lib/transferBuilder.js +8 -7
  27. package/dist/src/lib/unstakeBuilder.d.ts +66 -0
  28. package/dist/src/lib/unstakeBuilder.d.ts.map +1 -0
  29. package/dist/src/lib/unstakeBuilder.js +136 -0
  30. package/dist/src/lib/utils.d.ts +5 -254
  31. package/dist/src/lib/utils.d.ts.map +1 -1
  32. package/dist/src/lib/utils.js +15 -459
  33. package/dist/src/register.d.ts.map +1 -1
  34. package/dist/src/register.js +5 -1
  35. package/dist/src/resources/index.d.ts +3 -0
  36. package/dist/src/resources/index.d.ts.map +1 -0
  37. package/dist/src/resources/index.js +19 -0
  38. package/dist/src/resources/mainnet.d.ts +13 -0
  39. package/dist/src/resources/mainnet.d.ts.map +1 -0
  40. package/dist/src/resources/mainnet.js +16 -0
  41. package/dist/src/resources/testnet.d.ts +13 -0
  42. package/dist/src/resources/testnet.d.ts.map +1 -0
  43. package/dist/src/resources/testnet.js +16 -0
  44. package/dist/src/tao.d.ts +19 -6
  45. package/dist/src/tao.d.ts.map +1 -1
  46. package/dist/src/tao.js +43 -81
  47. package/dist/src/taoToken.d.ts +19 -0
  48. package/dist/src/taoToken.d.ts.map +1 -0
  49. package/dist/src/taoToken.js +52 -0
  50. package/package.json +10 -17
  51. package/.gitignore +0 -3
  52. package/.prettierignore +0 -2
  53. package/dist/src/lib/keyPair.d.ts +0 -38
  54. package/dist/src/lib/keyPair.d.ts.map +0 -1
  55. package/dist/src/lib/keyPair.js +0 -117
  56. package/dist/src/lib/transaction.d.ts +0 -8
  57. package/dist/src/lib/transaction.d.ts.map +0 -1
  58. package/dist/src/lib/transaction.js +0 -17
  59. package/dist/src/lib/transactionBuilder.d.ts +0 -43
  60. package/dist/src/lib/transactionBuilder.d.ts.map +0 -1
  61. package/dist/src/lib/transactionBuilder.js +0 -78
package/.mocharc.yml CHANGED
@@ -1,4 +1,4 @@
1
- require: 'ts-node/register'
1
+ require: 'tsx'
2
2
  timeout: '60000'
3
3
  reporter: 'min'
4
4
  reporter-option:
package/CHANGELOG.md CHANGED
@@ -3,6 +3,210 @@
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
+ # [1.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.10.2...@bitgo/sdk-coin-tao@1.11.0) (2025-08-22)
7
+
8
+ ### Features
9
+
10
+ - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
11
+
12
+ ## [1.10.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.10.1...@bitgo/sdk-coin-tao@1.10.2) (2025-08-22)
13
+
14
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
15
+
16
+ ## [1.10.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.10.0...@bitgo/sdk-coin-tao@1.10.1) (2025-08-19)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **sdk-coin-tao:** fix toJson & explainTransaction for token transfers ([34a8175](https://github.com/BitGo/BitGoJS/commit/34a81751fd982a7ebd7449f8036d6d19b501780a))
21
+
22
+ # [1.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.9.0...@bitgo/sdk-coin-tao@1.10.0) (2025-08-14)
23
+
24
+ ### Features
25
+
26
+ - **sdk-coin-polyx:** add token builders ([6860780](https://github.com/BitGo/BitGoJS/commit/68607804efc1191ff396e05f20466526246b7d87))
27
+ - **sdk-coin-tao:** add tokenTransferBuilder ([43fc839](https://github.com/BitGo/BitGoJS/commit/43fc839f87e81d2592bcd249b14d7aef815a0927))
28
+
29
+ # [1.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.11...@bitgo/sdk-coin-tao@1.9.0) (2025-08-07)
30
+
31
+ ### Features
32
+
33
+ - add taoToken skeleton ([c3d65a2](https://github.com/BitGo/BitGoJS/commit/c3d65a29d8e4404e0157d8a8d825465f3c9cc693))
34
+
35
+ ## [1.8.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.10...@bitgo/sdk-coin-tao@1.8.11) (2025-07-31)
36
+
37
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
38
+
39
+ ## [1.8.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.9...@bitgo/sdk-coin-tao@1.8.10) (2025-07-30)
40
+
41
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
42
+
43
+ ## [1.8.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.7...@bitgo/sdk-coin-tao@1.8.9) (2025-07-25)
44
+
45
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
46
+
47
+ ## [1.8.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.7...@bitgo/sdk-coin-tao@1.8.8) (2025-07-23)
48
+
49
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
50
+
51
+ ## [1.8.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.6...@bitgo/sdk-coin-tao@1.8.7) (2025-07-15)
52
+
53
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
54
+
55
+ ## [1.8.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.5...@bitgo/sdk-coin-tao@1.8.6) (2025-07-10)
56
+
57
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
58
+
59
+ ## [1.8.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.4...@bitgo/sdk-coin-tao@1.8.5) (2025-07-03)
60
+
61
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
62
+
63
+ ## [1.8.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.3...@bitgo/sdk-coin-tao@1.8.4) (2025-06-25)
64
+
65
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
66
+
67
+ ## [1.8.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.2...@bitgo/sdk-coin-tao@1.8.3) (2025-06-24)
68
+
69
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
70
+
71
+ ## [1.8.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.1...@bitgo/sdk-coin-tao@1.8.2) (2025-06-18)
72
+
73
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
74
+
75
+ ## [1.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.8.0...@bitgo/sdk-coin-tao@1.8.1) (2025-06-10)
76
+
77
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
78
+
79
+ # [1.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.7.3...@bitgo/sdk-coin-tao@1.8.0) (2025-06-05)
80
+
81
+ ### Features
82
+
83
+ - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
84
+
85
+ ## [1.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.7.2...@bitgo/sdk-coin-tao@1.7.3) (2025-06-02)
86
+
87
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
88
+
89
+ ## [1.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.7.1...@bitgo/sdk-coin-tao@1.7.2) (2025-05-28)
90
+
91
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
92
+
93
+ ## [1.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.7.0...@bitgo/sdk-coin-tao@1.7.1) (2025-05-22)
94
+
95
+ ### Bug Fixes
96
+
97
+ - remove empty space character at end of file names ([51bd0f5](https://github.com/BitGo/BitGoJS/commit/51bd0f56ca3275dcf980a21a20e7d94c8837ba42))
98
+
99
+ # [1.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.9...@bitgo/sdk-coin-tao@1.7.0) (2025-05-20)
100
+
101
+ ### Features
102
+
103
+ - **sdk-coin-polyx:** add transaction builders ([31c96bb](https://github.com/BitGo/BitGoJS/commit/31c96bbbce60b93e13208e3eab06bd144cfe57e4))
104
+
105
+ ## [1.6.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.8...@bitgo/sdk-coin-tao@1.6.9) (2025-05-07)
106
+
107
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
108
+
109
+ ## [1.6.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.7...@bitgo/sdk-coin-tao@1.6.8) (2025-04-29)
110
+
111
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
112
+
113
+ ## [1.6.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.6...@bitgo/sdk-coin-tao@1.6.7) (2025-04-25)
114
+
115
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
116
+
117
+ ## [1.6.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.5...@bitgo/sdk-coin-tao@1.6.6) (2025-04-15)
118
+
119
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
120
+
121
+ ## [1.6.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.4...@bitgo/sdk-coin-tao@1.6.5) (2025-04-04)
122
+
123
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
124
+
125
+ ## [1.6.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.3...@bitgo/sdk-coin-tao@1.6.4) (2025-04-02)
126
+
127
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
128
+
129
+ ## [1.6.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.2...@bitgo/sdk-coin-tao@1.6.3) (2025-03-28)
130
+
131
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
132
+
133
+ ## [1.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.1...@bitgo/sdk-coin-tao@1.6.2) (2025-03-20)
134
+
135
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
136
+
137
+ ## [1.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.6.0...@bitgo/sdk-coin-tao@1.6.1) (2025-03-18)
138
+
139
+ ### Bug Fixes
140
+
141
+ - **sdk-coin-tao:** prevent real api calls by using beforeEach for stubbing ([4415e0e](https://github.com/BitGo/BitGoJS/commit/4415e0e0348eb9f110a53dcbd393f8bd2e1e8619))
142
+
143
+ # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.5.0...@bitgo/sdk-coin-tao@1.6.0) (2025-03-06)
144
+
145
+ ### Features
146
+
147
+ - **abstract-substrate:** add wrw for tao ([9f30890](https://github.com/BitGo/BitGoJS/commit/9f3089000330d47696ab057891cd8d1083004a2a))
148
+
149
+ # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.3.1...@bitgo/sdk-coin-tao@1.5.0) (2025-03-04)
150
+
151
+ ### Bug Fixes
152
+
153
+ - **sdk-coin-tao:** allow consolidations ([0e374cf](https://github.com/BitGo/BitGoJS/commit/0e374cfabd366438cc2abfe9d0967854bf03cd03))
154
+ - **sdk-coin-tao:** change amount and netuid type to string ([bbb92aa](https://github.com/BitGo/BitGoJS/commit/bbb92aa3e9def1e6260a074761cdf4a38888ebd6))
155
+ - **sdk-coin-tao:** use tao builder not dot ([3ee7bfc](https://github.com/BitGo/BitGoJS/commit/3ee7bfc3fcf3d22d12d31b8104614b1b7996648c))
156
+
157
+ ### Features
158
+
159
+ - **sdk-coin-tao:** add staking builder ([0859b9d](https://github.com/BitGo/BitGoJS/commit/0859b9d099fc0ab9c651d0476bfd74dd48f08d45))
160
+ - **sdk-coin-tao:** add unstaking builder for TAO ([fe568b5](https://github.com/BitGo/BitGoJS/commit/fe568b5fda3d3e27cf2ced01581e52ede08ee58d))
161
+
162
+ # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.3.1...@bitgo/sdk-coin-tao@1.4.0) (2025-02-26)
163
+
164
+ ### Bug Fixes
165
+
166
+ - **sdk-coin-tao:** allow consolidations ([0e374cf](https://github.com/BitGo/BitGoJS/commit/0e374cfabd366438cc2abfe9d0967854bf03cd03))
167
+
168
+ ### Features
169
+
170
+ - **sdk-coin-tao:** add staking builder ([0859b9d](https://github.com/BitGo/BitGoJS/commit/0859b9d099fc0ab9c651d0476bfd74dd48f08d45))
171
+ - **sdk-coin-tao:** add unstaking builder for TAO ([fe568b5](https://github.com/BitGo/BitGoJS/commit/fe568b5fda3d3e27cf2ced01581e52ede08ee58d))
172
+
173
+ ## [1.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.3.1...@bitgo/sdk-coin-tao@1.3.2) (2025-02-20)
174
+
175
+ ### Bug Fixes
176
+
177
+ - **sdk-coin-tao:** allow consolidations ([0e374cf](https://github.com/BitGo/BitGoJS/commit/0e374cfabd366438cc2abfe9d0967854bf03cd03))
178
+
179
+ ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.3.0...@bitgo/sdk-coin-tao@1.3.1) (2025-02-19)
180
+
181
+ **Note:** Version bump only for package @bitgo/sdk-coin-tao
182
+
183
+ # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.2.0...@bitgo/sdk-coin-tao@1.3.0) (2025-02-11)
184
+
185
+ ### Bug Fixes
186
+
187
+ - **abstract-substrate:** fix abstract-substrate implementation ([1c986da](https://github.com/BitGo/BitGoJS/commit/1c986daa817353ca522c0e8e72e67a6dffa00fac))
188
+ - **sdk-coin-tao:** fix coinBuilderMap for tao ([b592e09](https://github.com/BitGo/BitGoJS/commit/b592e098544b447e946c1d4432a442f9bb1ab6d3))
189
+
190
+ ### Features
191
+
192
+ - **sdk-coin-tao:** add network to ttao ([79ad572](https://github.com/BitGo/BitGoJS/commit/79ad5722b1b3b4ee08119d3c9a71f881e74095dc))
193
+
194
+ # [1.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.1.0...@bitgo/sdk-coin-tao@1.2.0) (2025-02-05)
195
+
196
+ ### Features
197
+
198
+ - implement base transaction and transfer builders ([b342edd](https://github.com/BitGo/BitGoJS/commit/b342edd6f655b242c6c286d65941e9989a9e672e))
199
+
200
+ # [1.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.0.4...@bitgo/sdk-coin-tao@1.1.0) (2025-01-28)
201
+
202
+ ### Bug Fixes
203
+
204
+ - fix utils ([53b9621](https://github.com/BitGo/BitGoJS/commit/53b9621171fbed7a2514c7c6d12ba8c917780eba))
205
+
206
+ ### Features
207
+
208
+ - implement tao specific functions ([67e658e](https://github.com/BitGo/BitGoJS/commit/67e658e03cb3e47959d9bbb18285cbb8cd19943b))
209
+
6
210
  ## [1.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-tao@1.0.3...@bitgo/sdk-coin-tao@1.0.4) (2025-01-23)
7
211
 
8
212
  **Note:** Version bump only for package @bitgo/sdk-coin-tao
@@ -2,4 +2,5 @@ export * from './lib';
2
2
  export * from './register';
3
3
  export * from './tao';
4
4
  export * from './ttao';
5
+ export * from './taoToken';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
package/dist/src/index.js CHANGED
@@ -18,4 +18,5 @@ __exportStar(require("./lib"), exports);
18
18
  __exportStar(require("./register"), exports);
19
19
  __exportStar(require("./tao"), exports);
20
20
  __exportStar(require("./ttao"), exports);
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLHdDQUFzQjtBQUN0Qiw2Q0FBMkI7QUFDM0Isd0NBQXNCO0FBQ3RCLHlDQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliJztcbmV4cG9ydCAqIGZyb20gJy4vcmVnaXN0ZXInO1xuZXhwb3J0ICogZnJvbSAnLi90YW8nO1xuZXhwb3J0ICogZnJvbSAnLi90dGFvJztcbiJdfQ==
21
+ __exportStar(require("./taoToken"), exports);
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLHdDQUFzQjtBQUN0Qiw2Q0FBMkI7QUFDM0Isd0NBQXNCO0FBQ3RCLHlDQUF1QjtBQUN2Qiw2Q0FBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG5leHBvcnQgKiBmcm9tICcuL3JlZ2lzdGVyJztcbmV4cG9ydCAqIGZyb20gJy4vdGFvJztcbmV4cG9ydCAqIGZyb20gJy4vdHRhbyc7XG5leHBvcnQgKiBmcm9tICcuL3Rhb1Rva2VuJztcbiJdfQ==
@@ -1,337 +1,9 @@
1
- import { TransactionType, TransactionExplanation as BaseTransactionExplanation } from '@bitgo-beta/sdk-core';
2
- import { PolkadotSpecNameType } from '@bitgo-beta/statics';
3
- import { BaseTxInfo, TypeRegistry, DecodedUnsignedTx } from '@substrate/txwrapper-core/lib/types';
4
- export { HexString } from '@polkadot/util/types';
5
- /**
6
- * Section names for the transaction methods.
7
- */
8
- export declare enum SectionNames {
9
- Proxy = "proxy",
10
- Staking = "staking"
11
- }
12
- /**
13
- * Method names for the transaction method. Names change based on the type of transaction e.g 'bond' for the staking transaction
14
- */
15
- export declare enum MethodNames {
16
- /**
17
- * Register a proxy account for the sender that is able to make calls on its behalf.
18
- *
19
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#addproxydelegate-multiaddress-proxy_type-kitchensinkruntimeproxytype-delay-u32
20
- */
21
- AddProxy = "addProxy",
22
- /**
23
- * Unregister a proxy account for the sender.
24
- *
25
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#removeproxydelegate-multiaddress-proxy_type-kitchensinkruntimeproxytype-delay-u32
26
- */
27
- RemoveProxy = "removeProxy",
28
- /**
29
- * Dispatch the given call from an account that the sender is authorised for through add_proxy.
30
- *
31
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#proxyreal-multiaddress-force_proxy_type-optionkitchensinkruntimeproxytype-call-call
32
- */
33
- Proxy = "proxy",
34
- /**
35
- * Take the origin account as a stash and lock up value of its balance. controller will be the account that controls it.
36
- *
37
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#bondcontroller-multiaddress-value-compactu128-payee-palletstakingrewarddestination
38
- */
39
- Bond = "bond",
40
- /**
41
- * Add some extra amount that have appeared in the stash free_balance into the balance up for staking.
42
- *
43
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#bondextramax_additional-compactu128
44
- */
45
- BondExtra = "bondExtra",
46
- /**
47
- * Transfer the entire transferable balance from the caller account.
48
- *
49
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#transferalldest-multiaddress-keep_alive-bool
50
- */
51
- TransferAll = "transferAll",
52
- /**
53
- * Same as the transfer call, but with a check that the transfer will not kill the origin account.
54
- *
55
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#transferkeepalivedest-multiaddress-value-compactu128
56
- */
57
- TransferKeepAlive = "transferKeepAlive",
58
- /**
59
- * Schedule a portion of the stash to be unlocked ready for transfer out after the bond period ends.
60
- *
61
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#unbondvalue-compactu128
62
- */
63
- Unbond = "unbond",
64
- /**
65
- * @deprecated Anonymous proxies were renamed to pure proxies.
66
- *
67
- * @see PureProxy
68
- * @see https://polkadot.polkassembly.io/referendum/84
69
- */
70
- Anonymous = "anonymous",
71
- /**
72
- * Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and initialize it with a proxy of proxy_type for origin sender.
73
- *
74
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#createpureproxy_type-kitchensinkruntimeproxytype-delay-u32-index-u16
75
- */
76
- PureProxy = "createPure",// Anonymous proxies were renamed to pure proxies
77
- /**
78
- * Send a batch of dispatch calls.
79
- *
80
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#batchcalls-veccall
81
- */
82
- Batch = "batch",
83
- /**
84
- * Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed.
85
- *
86
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#batchallcalls-veccall
87
- */
88
- BatchAll = "batchAll",
89
- /**
90
- * Declare no desire to either validate or nominate.
91
- *
92
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#chill
93
- */
94
- Chill = "chill",
95
- /**
96
- * Remove any unlocked chunks from the unlocking queue from our management.
97
- *
98
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#withdrawunbondednum_slashing_spans-u32
99
- */
100
- WithdrawUnbonded = "withdrawUnbonded",
101
- /**
102
- * Pay out all the stakers behind a single validator for a single era.
103
- *
104
- * @see https://polkadot.js.org/docs/substrate/extrinsics/#payoutstakersvalidator_stash-accountid32-era-u32
105
- */
106
- PayoutStakers = "payoutStakers"
107
- }
108
- /**
109
- * The transaction data returned from the toJson() function of a transaction
110
- */
111
- export interface TxData {
112
- id: string;
113
- sender: string;
114
- referenceBlock: string;
115
- blockNumber: number;
116
- genesisHash: string;
117
- nonce: number;
118
- specVersion: number;
119
- transactionVersion: number;
120
- chainName: string;
121
- method?: string;
122
- specName?: string;
123
- amount?: string;
124
- to?: string;
125
- tip?: number;
126
- eraPeriod?: number;
127
- controller?: string;
128
- payee?: string;
129
- owner?: string;
130
- proxyType?: string;
131
- delay?: string;
132
- forceProxyType?: ProxyType;
133
- index?: string;
134
- batchCalls?: BatchCallObject[];
135
- numSlashingSpans?: number;
136
- validatorStash?: string;
137
- claimEra?: string;
138
- keepAlive?: boolean;
139
- }
140
- /**
141
- * Transaction method specific args
142
- */
143
- export interface TransferArgs {
144
- dest: {
145
- id: string;
146
- };
147
- value: string;
148
- }
149
- /**
150
- * Transaction method specific args
151
- */
152
- export interface TransferAllArgs {
153
- dest: {
154
- id: string;
155
- };
156
- keepAlive: boolean;
157
- }
158
- /**
159
- * Transaction method specific args
160
- */
161
- export type StakeArgsPayee = 'Staked' | 'Stash' | 'Controller' | {
162
- Account: string;
163
- };
164
- /**
165
- * Transaction method specific args
166
- */
167
- export type StakeArgsPayeeRaw = {
168
- controller?: null;
169
- stash?: null;
170
- staked?: null;
171
- account?: string;
172
- };
173
- /**
174
- * Transaction method specific args
175
- */
176
- export interface StakeArgs {
177
- value: string;
178
- controller: {
179
- id: string;
180
- };
181
- payee: StakeArgsPayee;
182
- }
183
- export interface StakeMoreArgs {
184
- maxAdditional: string;
185
- }
186
- export interface StakeMoreCallArgs {
187
- max_additional: string;
188
- }
189
- export interface UnstakeArgs {
190
- value: string;
191
- }
192
- export interface WithdrawUnstakedArgs {
193
- numSlashingSpans: number;
194
- }
195
- export interface ClaimArgs {
196
- validatorStash: string;
197
- era: string;
198
- }
199
- /**
200
- * The types of proxies that can be setup and used
201
- * https://wiki.polkadot.network/docs/learn-proxies#proxy-types
202
- */
203
- export declare enum ProxyType {
204
- ANY = "Any",
205
- NON_TRANSFER = "NonTransfer",
206
- STAKING = "Staking",
207
- IDENTTITY_JUDGEMENT = "IdentityJudgement",
208
- CANCEL_PROXY = "CancelProxy"
209
- }
210
- /**
211
- * Transaction method specific args
212
- */
213
- export interface AddProxyArgs {
214
- delegate: string | AccountId;
215
- delay: string;
216
- proxyType: ProxyType;
217
- }
218
- /**
219
- * Transaction method specific args
220
- */
221
- export interface AddAnonymousProxyArgs {
222
- proxyType: ProxyType;
223
- index: string;
224
- delay: string;
225
- }
226
- /**
227
- * Transaction method specific args
228
- */
229
- export type BatchCallObject = {
230
- callIndex: string;
231
- args: Record<string, any> | AddProxyBatchCallArgs | AddAnonymousProxyBatchCallArgs | StakeBatchCallArgs | StakeMoreArgs | StakeMoreCallArgs | UnbondCallArgs;
232
- };
233
- export interface BatchArgs {
234
- calls: BatchCallObject[];
235
- }
236
- export interface AddAnonymousProxyBatchCallArgs {
237
- proxy_type: ProxyType;
238
- index: number;
239
- delay: number;
240
- }
241
- export interface AddProxyBatchCallArgs {
242
- delegate: string | AccountId;
243
- proxy_type: ProxyType;
244
- delay: number;
245
- }
246
- export type AccountId = {
247
- id: string;
248
- };
249
- export type StakeBatchCallPayeeStaked = {
250
- staked: null;
251
- };
252
- export type StakeBatchCallPayeeStash = {
253
- stash: null;
254
- };
255
- export type StakeBatchCallPayeeController = {
256
- controller: null;
257
- };
258
- export type StakeBatchCallPayeeAccount = {
259
- account: string;
260
- };
261
- export type StakeBatchCallPayee = StakeBatchCallPayeeStaked | StakeBatchCallPayeeStash | StakeBatchCallPayeeController | StakeBatchCallPayeeAccount;
262
- export interface StakeBatchCallArgs {
263
- value: string;
264
- controller?: {
265
- id: string;
266
- };
267
- payee: StakeBatchCallPayee;
268
- }
269
- export interface UnstakeBatchCallArgs {
270
- value: string;
271
- }
272
- export interface UnbondCallArgs {
273
- value: string;
274
- }
275
- /**
276
- * Transaction method specific args
277
- */
278
- export type ProxyCallArgs = {
279
- callIndex: string;
280
- args: TransferArgs;
281
- };
282
- /**
283
- * Transaction method specific args
284
- */
285
- export interface ProxyArgs {
286
- real: string | AccountId;
287
- forceProxyType: ProxyType;
288
- }
289
- /**
290
- * Decoded TxMethod from a transaction hex
291
- */
292
- export interface TxMethod {
293
- args: TransferArgs | TransferAllArgs | StakeArgs | StakeMoreArgs | AddProxyArgs | ProxyArgs | UnstakeArgs | AddAnonymousProxyArgs | BatchArgs | WithdrawUnstakedArgs | ClaimArgs;
294
- name: MethodNames;
295
- pallet: string;
296
- }
297
- /**
298
- * Modified unsigned transaction with a decoded method instead of a method hex
299
- */
300
- export interface DecodedTx extends Omit<DecodedUnsignedTx, 'method'> {
301
- method: TxMethod;
302
- }
303
- /**
304
- * Base transaction info shared across all types of transactions
305
- */
306
- export interface CreateBaseTxInfo {
307
- baseTxInfo: BaseTxInfo;
308
- options: {
309
- metadataRpc: `0x${string}`;
310
- registry: TypeRegistry;
311
- isImmortalEra?: boolean;
312
- };
313
- }
314
- export interface TransactionExplanation extends BaseTransactionExplanation {
315
- type: TransactionType;
316
- forceProxyType?: ProxyType;
317
- controller?: string;
318
- payee?: string;
319
- owner?: string;
320
- proxyType?: string;
321
- delay?: string;
322
- }
323
- export declare enum TransactionTypes {
324
- TRANSFER = "transfer",
325
- STAKING = "staking",
326
- ADDR_INIT = "addressInitialization",
327
- UNSTAKING = "unstaking"
328
- }
329
- export interface Material {
330
- genesisHash: string;
331
- chainName: string;
332
- specName: PolkadotSpecNameType;
333
- specVersion: number;
334
- txVersion: number;
335
- metadata: `0x${string}`;
1
+ import { Interface } from '@bitgo-beta/abstract-substrate';
2
+ export interface TransferStakeTxData extends Interface.TxData {
3
+ destinationColdkey: string;
4
+ hotkey: string;
5
+ originNetuid: string;
6
+ destinationNetuid: string;
7
+ alphaAmount: string;
336
8
  }
337
9
  //# sourceMappingURL=iface.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"iface.d.ts","sourceRoot":"","sources":["../../../src/lib/iface.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"iface.d.ts","sourceRoot":"","sources":["../../../src/lib/iface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAE3D,MAAM,WAAW,mBAAoB,SAAQ,SAAS,CAAC,MAAM;IAC3D,kBAAkB,EAAE,MAAM,CAAC;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,WAAW,EAAE,MAAM,CAAC;CACrB"}