0kenx

Results 21 issues of 0kenx

It would be useful for the `query` and `update` guards to support multiple functions. For example: `#[update(guards = ["only_admin", "non_reentrant"])]`

Closes #110

Add support for node 20.x.x

``` help: the following other types implement trait `BoundedStorable`: () (A, B) ``` Would be nice to implement this for (A, B, C...) in accordance with candid.

It would be very useful to support the following: ``` #[derive(CandidType, Deserialize, Storable, BoundedStorable)] struct UserProfile { token0_balance: u64, token1_balance: u64, } ```

Ref: #87

language feature

Currently, debug's `dump()` supports String, Int, and Bool. It doesn't support dumping `Address`, `Cell`, `Slice` etc. To enhance developer experience it makes sense for `dump` to support all native data...

language feature
scope: builtins

Some errors, such as some type errors, are not caught by the Tact-FunC transpiler, but the FunC compiler would report errors on the FunC code generated by Tact. This is...

bug
typechecker

The following code should work: ``` const ConstMsg: String = "ABC"; receive(ConstMsg) {} ``` Currently it report error `Syntax error: expected ":" `

language feature