TxData |
Transactor.retrieveCertificate(String companyBcId,
String id) |
fetches the API and returns a certificate from the state.
|
TxResults |
Transactor.retrieveCertificateTxs(String companyBcId,
String id,
int page,
int txPerPage) |
fetches the API and returns all txs related to a certificate fqid.
|
KeyV1[] |
Transactor.retrieveCompanyKeys(String companyBcId,
int page,
int txPerPage) |
fetches the API and returns a list of keys for a company from the state.
|
KeyV1 |
Transactor.retrieveKey(String companyBcId,
String id) |
fetches the API and returns a key from the state.
|
TxResults |
Transactor.retrieveKeyTxs(String companyBcId,
String id,
int page,
int txPerPage) |
fetches the API and returns all txs related to a key fqid.
|
TxResult |
Transactor.retrieveLastCertificateTx(String companyBcId,
String id) |
fetches the API and returns the last tx related to a certificate fqid.
|
TxResult |
Transactor.retrieveLastKeyTx(String companyBcId,
String id) |
fetches the API and returns the last tx related to a key fqid.
|
TxResult |
Transactor.retrieveLastSecretTx(String companyBcId,
String id) |
fetches the API and returns the last tx related to a secret fqid.
|
TxData |
Transactor.retrieveSecret(String companyBcId,
String id) |
fetches the API and returns a secret from the state.
|
TxResults |
Transactor.retrieveSecretTxs(String companyBcId,
String id,
int page,
int txPerPage) |
fetches the API and returns all txs related to a secret fqid.
|
TxResult |
Transactor.retrieveTx(String hash) |
fetches the API and return any tx by its hash.
|
SendTxResult |
Transactor.sendCertificateEd25519V1Tx(String id,
PublicKey signer,
byte[] signature) |
creates a CertificateEd25519 (V1) and sends it to the API.
|
SendTxResult |
Transactor.sendCertificateRawV1Tx(String id,
byte[] value) |
creates a CertificateRaw (V1) and sends it to the API.
|
SendTxResult |
Transactor.sendKeyCreateV1Tx(String id,
PublicKey publicKey,
String role) |
creates a KeyCreate (V1) and sends it to the API.
|
SendTxResult |
Transactor.sendKeyRevokeV1Tx(String id) |
creates a KeyRevoke (V1) and sends it to the API.
|
SendTxResult |
Transactor.sendKeyRotateV1Tx(String id,
PublicKey publicKey) |
creates a KeyRotate (V1) and sends it to the API.
|
SendTxResult |
Transactor.sendSecretNaclBoxV1Tx(String id,
PublicKey sender,
byte[] nonce,
byte[] content) |
creates a SecretNaclBox (V1) and sends it to the API.
|
SendTxResult |
Transactor.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.
|