UNPKG

@agentic-trust/8004-sdk

Version:

ERC-8004 Trustless Agents SDK - A TypeScript SDK for interacting with ERC-8004 compliant implementations

20 lines 747 B
/** * ERC-8004 Trustless Agents SDK * * A TypeScript SDK for interacting with ERC-8004 compliant implementations. * Makes zero assumptions beyond what the spec says. * All "MAY" fields are optional, not mandatory. * * Uses adapter pattern to support any blockchain library. */ export { ERC8004Client } from './ERC8004Client'; export { IdentityClient } from './IdentityClient'; export { ReputationClient } from './ReputationClient'; export { ValidationClient } from './ValidationClient'; export * from './adapters/types'; export * from './adapters/ethers'; export * from './adapters/viem'; export * from './types'; export * from './ports'; export { BaseIdentityClient } from './ports/BaseIdentityClient'; //# sourceMappingURL=index.d.ts.map