github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/token/types/fee.go (about)

     1  package types
     2  
     3  // nolint
     4  type FeeDetail struct {
     5  	Address   string `gorm:"index;type:varchar(80)" json:"address" v2:"address"`
     6  	Receiver  string `gorm:"index;type:varchar(80)" json:"receiver" v2:"receiver"` // added for opendex
     7  	Fee       string `gorm:"type:varchar(40)" json:"fee" v2:"fee"`
     8  	FeeType   string `gorm:"index;type:varchar(20)" json:"fee_type" v2:"fee_type"` // defined in order/types/const.go
     9  	Timestamp int64  `gorm:"type:bigint" json:"timestamp" v2:"timestamp"`
    10  }