Skip to main content
POST
/
screening
/
travel_rule
/
providers
/
trust
/
proof_of_address
TypeScript
const response: Promise<FireblocksResponse<TrustProofOfAddressCreateResponse>> = fireblocks.travelRule.createTrustProofOfAddress(travelRuleApiCreateTrustProofOfAddressRequest);
{
  "transactionId": "550e8400-e29b-41d4-a716-446655440000",
  "status": "PENDING_SIGNATURE"
}

Documentation Index

Fetch the complete documentation index at: https://fireblocks-43c4b3ee-chore-add-cli.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Idempotency-Key
string

A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.

Body

application/json

Request to create a cryptographic proof of address ownership for TRUST network compliance

vaultAccountId
string<numeric>
required

The ID of the vault account.

Example:

"0"

asset
string
required

The asset identifier for which proof of address is being created.

Example:

"ETH"

prefix
string
required

The prefix to be used for signing messages.

Required string length: 1 - 255
Example:

"trust_verification"

trustUuid
string<uuid>
required

A unique identifier (UUID) obtained from TRUST (CreateAddressOwnership)

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Proof of address transaction created successfully

Response from creating a proof of address transaction

transactionId
string<uuid>
required

Transaction ID from Fireblocks (UUID format)

Example:

"550e8400-e29b-41d4-a716-446655440000"

status
enum<string>
required

Status of the typed message transaction from Fireblocks. For details, see Primary transaction statuses

Available options:
SUBMITTED,
QUEUED,
PENDING_SIGNATURE,
PENDING_AUTHORIZATION,
PENDING_3RD_PARTY_MANUAL_APPROVAL,
PENDING_3RD_PARTY,
BROADCASTING,
PENDING_AML_SCREENING,
CONFIRMING,
PARTIALLY_COMPLETED,
PENDING_EMAIL_APPROVAL,
CANCELLED,
REJECTED,
FAILED,
TIMEOUT,
BLOCKED
Example:

"PENDING_SIGNATURE"