@ar.io/sdk 4.0.0-alpha.3 → 4.0.0-alpha.4
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.
|
@@ -229,10 +229,17 @@ export function encodeReportTxId(reportTxId) {
|
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
231
231
|
* Max `compound_delegation_rewards` instructions packed into one batched tx.
|
|
232
|
-
* Each
|
|
233
|
-
*
|
|
232
|
+
* Each is a SEPARATE instruction carrying a gateway + delegation + delegator
|
|
233
|
+
* account, so — unlike the single-ix `remaining_accounts` lifecycle batch (see
|
|
234
|
+
* `MAX_LIFECYCLE_BATCH`) and unlike prescribe (which uses an ALT) — the per-item
|
|
235
|
+
* tx cost is high and there is nothing to compress. Cap low enough that a full
|
|
236
|
+
* worst-case batch (all-distinct gateways → no account dedup) stays under
|
|
237
|
+
* Solana's 1232-byte transaction limit. A full batch of 12 overflows it and
|
|
238
|
+
* wedged epoch progression on staging-V2 (the RPC rejected the tx — observed at
|
|
239
|
+
* 1928B base64, well over the 1232B raw cap). Exported so the regression test in
|
|
240
|
+
* `compound-crank.test.ts` asserts this invariant against the live constant.
|
|
234
241
|
*/
|
|
235
|
-
const MAX_COMPOUND_BATCH =
|
|
242
|
+
export const MAX_COMPOUND_BATCH = 6;
|
|
236
243
|
/** Observation PDAs closed per tx before close_epoch (each ix carries Epoch +
|
|
237
244
|
* Observation + payer + system accounts — keep well under the tx account cap). */
|
|
238
245
|
const MAX_CLOSE_OBSERVATION_BATCH = 8;
|
package/lib/esm/version.js
CHANGED
|
@@ -121,6 +121,19 @@ export declare function buildObservationBitmap(registryAddresses: string[], fail
|
|
|
121
121
|
* auditability that the field exists for.
|
|
122
122
|
*/
|
|
123
123
|
export declare function encodeReportTxId(reportTxId: string | undefined): Buffer;
|
|
124
|
+
/**
|
|
125
|
+
* Max `compound_delegation_rewards` instructions packed into one batched tx.
|
|
126
|
+
* Each is a SEPARATE instruction carrying a gateway + delegation + delegator
|
|
127
|
+
* account, so — unlike the single-ix `remaining_accounts` lifecycle batch (see
|
|
128
|
+
* `MAX_LIFECYCLE_BATCH`) and unlike prescribe (which uses an ALT) — the per-item
|
|
129
|
+
* tx cost is high and there is nothing to compress. Cap low enough that a full
|
|
130
|
+
* worst-case batch (all-distinct gateways → no account dedup) stays under
|
|
131
|
+
* Solana's 1232-byte transaction limit. A full batch of 12 overflows it and
|
|
132
|
+
* wedged epoch progression on staging-V2 (the RPC rejected the tx — observed at
|
|
133
|
+
* 1928B base64, well over the 1232B raw cap). Exported so the regression test in
|
|
134
|
+
* `compound-crank.test.ts` asserts this invariant against the live constant.
|
|
135
|
+
*/
|
|
136
|
+
export declare const MAX_COMPOUND_BATCH = 6;
|
|
124
137
|
/** The single on-chain action a {@link SolanaARIOWriteable.crankEpochStep} call performed. */
|
|
125
138
|
export type CrankAction = 'create' | 'tally' | 'prescribe' | 'distribute' | 'compound' | 'update_demand_factor' | 'prune_returned_names' | 'close_observation' | 'close' | 'idle';
|
|
126
139
|
/** Options for {@link SolanaARIOWriteable.crankEpochStep}. */
|
package/lib/types/version.d.ts
CHANGED