Skip to main content

x/bank

Introduction

The bank module maintains the state of two primary objects:

  • Account balances by address
  • Total supply of tokens of the chain

bank module tracks and provides query support for the total supply of all assets used in the application. It also supports token transfer functionalities. Specifically, the total supply is updated whenever a token is:

  • Minted, e.g. Token created by the mint module
  • Burned, e.g. Token distorted by the slashing module