tokencrawler/.venv/lib/python3.9/site-packages/solana/_layouts/shared.py
2022-03-17 22:16:30 +01:00

15 lines
408 B
Python

"""Shared layouts."""
from construct import Bytes, Int32ul, Int64ul, PaddedString, Padding # type: ignore
from construct import Struct as cStruct
FEE_CALCULATOR_LAYOUT = cStruct("lamports_per_signature" / Int64ul)
HASH_LAYOUT = Bytes(32)
PUBLIC_KEY_LAYOUT = Bytes(32)
RUST_STRING_LAYOUT = cStruct(
"length" / Int32ul,
Padding(4),
"chars" / PaddedString(lambda this: this.length, "utf-8"),
)