Zoe Faltibà
Zoe Faltibà
Currently there's an [enforcement at schema level](https://github.com/LNP-BP/rgb-node/blob/68146c578190bb578f2a4bf0f8d3298f94f0959a/src/contracts/fungible/data/schema.rs#L303) of `256` chars on the asset name. This limit may be too high, so let's consider lowering it a bit.
This PR fixes the call to `set_rgb_consumer` that was provided with the incorrect contract ID. Moreover I would like to report 2 issues that are related to the same method,...
Found some bugs on the consignment processing procedure. I thougt a single PR should ease review, but if needed I'll split this in more PRs. --- In `Runtime::process_consignment` the bundle...
In order to prevent a user from creating an asset with a name longer than the [value enforced at schema level](https://github.com/LNP-BP/rgb-node/blob/68146c578190bb578f2a4bf0f8d3298f94f0959a/src/contracts/fungible/data/schema.rs#L303) (which leads to a nontransferable asset), we should add...
for reference please see: https://github.com/orgs/LNP-BP/discussions/130#discussioncomment-3788608
In order to finalize an RGB transfer that sends more than one asset, I added a new `finalize_transfers` API. I haven't changed the existing finalize transfer API since I don't...
Running a test on [rgb-lib](https://github.com/RGB-Tools/rgb-lib) many times I've discovered a rare error, that seems related to the merge of two merkle blocks (sharing the same TXID). More specifically, the error...
in #195 a fix has been introduced to avoid processing the genesis ID: ```rust if transition_id.as_inner() == contract_id.as_inner() { continue; } ``` but as commented by @dr-orlovsky in https://github.com/RGB-WG/rgb-node/pull/195#issuecomment-1242162275 the...
reporting an issue mentioned in #196: The `TransferCommand::Combine` CLI command seems to have a bug: in ```rust let blank_bundle = TransitionBundle::blank(&outpoint_map, &bmap! {})?; for (transition, indexes) in blank_bundle.revealed_iter() { psbt.push_rgb_transition(transition.clone())?;...
reporting an issue mentioned in #196: The `TransferCommand::Combine` CLI command seems to have a bug: `let blank_bundle = TransitionBundle::blank(&outpoint_map, &bmap! {})?;` will always receive a `NoOutpoint` error, since the `TransitionBundle::blank`...