17 releases

0.1.7 Oct 4, 2024
0.1.5 Jun 29, 2024
0.0.11 Mar 27, 2024
0.0.5 Dec 22, 2023

#17 in #cairo

Download history 8706/week @ 2024-10-27 9014/week @ 2024-11-03 7182/week @ 2024-11-10 8349/week @ 2024-11-17 10143/week @ 2024-11-24 17387/week @ 2024-12-01 16523/week @ 2024-12-08 13764/week @ 2024-12-15 9353/week @ 2024-12-22 10435/week @ 2024-12-29 12010/week @ 2025-01-05 12120/week @ 2025-01-12 16424/week @ 2025-01-19 22722/week @ 2025-01-26 18504/week @ 2025-02-02 21526/week @ 2025-02-09

79,936 downloads per month
Used in 86 crates (28 directly)

MIT license

120KB
2.5K SLoC

starknet-types-core

Core types representation for Starknet.

Overview

The starknet-types-core crate provides:

  • The universal Felt (Field Element) type for Cairo and STARK proofs. It was created to reduce the fragmentation in the Starknet Rust ecosystem by providing a standardized representation of the Felt type.

Features

Always on

  • Standardized Felt type: Simplify your codebase by using our standardized Felt type. Optimized for performance: The Felt type has been optimized for high-performance applications.
  • No_std support ✅

Serde

  • Provides a Serialization and Deserialization implementations for the Felt type
  • No_std support ✅

Parity Scale Codec

  • Provides Serialization and Deserialization implementations for the Felt type within the Parity serialization framework
  • No_std support ✅

Arbitrary

  • Provides an Arbitrary implementations for the Felt type

Curve

  • Add the AffinePoint and ProjectivePoint structs, which represent points on the Stark curve for performing elliptic curve operations.
  • No_std support ✅

Hash

  • Implements Pedersen hashing for Felts and Felts array

Examples

Here are some examples of how to use the starknet-types-core types:

    let felt = Felt::from(18);
    let projective_point = ProjectivePoint::new(Felt::from(0), Felt::from(1), Felt::from(0));
    let affine_point = AffinePoint::new(Felt::from(0), Felt::from(1)).unwrap();

Usage

Include starknet-types-core in your library by adding the following to your Cargo.toml:

[dependencies]
starknet-types-core = { version = "0.0.3", git = "https://github.com/starknet-io/types-rs", default-features = false, features = [
    "alloc",
    "serde",
    "arbitrary",
    "curve",
    "hash",
] }

Build from source

Clone the repository and navigate to the starknet-types-core directory. Then run:

cargo build --release

Testing

Clone the repository and navigate to the starknet-types-core directory. Then run:

cargo test

Contributing

Contributions are welcome! Please read our contributing guidelines for more information.

License

This repository is licensed under the MIT License, see LICENSE for more information.

Dependencies

~1.3–2.2MB
~46K SLoC