You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/entities/rosetta/rosetta-construction-options.schema.json
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,10 @@
76
76
"type": "integer",
77
77
"description": "Set the burnchain (BTC) block for stacking lock to start."
78
78
},
79
+
"reward_cycle_id": {
80
+
"type": "integer",
81
+
"description": "The reward cycle ID for stacking transaction."
82
+
},
79
83
"delegate_to": {
80
84
"type": "string",
81
85
"description": "Delegator address for when calling `delegate-stacking`."
@@ -87,6 +91,22 @@
87
91
"signer_key": {
88
92
"type": "string",
89
93
"description": "The hex-encoded signer key (buff 33) for PoX."
94
+
},
95
+
"signer_private_key": {
96
+
"type": "string",
97
+
"description": "The hex-encoded signer private key for PoX. Specify either this or `signer_signature`, otherwise the PoX transaction requires allow-listing from the signer."
98
+
},
99
+
"signer_signature": {
100
+
"type": "string",
101
+
"description": "The hex-encoded signer signature for PoX. Specify either this or `signer_private_key`, otherwise the PoX transaction requires allow-listing from the signer."
102
+
},
103
+
"pox_max_amount": {
104
+
"type": "string",
105
+
"description": "The maximum amount of STX to stack for PoX. If not specified, the `amount` will be used as the `max-amount` for the PoX transaction."
106
+
},
107
+
"pox_auth_id": {
108
+
"type": "string",
109
+
"description": "The auth ID for the PoX transaction. If not specified, a random value will be generated."
* The hex-encoded signer private key for PoX. Specify either this or `signer_signature`, otherwise the PoX transaction requires allow-listing from the signer.
2699
+
*/
2700
+
signer_private_key?: string;
2701
+
/**
2702
+
* The hex-encoded signer signature for PoX. Specify either this or `signer_private_key`, otherwise the PoX transaction requires allow-listing from the signer.
2703
+
*/
2704
+
signer_signature?: string;
2705
+
/**
2706
+
* The maximum amount of STX to stack for PoX. If not specified, the `amount` will be used as the `max-amount` for the PoX transaction.
2707
+
*/
2708
+
pox_max_amount?: string;
2709
+
/**
2710
+
* The auth ID for the PoX transaction. If not specified, a random value will be generated.
2711
+
*/
2712
+
pox_auth_id?: string;
2693
2713
}
2694
2714
/**
2695
2715
* The ConstructionMetadataResponse returns network-specific metadata used for transaction construction. Optionally, the implementer can return the suggested fee associated with the transaction being constructed. The caller may use this info to adjust the intent of the transaction or to create a transaction with a different account that can pay the suggested fee. Suggested fee is an array in case fee payment must occur in multiple currencies.
0 commit comments