github.com/consensys/gnark@v0.11.0/backend/solidity/verifyingkey.go (about)

     1  package solidity
     2  
     3  import "io"
     4  
     5  // VerifyingKey is the interface for verifying keys in the Solidity backend.
     6  type VerifyingKey interface {
     7  	NbPublicWitness() int
     8  	ExportSolidity(io.Writer, ...ExportOption) error
     9  }