Show the crate…

1 stable release

2.0.0 Apr 4, 2021

#101 in #tetcoin

Download history 21/week @ 2024-01-08 1/week @ 2024-02-05 7/week @ 2024-02-12 12/week @ 2024-02-19 38/week @ 2024-02-26 15/week @ 2024-03-04 22/week @ 2024-03-11 16/week @ 2024-03-18 24/week @ 2024-03-25 54/week @ 2024-04-01

120 downloads per month
Used in 9 crates (2 directly)

Apache-2.0

1MB
24K SLoC

Utility Module

A stateless module with helpers for dispatch management which does no re-authentication.

Overview

This module contains two basic pieces of functionality:

  • Batch dispatch: A stateless operation, allowing any origin to execute multiple calls in a single dispatch. This can be useful to amalgamate proposals, combining set_code with corresponding set_storages, for efficient multiple payouts with just a single signature verify, or in combination with one of the other two dispatch functionality.
  • Pseudonymal dispatch: A stateless operation, allowing a signed origin to execute a call from an alternative signed origin. Each account has 2 * 2**16 possible "pseudonyms" (alternative account IDs) and these can be stacked. This can be useful as a key management tool, where you need multiple distinct accounts (e.g. as controllers for many staking accounts), but where it's perfectly fine to have each of them controlled by the same underlying keypair. Derivative accounts are, for the purposes of proxy filtering considered exactly the same as the oigin and are thus hampered with the origin's filters.

Since proxy filters are respected in all dispatches of this module, it should never need to be filtered by any proxy.

Interface

Dispatchable Functions

For batch dispatch

  • batch - Dispatch multiple calls from the sender's origin.

For pseudonymal dispatch

  • as_derivative - Dispatch a call from a derivative signed origin.

License: Apache-2.0

Dependencies

~3–13MB
~134K SLoC