InvArch-Frames
InvArch-Frames copied to clipboard
InvArch FRAME Pallet Library - Multi-party ownership, non-custodial & omnichain asset management, and DAO infrastructure.
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 #225