7 unstable releases (3 breaking)
0.3.0 | Nov 1, 2024 |
---|---|
0.2.0 | Jun 25, 2024 |
0.1.3 | Jul 11, 2024 |
0.1.1 | Feb 9, 2024 |
0.0.1 | Sep 21, 2022 |
#21 in #padding
42,417 downloads per month
12KB
196 lines
Instruction Pad Program
A program for padding instructions with additional data or accounts, to be used for testing larger transactions, either more instruction data, or more accounts.
The main use-case is with solana-bench-tps, where we can see the impact of larger transactions through TPS numbers. With that data, we can develop a fair fee model for large transactions.
It operates with two instructions: no-op and wrap.
- No-op: simply an instruction with as much data and as many accounts as desired, of which none will be used for processing.
- Wrap: before the padding data and accounts, accepts a real instruction and required accounts, and performs a CPI into the program specified by the instruction
Both of these modes add the general overhead of calling a BPF program, and the wrap mode adds the CPI overhead.
Because of the overhead, it's best to use the instruction padding program with all large transaction tests, and comparing TPS numbers between:
- using the program with no padding
- using the program with data and account padding
Audit
The repository README contains information about program audits.
Dependencies
~0.6–6MB
~30K SLoC