Felt252

Felt252 is a fundamental data type in Cairo from which all other data types are derived. Felt252 can also be used to store short-string representations with a maximum length of 31 characters.

Por ejemplo:

    let felt: felt252 = 100;
    let felt_as_str = 'Hello Starknet!';

    let felt = felt + felt_as_str;
Last change: 2023-11-30, commit: 932307f