Function createInstructionSetBCH2022 create Instruction SetBCH2022 ( standard ? , __namedParameters ? ) : InstructionSet < ResolvedTransactionCommon , AuthenticationProgramCommon , AuthenticationProgramStateCommon > Parameters standard : boolean = true __namedParameters : { ripemd160 : { hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) ; } ; secp256k1 : { verifySignatureDERLowS : ( ( signature , publicKey , messageHash ) => boolean ) ; verifySignatureSchnorr : ( ( signature , publicKey , messageHash ) => boolean ) ; } ; sha1 : { hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) ; } ; sha256 : { hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) ; } ; } = ... ripemd160 : { hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) ; } hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) secp256k1 : { verifySignatureDERLowS : ( ( signature , publicKey , messageHash ) => boolean ) ; verifySignatureSchnorr : ( ( signature , publicKey , messageHash ) => boolean ) ; } verify SignatureDERLowS : ( ( signature , publicKey , messageHash ) => boolean ) ( signature , publicKey , messageHash ) : boolean Parameters signature : Uint8Array publicKey : Uint8Array messageHash : Uint8Array Returns boolean verify Signature Schnorr : ( ( signature , publicKey , messageHash ) => boolean ) ( signature , publicKey , messageHash ) : boolean Parameters signature : Uint8Array publicKey : Uint8Array messageHash : Uint8Array Returns boolean sha1 : { hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) ; } hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) sha256 : { hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array ) ; } hash : ( ( input ) => Uint8Array ) & ( ( input ) => Uint8Array )
create an instance of the BCH 2022 virtual machine instruction set.