We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8364ad8 commit 1e0ee7eCopy full SHA for 1e0ee7e
tests/unit/test_erc7201.py
@@ -40,10 +40,11 @@ def test_erc7201_hex_namespace():
40
41
42
@pytest.mark.parametrize(
43
- "namespace,expected",
44
- [
45
- ("example.main", 0x183a6125c38840424c4a85fa12bab2ab606c4b6d0e7cc73c0c06ba5300eab500),
46
- ],
+ # see: https://eips.ethereum.org/EIPS/eip-7201#reference-implementation
+ (
+ "example.main",
+ 0x183a6125c38840424c4a85fa12bab2ab606c4b6d0e7cc73c0c06ba5300eab500,
47
+ ),
48
)
49
def test_erc7201_reference(namespace, expected):
50
assert erc7201_storage_slot(namespace) == expected
0 commit comments