Co-authored-by: Bilog WEB3 <155262265+Bilogweb3@users.noreply.github.com> Co-authored-by: Fallengirl <155266340+Fallengirl@users.noreply.github.com> Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: XxAlex74xX <30472093+XxAlex74xX@users.noreply.github.com> Co-authored-by: Arr00 <13561405+arr00@users.noreply.github.com> Co-authored-by: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Co-authored-by: kilavvy <140459108+kilavvy@users.noreply.github.com> Co-authored-by: Devkuni <155117116+detrina@users.noreply.github.com> Co-authored-by: Danbo <140512416+dannbbb1@users.noreply.github.com> Co-authored-by: Ann Wagner <chant_77_swirly@icloud.com> Co-authored-by: comfsrt <155266597+comfsrt@users.noreply.github.com> Co-authored-by: Bob <158583129+bouchmann@users.noreply.github.com> Co-authored-by: JohnBonny <158583902+JohnBonny@users.noreply.github.com> Co-authored-by: moonman <155266991+moooonman@users.noreply.github.com> Co-authored-by: kazak <alright-epsilon8h@icloud.com> Co-authored-by: Wei <ybxerlvqtx@rambler.ru> Co-authored-by: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Co-authored-by: Vitalyr <158586577+Vitaliyr888@users.noreply.github.com> Co-authored-by: pendrue <158588659+pendrue@users.noreply.github.com> Co-authored-by: Tronica <wudmytrotest404@gmail.com> Co-authored-by: emmmm <155267286+eeemmmmmm@users.noreply.github.com> Co-authored-by: bigbear <155267841+aso20455@users.noreply.github.com> Co-authored-by: Tomás Andróil <tomasandroil@gmail.com> Co-authored-by: GooseMatrix <155266802+GooseMatrix@users.noreply.github.com> Co-authored-by: jasmy <3776356370@qq.com> Co-authored-by: SITADRITA1 <mrlime2018@gmail.com> Co-authored-by: Ocenka <testoviydiman1@gmail.com>
81 lines
2.1 KiB
JavaScript
81 lines
2.1 KiB
JavaScript
const format = require('../format-lines');
|
|
const { TYPES } = require('./Slot.opts');
|
|
|
|
const header = `\
|
|
pragma solidity ^0.8.24;
|
|
|
|
/**
|
|
* @dev Library for reading and writing value-types to specific transient storage slots.
|
|
*
|
|
* Transient slots are often used to store temporary values that are removed after the current transaction.
|
|
* This library helps with reading and writing to such slots without the need for inline assembly.
|
|
*
|
|
* * Example reading and writing values using transient storage:
|
|
* \`\`\`solidity
|
|
* contract Lock {
|
|
* using TransientSlot for *;
|
|
*
|
|
* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
|
|
* bytes32 internal constant _LOCK_SLOT = 0xf4678858b2b588224636b8522b729e7722d32fc491da849ed75b3fdf3c84f542;
|
|
*
|
|
* modifier locked() {
|
|
* require(!_LOCK_SLOT.asBoolean().tload());
|
|
*
|
|
* _LOCK_SLOT.asBoolean().tstore(true);
|
|
* _;
|
|
* _LOCK_SLOT.asBoolean().tstore(false);
|
|
* }
|
|
* }
|
|
* \`\`\`
|
|
*
|
|
* TIP: Consider using this library along with {SlotDerivation}.
|
|
*/
|
|
`;
|
|
|
|
const udvt = ({ type, name }) => `\
|
|
/**
|
|
* @dev UDVT that represents a slot holding a ${type}.
|
|
*/
|
|
type ${name}Slot is bytes32;
|
|
|
|
/**
|
|
* @dev Cast an arbitrary slot to a ${name}Slot.
|
|
*/
|
|
function as${name}(bytes32 slot) internal pure returns (${name}Slot) {
|
|
return ${name}Slot.wrap(slot);
|
|
}
|
|
`;
|
|
|
|
const transient = ({ type, name }) => `\
|
|
/**
|
|
* @dev Load the value held at location \`slot\` in transient storage.
|
|
*/
|
|
function tload(${name}Slot slot) internal view returns (${type} value) {
|
|
assembly ("memory-safe") {
|
|
value := tload(slot)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev Store \`value\` at location \`slot\` in transient storage.
|
|
*/
|
|
function tstore(${name}Slot slot, ${type} value) internal {
|
|
assembly ("memory-safe") {
|
|
tstore(slot, value)
|
|
}
|
|
}
|
|
`;
|
|
|
|
// GENERATE
|
|
module.exports = format(
|
|
header.trimEnd(),
|
|
'library TransientSlot {',
|
|
format(
|
|
[].concat(
|
|
TYPES.filter(type => type.isValueType).map(type => udvt(type)),
|
|
TYPES.filter(type => type.isValueType).map(type => transient(type)),
|
|
),
|
|
).trimEnd(),
|
|
'}',
|
|
);
|