github.com/Finschia/finschia-sdk@v0.49.1/x/feegrant/spec/README.md (about)

     1  <!--
     2  order: 0
     3  title: Fee grant
     4  parent:
     5    title: "feegrant"
     6  -->
     7  
     8  # Fee grant
     9  
    10  ## Abstract
    11  
    12  This document specifies the fee grant module. For the full ADR, please see [Fee Grant ADR-029](https://github.com/cosmos/cosmos-sdk/blob/v0.40.0/docs/architecture/adr-029-fee-grant-module.md).
    13  
    14  This module allows accounts to grant fee allowances and to use fees from their accounts. Grantees can execute any transaction without the need to maintain sufficient fees.
    15  
    16  ## Contents
    17  
    18  1. **[Concepts](01_concepts.md)**
    19      - [Grant](01_concepts.md#grant)
    20      - [Fee Allowance types](01_concepts.md#fee-allowance-types)
    21      - [BasicAllowance](01_concepts.md#basicallowance)
    22      - [PeriodicAllowance](01_concepts.md#periodicallowance)
    23      - [FeeAccount flag](01_concepts.md#feeaccount-flag)
    24      - [Granted Fee Deductions](01_concepts.md#granted-fee-deductions)
    25      - [Gas](01_concepts.md#gas)
    26  2. **[State](02_state.md)**
    27      * [FeeAllowance](02_state.md#feeallowance)
    28  3. **[Messages](03_messages.md)**
    29      * [Msg/GrantAllowance](03_messages.md#msggrantallowance)
    30      * [Msg/RevokeAllowance](03_messages.md#msgrevokeallowance)
    31  4. **[Events](04_events.md)**
    32      - [MsgGrantAllowance](04_events.md#msggrantallowance)
    33      - [MsgRevokeAllowance](04_events.md#msgrevokeallowance)
    34      - [Exec fee allowance](04_events.md#exec-fee-allowance)