-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8fd59a6
commit 573479a
Showing
2 changed files
with
89 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## `enable_packed_slots` | ||
|
||
### Signature | ||
|
||
```solidity | ||
function enable_packed_slots(StdStorage storage self) internal returns (StdStorage storage); | ||
``` | ||
|
||
### Description | ||
|
||
Enables the usage of packed storage slots | ||
|
||
### Examples | ||
|
||
```solidity | ||
// Write arbitrary balances even on gas-optimized contracts like AUSD | ||
stdstore | ||
.enable_packed_slots() | ||
.target(_tokenAddress) | ||
.sig("balanceOf(address)") | ||
.with_key(_to) | ||
.checked_write( | ||
_amount | ||
); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters