Gabriel Facco de Arruda

Results 33 issues of Gabriel Facco de Arruda

Usually the assumptions made by the `construct_runtime` macro are correct and help keep the runtime boilerplate free, but sometimes it's desirable to override the implementations generated by the macro. In...

Z0-unconfirmed

This PR adds the XCM configs necessary to allow Tinkernet multisigs to transact on Moonbase. Tinkernet multisigs have the following MultiLocation pattern: ```rust MultiLocation { parents: _, // ancestry depends...

This PR adds the common XCM location converter `HashedDescription`, which is used across the ecosystem, to Bifrost Kusama. For reference, chains using `HashedDescription` include the [relay chain](https://github.com/polkadot-fellows/runtimes/blob/main/relay/kusama/src/xcm_config.rs#L76) and system parachains...

This PR adds the XCM configs necessary to allow Tinkernet multisigs to transact on Kintsugi. Tinkernet multisigs have the following MultiLocation pattern: ```rust MultiLocation { parents: _, // ancestry depends...

We need a pallet to manage the TSS system and to give an interface for payload signature request by users + signed payload delivery by TSS nodes. WIP architecture: ```...

### Pallet ``` enum List { Simple(Vec), Weighted(Vec) } trait ListSourceTrait { fn get_list(&self) -> List; } trait config { type ListSource: ListSourceTrait } storages { CustomLists: Hash -> List;...

Closes #214

We should have a pallet dedicated to defining the logic for (local and XCM) NFT-based origins and their "Account" types. This pallet should provide all the traits necessary for implementing...