@bitgo/public-types 4.18.0 → 4.18.1
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/src/schema/transactionRequest/intents/intent.d.ts +4 -4
- package/dist/src/schema/transactionRequest/intents/taoStakeIntent.d.ts +2 -2
- package/dist/src/schema/transactionRequest/intents/taoStakeIntent.js +1 -1
- package/dist/src/schema/transactionRequest/intents/taoStakingBaseIntent.d.ts +1 -1
- package/dist/src/schema/transactionRequest/intents/taoStakingBaseIntent.js +1 -1
- package/dist/src/schema/transactionRequest/intents/taoUnstakeIntent.d.ts +2 -2
- package/dist/src/schema/transactionRequest/intents/taoUnstakeIntent.js +1 -1
- package/package.json +1 -1
- package/src/schema/transactionRequest/intents/taoStakeIntent.ts +1 -1
- package/src/schema/transactionRequest/intents/taoStakingBaseIntent.ts +1 -1
- package/src/schema/transactionRequest/intents/taoUnstakeIntent.ts +1 -1
@@ -3410,9 +3410,9 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
3410
3410
|
}, unknown>, t.UndefinedC]>;
|
3411
3411
|
}>]>, t.TypeC<{
|
3412
3412
|
hotkey: t.StringC;
|
3413
|
-
netuid: t.
|
3413
|
+
netuid: t.StringC;
|
3414
3414
|
}>]>, t.TypeC<{
|
3415
|
-
amountStaked: t.
|
3415
|
+
amountStaked: t.StringC;
|
3416
3416
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
3417
3417
|
intentType: t.KeyofC<{
|
3418
3418
|
payment: t.LiteralC<"payment">;
|
@@ -3511,9 +3511,9 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
3511
3511
|
}, unknown>, t.UndefinedC]>;
|
3512
3512
|
}>]>, t.TypeC<{
|
3513
3513
|
hotkey: t.StringC;
|
3514
|
-
netuid: t.
|
3514
|
+
netuid: t.StringC;
|
3515
3515
|
}>]>, t.TypeC<{
|
3516
|
-
amountUnstaked: t.
|
3516
|
+
amountUnstaked: t.StringC;
|
3517
3517
|
}>]>, t.IntersectionC<[t.PartialC<{
|
3518
3518
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
3519
3519
|
}>, t.TypeC<{
|
@@ -97,8 +97,8 @@ export declare const TaoStakeIntent: t.IntersectionC<[t.IntersectionC<[t.Interse
|
|
97
97
|
}, unknown>, t.UndefinedC]>;
|
98
98
|
}>]>, t.TypeC<{
|
99
99
|
hotkey: t.StringC;
|
100
|
-
netuid: t.
|
100
|
+
netuid: t.StringC;
|
101
101
|
}>]>, t.TypeC<{
|
102
|
-
amountStaked: t.
|
102
|
+
amountStaked: t.StringC;
|
103
103
|
}>]>;
|
104
104
|
export type TaoStakeIntent = t.TypeOf<typeof TaoStakeIntent>;
|
@@ -56,6 +56,6 @@ export declare const TaoStakingBaseIntent: t.IntersectionC<[t.IntersectionC<[t.I
|
|
56
56
|
}, unknown>, t.UndefinedC]>;
|
57
57
|
}>]>, t.TypeC<{
|
58
58
|
hotkey: t.StringC;
|
59
|
-
netuid: t.
|
59
|
+
netuid: t.StringC;
|
60
60
|
}>]>;
|
61
61
|
export type TaoStakingBaseIntent = t.TypeOf<typeof TaoStakingBaseIntent>;
|
@@ -32,7 +32,7 @@ exports.TaoStakingBaseIntent = t.intersection([
|
|
32
32
|
substrateAccountBaseBuildOptions_1.SubstrateAccountBaseBuildOptions,
|
33
33
|
t.type({
|
34
34
|
hotkey: t.string,
|
35
|
-
netuid: t.
|
35
|
+
netuid: t.string,
|
36
36
|
}),
|
37
37
|
]);
|
38
38
|
//# sourceMappingURL=taoStakingBaseIntent.js.map
|
@@ -97,8 +97,8 @@ export declare const TaoUnstakeIntent: t.IntersectionC<[t.IntersectionC<[t.Inter
|
|
97
97
|
}, unknown>, t.UndefinedC]>;
|
98
98
|
}>]>, t.TypeC<{
|
99
99
|
hotkey: t.StringC;
|
100
|
-
netuid: t.
|
100
|
+
netuid: t.StringC;
|
101
101
|
}>]>, t.TypeC<{
|
102
|
-
amountUnstaked: t.
|
102
|
+
amountUnstaked: t.StringC;
|
103
103
|
}>]>;
|
104
104
|
export type TaoUnstakeIntent = t.TypeOf<typeof TaoUnstakeIntent>;
|
package/package.json
CHANGED