massa icon indicating copy to clipboard operation
massa copied to clipboard

The Decentralized and Scaled Blockchain

Results 346 massa issues
Sort by recently updated
recently updated
newest added

## Intro Currently there is no way for a function executed in the Rust world to return an error that we could deal with in the assemblyscript world. For now,...

## Intro 2nd issue for RFC SC Datastore: https://github.com/massalabs/massa/discussions/2970 ## Todo - [ ] Add ABI in massa-sc-std - [ ] Add related function in massa-sc-runtime - [ ] Add...

## Intro First issue for RFC SC Datastore: https://github.com/massalabs/massa/discussions/2970 ## Todo - [ ] Add field - [ ] Handle Serialization and Deserialization

## Problem Currently to launch sandbox we have to edit files of configuration it's not easy at all for newcomer and block adoption. ## Solution Two possible solutions to make...

good first issue
tests
global

# A `jsonRPC` proposal. ## Abstract. API endpoint "get_addresses" has an issue, with number format, this proposal must solve this problem, the `jsonRPC` returns balance in decimals values, this proposal...

`wait_command` does a blocking `recv_timeout` on a `std::sync::mpsc::Receiver`, which blocks the current thread. In a single threaded async context(the [default](https://docs.rs/tokio/latest/tokio/attr.test.html) for the tokio tests), this means it blocks the thread...

* inside block header deserialization add the following checks: * check the signature (now we can because we see each object only once) * check that (parents.count == 0) ==...

Some smart contracts have read-only view functions like: ``` export function getSomeData(address: string): string { const data = Storage.get("KEY"); generateEvent(data); return data; } ``` which currently require us to generate...

Smart contracts might often have code like this: ``` export function getSomeData(address: string): string { const data = Storage.get("KEY"); generateEvent(data); return data; } ``` If this read-only method is being...

See those currently ignored in https://github.com/massalabs/massa/tree/release_testnet_14