Files
prysm/crypto/bls/interface.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

15 lines
319 B
Go

package bls
import (
"github.com/OffchainLabs/prysm/v7/crypto/bls/common"
)
// PublicKey represents a BLS public key.
type PublicKey = common.PublicKey
// SecretKey represents a BLS secret or private key.
type SecretKey = common.SecretKey
// Signature represents a BLS signature.
type Signature = common.Signature