Created
January 26, 2025 13:52
-
-
Save goodylili/2f8fadbd41dfa56b497fb190ebc074d5 to your computer and use it in GitHub Desktop.
Avalanche Precompiles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package precompile | |
import ( | |
"errors" | |
"github.com/ava-labs/avalanchego/utils/crypto/bls" | |
) | |
// BLSSignatureVerify is the precompiled contract for BLS signature verification | |
type BLSSignatureVerify struct{} | |
// RequiredGas calculates the gas cost for signature verification | |
func (c *BLSSignatureVerify) RequiredGas(input []byte) uint64 { | |
return 3000 // Estimated base gas cost | |
} | |
// Run executes the signature verification | |
func (c *BLSSignatureVerify) Run(input []byte) ([]byte, error) { | |
// Input validation | |
const ( | |
messageHashLen = 32 | |
publicKeyLen = 48 | |
signatureLen = 96 | |
totalInputLen = messageHashLen + publicKeyLen + signatureLen | |
) | |
if len(input) != totalInputLen { | |
return nil, errors.New("invalid input length") | |
} | |
// Parse input components | |
messageHash := input[:messageHashLen] | |
publicKeyBytes := input[messageHashLen : messageHashLen+publicKeyLen] | |
signatureBytes := input[messageHashLen+publicKeyLen:] | |
// Convert bytes to BLS types | |
publicKey, err := bls.PublicKeyFromCompressedBytes(publicKeyBytes) | |
if err != nil { | |
return nil, err | |
} | |
signature, err := bls.SignatureFromBytes(signatureBytes) | |
if err != nil { | |
return nil, err | |
} | |
// Verify signature | |
verified := bls.Verify(publicKey, signature, messageHash) | |
// Return result as byte (0 for false, 1 for true) | |
if verified { | |
return []byte{1}, nil | |
} | |
return []byte{0}, nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment