Uses of Interface
com.github.katenachain.entity.TxData
-
-
Uses of TxData in com.github.katenachain
Methods in com.github.katenachain that return TxData Modifier and Type Method Description TxDataTransactor. retrieveCertificate(String companyBcId, String id)fetches the API and returns a certificate from the state.TxDataTransactor. retrieveSecret(String companyBcId, String id)fetches the API and returns a secret from the state.Methods in com.github.katenachain with parameters of type TxData Modifier and Type Method Description SendTxResultTransactor. sendTx(TxData txData)creates a tx from a tx data and the provided tx signer info and chain id, signs it, encodes it and sends it to the api. -
Uses of TxData in com.github.katenachain.api
Methods in com.github.katenachain.api that return TxData Modifier and Type Method Description TxDataHandler. retrieveCertificate(String fqId)fetches the API and returns a certificate from the state.TxDataHandler. retrieveSecret(String fqId)fetches the API and returns a secret from the state.Methods in com.github.katenachain.api with parameters of type TxData Modifier and Type Method Description byte[]Handler. getTxDataState(String chainId, Instant nonceTime, TxData txData)returns the sorted and marshaled json representation of a TxData ready to be signed.TxHandler. signTx(TxSigner txSigner, String chainId, Instant nonceTime, TxData txData)signs a tx data and returns a new tx ready to be sent. -
Uses of TxData in com.github.katenachain.entity
Classes in com.github.katenachain.entity that implement TxData Modifier and Type Class Description classUnknownTxDataUnknownTxData is useful to deserialize and serialize back a tx data of unknown type.Methods in com.github.katenachain.entity that return TxData Modifier and Type Method Description TxDataTx. getData()Constructors in com.github.katenachain.entity with parameters of type TxData Constructor Description Tx(TxData data, Instant nonceTime, byte[] signature, String signerFqId)Tx constructor.TxDataState(String chainId, Instant nonceTime, TxData data)TxDataState constructor. -
Uses of TxData in com.github.katenachain.entity.account
Classes in com.github.katenachain.entity.account that implement TxData Modifier and Type Class Description classKeyCreateV1KeyCreateV1 is the first version of a key create message.classKeyRevokeV1KeyRevokeV1 is the first version of a key revoke message.classKeyRotateV1KeyCreateV1 is the first version of a key rotate message. -
Uses of TxData in com.github.katenachain.entity.certify
Classes in com.github.katenachain.entity.certify that implement TxData Modifier and Type Class Description classCertificateEd25519V1CertificateEd25519V1 is the first version of an ed25519 certificate.classCertificateRawV1CertificateRawV1 is the first version of a raw certificate.classSecretNaclBoxV1SecretNaclBoxV1 is the first version of a nacl box secret. -
Uses of TxData in com.github.katenachain.serializer.adapter
Methods in com.github.katenachain.serializer.adapter that return TxData Modifier and Type Method Description TxDataTxDataSerializer. deserialize(com.google.gson.JsonElement jsonElement, Type type, com.google.gson.JsonDeserializationContext jsonDeserializationContext)Methods in com.github.katenachain.serializer.adapter with parameters of type TxData Modifier and Type Method Description com.google.gson.JsonElementTxDataSerializer. serialize(TxData txData, Type type, com.google.gson.JsonSerializationContext jsonSerializationContext)
-