Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
sov-bank module
The sov-bank module is responsible for managing tokens on the rollup.
The sov-bank module offers the following functionality:
Calls:
-
The
CallMessage::CreateTokenmessage creates a newtokenwith 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 thesov-bankmodule during the creation phase. -
The
CallMessage::Transfermessage 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. -
The
CallMessage::Burnmessage burns the specified amount of tokens.