Skip to content

Commit 04988c3

Browse files
authored
Merge pull request #49 from 0xmichalis/offchain-storage-link-fix
Fix link to offchain storage in eip712 pattern
2 parents d03fa80 + f9fbe4b commit 04988c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patterns/eip712-signed-messages/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ This will trigger a popup for the user to sign the message `proposalId: YOUR_PRO
124124
Imagine signing an off-chain message for a protocol that signals you want to perform an action when certain on-chain conditions are met. This message can sit idly off-chain until those conditions are met then someone else can pass that message into the protocol to perform the on-chain action without your intervention. Because someone else submitted it, you never had to pay any gas.
125125

126126
#### PRO: Often costs users less gas overall
127-
This pattern often goes hand-in-hand with [off-chain storage](./off-chain-storage), because all the fields in a message get condensed down into a single hash. Yet another bonus with signed messages is there is usually no need to even commit any data on-chain until the message is consumed. The message is considered trustworthy due to it being signed.
127+
This pattern often goes hand-in-hand with [off-chain storage](../off-chain-storage/), because all the fields in a message get condensed down into a single hash. Yet another bonus with signed messages is there is usually no need to even commit any data on-chain until the message is consumed. The message is considered trustworthy due to it being signed.
128128

129129
#### PRO: Can batch actions from different users together
130130
Whoever executes the message can also batch it with other messages, performing all their actions in a single transaction.

0 commit comments

Comments
 (0)