Blockchain transaction analysis

Sonc Labs offers a simple way to read and understand complex blockchain transactions.

Example:

type Provider interface {
    GenerateCompletion(context.Context, CompletionRequest) (string, error)
    GenerateJSON(context.Context, JSONRequest, interface{}) error
    EmbedText(context.Context, string) ([]float32, error)
}

Output:

{
  "from": "0x123...456",
  "to": "0xabc...def",
  "value": "2.5 ETH",
  "gas_used": 21000,
  "status": "Success"
}

Last updated