@ixo/impactxclient-sdk and the ixo-multiclient-sdk repository before shipping.
There is no single blessed CLI for every IXO operation in this docs set. Prefer the SDK, Cosmos-compatible wallets, or deployment-specific CLIs your operator documents. For HTTP examples (for example Emerging Platform domains), see Domain registration.
Prerequisites
- Install dependencies:
@ixo/impactxclient-sdk(and optional@ixo/oracle-agent-sdkfor verification flows). - Choose RPC endpoint and chain ID from Networks and endpoints.
- Choose auth for each surface from Authentication matrix; on-chain writes require a funded signer (wallet or key management you control).
1. Initialize the client
client can submit transactions for your account.
Errors: RPC misconfiguration often surfaces as connection timeouts or JSON-RPC errors. Retry with a different node if the operator allows; confirm TLS and chainId match the network.
2. Register or manage a domain (digital twin)
Create an entity that backs your domain / digital twin (type and fields depend on your protocol):type / metadata vs module expectations may return failed transactions—inspect codespace and code in the broadcast result and compare to protocol docs.
3. Submit a claim
entityId, schema mismatch, or insufficient authorization produce chain errors or rejected messages. Cross-check Claims and your entity’s controller keys.
4. Evaluate or verify a claim (oracle-assisted)
Illustrative pattern combining oracle client and evaluation (see Implementation examples for full context):401/403 usually means wrong operator credential or DID; chain-side evaluateClaim failures often point to authorization or claim state.
5. Issue and rely on verifiable credentials
Credential issuance and verification are governed by your program’s issuer keys, schemas, and registry or Matrix storage—see Credential issuance and Identity and credentials. Implement issuance in the component that holds the issuer key; verifiers should check signature, issuer DID, schema, and revocation/status lists. For HTTP-oriented credential flows on Emerging, use the platform API docs (Emerging API) and the same auth rules as other service APIs.Error handling
- HTTP service calls: use Error handling for status codes; add retry/backoff for
429and transient5xx. - GraphQL (Blocksync): partial errors may appear in a top-level
errorsarray whiledatais non-null—always check both; unauthenticated introspection may be disabled on some deployments. - DID resolution: if resolution fails, confirm the DID is registered on the expected network and that you query the correct registry or indexer endpoint.
Next steps
SDK and kit overview
Canonical SDK and kit overview with route selection guidance
MultiClient SDK
Module-level features on-chain