synapsecns/sanguine

View on GitHub
services/cctp-relayer/attestation/api.go

Summary

Maintainability
A
0 mins
Test Coverage
package attestation

import (
    "context"
)

// CCTPAPI is the interface for the Attestation API.
type CCTPAPI interface {
    GetAttestation(context.Context, string) ([]byte, error)
}