Files
openzeppelin-contracts/scripts/generate/templates/Checkpoints.opts.js
github-actions dbe796d542 Update docs
2023-09-19 19:19:10 +00:00

18 lines
411 B
JavaScript

// OPTIONS
const VALUE_SIZES = [224, 208, 160];
const defaultOpts = size => ({
historyTypeName: `Trace${size}`,
checkpointTypeName: `Checkpoint${size}`,
checkpointFieldName: '_checkpoints',
keyTypeName: `uint${256 - size}`,
keyFieldName: '_key',
valueTypeName: `uint${size}`,
valueFieldName: '_value',
});
module.exports = {
VALUE_SIZES,
OPTS: VALUE_SIZES.map(size => defaultOpts(size)),
};