Exemplo n.º 1
0
 def lcs_deserialize(input: bytes) -> "WriteSetPayload":
     v, buffer = lcs.deserialize(input, WriteSetPayload)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 2
0
 def lcs_deserialize(input: bytes) -> "BlockMetadata":
     v, buffer = lcs.deserialize(input, BlockMetadata)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 3
0
 def lcs_deserialize(input: bytes) -> "TravelRuleMetadataV0":
     v, buffer = lcs.deserialize(input, TravelRuleMetadataV0)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 4
0
 def lcs_deserialize(input: bytes) -> "TypeTag":
     v, buffer = lcs.deserialize(input, TypeTag)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 5
0
 def lcs_deserialize(input: bytes) -> "AccountAddress":
     v, buffer = lcs.deserialize(input, AccountAddress)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 6
0
 def lcs_deserialize(input: bytes) -> "TransactionAuthenticator":
     v, buffer = lcs.deserialize(input, TransactionAuthenticator)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 7
0
 def lcs_deserialize(input: bytes) -> "MultiEd25519Signature":
     v, buffer = lcs.deserialize(input, MultiEd25519Signature)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 8
0
 def lcs_deserialize(input: bytes) -> "SignedTransaction":
     v, buffer = lcs.deserialize(input, SignedTransaction)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 9
0
 def lcs_deserialize(input: bytes) -> "Identifier":
     v, buffer = lcs.deserialize(input, Identifier)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 10
0
 def lcs_deserialize(input: bytes) -> "HashValue":
     v, buffer = lcs.deserialize(input, HashValue)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 11
0
 def lcs_deserialize(input: bytes) -> "EventKey":
     v, buffer = lcs.deserialize(input, EventKey)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 12
0
 def lcs_deserialize(input: bytes) -> "ContractEventV0":
     v, buffer = lcs.deserialize(input, ContractEventV0)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v
Exemplo n.º 13
0
 def lcs_deserialize(input: bytes) -> "ChangeSet":
     v, buffer = lcs.deserialize(input, ChangeSet)
     if buffer:
         raise st.DeserializationError("Some input bytes were not read")
     return v