Skip to content

Commit 0036656

Browse files
authored
Merge pull request #360 from crytic/fix-starknet-links
Updated old starknet documentation links
2 parents f88d490 + 28b20d3 commit 0036656

File tree

1 file changed

+1
-1
lines changed
  • not-so-smart-contracts/cairo/L1_to_L2_address_conversion

1 file changed

+1
-1
lines changed

not-so-smart-contracts/cairo/L1_to_L2_address_conversion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In Starknet, addresses are of the `felt` type, while on L1 addresses are of the
44

55
# Example
66

7-
Consider the following code to initiate L2 deposits from L1. The first example has no checks on the `to` parameter, and depending on the user's address, it could transfer tokens to an unexpected address on L2. The second example, however, adds verification to ensure this does not happen. Note that the code is a simplified version of how messages are sent on L1 and processed on L2. For a more comprehensive overview, see here: https://www.cairo-lang.org/docs/hello_starknet/l1l2.html.
7+
Consider the following code to initiate L2 deposits from L1. The first example has no checks on the `to` parameter, and depending on the user's address, it could transfer tokens to an unexpected address on L2. The second example, however, adds verification to ensure this does not happen. Note that the code is a simplified version of how messages are sent on L1 and processed on L2. For a more comprehensive overview, see here: [https://www.cairo-lang.org/docs/hello_starknet/l1l2.html](https://docs.cairo-lang.org/hello_starknet/l1l2.html).
88

99
```solidity
1010
contract L1ToL2Bridge {

0 commit comments

Comments
 (0)