3 releases (breaking)

0.3.0 Oct 20, 2023
0.2.0 Sep 14, 2023
0.1.0 May 31, 2023

#34 in #sovereign

Download history 9/week @ 2024-02-18 30/week @ 2024-02-25 7/week @ 2024-03-03 24/week @ 2024-03-10 13/week @ 2024-03-17 15/week @ 2024-03-24 44/week @ 2024-03-31

98 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

305KB
6K SLoC

sov-bank module

The sov-bank module is responsible for managing tokens on the rollup.

The sov-bank module offers the following functionality:

Calls:

  1. The CallMessage::CreateToken message creates a new token with an initial balance allocated to the minter. Conceptually a token is a mapping from users addresses to balances. Each token has a name and a unique address created automatically by the sov-bank module during the creation phase.

  2. The CallMessage::Transfer message facilitates the transfer of tokens between two accounts. To initiate the transfer, the sender must provide the beneficiary's account, the amount of tokens to be transferred, and the token address. It is important to note that the sender's account balance must be greater than the amount being transferred.

  3. The CallMessage::Burn message burns the specified amount of tokens.

Dependencies

~7–24MB
~353K SLoC