github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/x/bank/spec/04_events.md (about)

     1  <!--
     2  order: 4
     3  -->
     4  
     5  # Events
     6  
     7  The bank module emits the following events:
     8  
     9  ## Handlers
    10  
    11  ### MsgSend
    12  
    13  | Type     | Attribute Key | Attribute Value    |
    14  |----------|---------------|--------------------|
    15  | transfer | recipient     | {recipientAddress} |
    16  | transfer | amount        | {amount}           |
    17  | message  | module        | bank               |
    18  | message  | action        | send               |
    19  | message  | sender        | {senderAddress}    |
    20  
    21  ### MsgMultiSend
    22  
    23  | Type     | Attribute Key | Attribute Value    |
    24  |----------|---------------|--------------------|
    25  | transfer | recipient     | {recipientAddress} |
    26  | transfer | amount        | {amount}           |
    27  | message  | module        | bank               |
    28  | message  | action        | multisend          |
    29  | message  | sender        | {senderAddress}    |