Skip to content

Table of content:

NameDescriptionSourceArgsMemoryTracePrivate InputPublic InputProofProver configProver Params
BasicLinear function calculation
Hash poseidonCalculate Poseidon hashx
FibonacciFibonacci number calculation
EcdsaECDSA signature verification using STARK-curve
Hash pedersenCalculate Pedersen hashx

Basic

(src) (input arguments) (table of contents)

This program calculates value of a basic linear function using equation:

y = a*x + b

where:

a = 12345678901234567890
b = 98765432109876543210

Outputs Format:

[ y ] as Array<felt252>

Memory Layout:

basic

Arguments Format: (arguments file)

[ x ] as Array<felt252>

Execution traces:

Memory File

Trace File

Private Input

Public Input

Proof

Prover Config

Prover Params

Hash poseidon

(src)

(table of contents)

This program calculates Poseidon hash of the struct. For the struct definition see below.

StructForHash { first: 0, second: 1, third: (1, 2), last: false };

Outputs Format:

[ hashValue ] as Array<felt252>

Memory Layout:

recursive_with_poseidon

Execution traces:

Memory File

Trace File

Private Input

Public Input

Proof

Prover Config

Prover Params

Fibonacci

(src) (input arguments) (table of contents)

This program calculates Nth Fibonacci number using recursion.

Outputs Format:

[ nth_number ] as Array<felt252>

Memory Layout:

small

Arguments Format: (arguments file)

[ n ] as Array<felt252>

Execution traces:

Memory File

Trace File

Private Input

Public Input

Proof

Prover Config

Prover Params

Ecdsa

(src) (input arguments) (table of contents)

This program calculates and checks the ECDSA signature using the STARK-curve. IMPORTANT: It's not safe! Some important checks are omitted. Check `check_ecdsa_signature`` function comment. Returns 1 if the signature is correct, 0 otherwise.

Outputs Format:

[ 0 or 1 ] as Array<felt252>

Memory Layout:

all_cairo

Arguments Format: (arguments file)

[hash, public_key, r, s] as Array<felt252>

Execution traces:

Memory File

Trace File

Private Input

Public Input

Proof

Prover Config

Prover Params

Hash pedersen

(src)

(table of contents)

This program calculates Pedersen hash of the struct. For the struct definition see below.

StructForHash { first: 0, second: 1, third: (1, 2), last: false };

Outputs Format:

[ hashValue ] as Array<felt252>

Memory Layout:

recursive_large_output

Execution traces:

Memory File

Trace File

Private Input

Public Input

Proof

Prover Config

Prover Params