MCPcopy Create free account
hub / github.com/BitVM/BitVM / Hint

Enum Hint

bitvm/src/bn254/utils.rs:10–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9#[derive(Debug, Clone)]
10pub enum Hint {
11 Fq(ark_bn254::Fq),
12 Fr(ark_bn254::Fr),
13 Hash([u32; U256::N_LIMBS as usize]),
14 U256(num_bigint::BigInt),
15 BigIntegerTmulLC1(num_bigint::BigInt),
16 BigIntegerTmulLC2(num_bigint::BigInt),
17 BigIntegerTmulLC2W4(num_bigint::BigInt),
18 BigIntegerTmulLC4(num_bigint::BigInt),
19}
20
21impl Hint {
22 pub fn push(&self) -> Script {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected