Results 195 issues of Green Baneling

It seems we don't need a separate `process` step during regenesis, and we can simply iterate over the storage for coins, messages, and contracts, and call the `root` function. It...

The transaction algorithm uses the `TxId` as a second key when tips are equal. This causes the starvation of old transactions and may lead to keeping users' transactions in the...

- Describe how mempool works - Executor - Upgradable Executor vs Native (maybe explain how-to-upgrade here) - Production vs. DryRun vs Validation (maybe explain production nodes vs sentry nodes vs...

Both `extension` and `function` attributes require an explicit literal argument, which makes it impossible to have these constants defined in a single place and refer to them from both the...

## Overview Implemented the `call_builder!` macro from the [proposal](https://github.com/paritytech/ink/issues/631#issuecomment-1475389406). The macro return the `CallBuilder` type that supports hinting and highlighting in the IDE. The usage is the same as for...

## Overview The current usage of the chain extension has several limitations: - Only one chain extension is supported at the same time. - The chain extension is part of...

Closes https://github.com/FuelLabs/fuel-core/issues/1753 Closes https://github.com/FuelLabs/fuel-core/issues/1754 Closes https://github.com/FuelLabs/fuel-core/issues/1546 The change upgrade `fuel-vm` to `0.49` introducing `Upgrade` and `Upload` transactions. Supporting these transactions allows the upgrade of consensus parameters and state transition functions...

breaking

Related issue https://github.com/FuelLabs/fuel-core/issues/1754 Updated the upgradable executor to fetch the state transition bytecode from the database when the version doesn't match a native one. This change enables the WASM executor...

After https://github.com/FuelLabs/fuel-vm/pull/697, the allocation of the stack or heap may cause the copying of many bytes. The VM initialization should charge the user for the worst possible scenario where we...