Type Alias TransportDetails
TransportDetails:
| { $kind: "jsonRpc"; response: unknown }
| {
$kind: "grpc";
status: { code: number; details: unknown[]; message: string };
}
| { $kind: "graphql" }
Type Declaration
- { $kind: "jsonRpc"; response: unknown }
$kind: "jsonRpc"
response: unknown
- { $kind: "grpc"; status: { code: number; details: unknown[]; message: string } }
$kind: "grpc"
status: { code: number; details: unknown[]; message: string }
- { $kind: "graphql" }
Structured per-transport escape hatch attached to any
SuiClientError. Narrow on$kindto get typed access to the raw wire payload.