github.com/annchain/OG@v0.0.9/og/protocol/ogmessage/archive/token_info.go (about)

     1  package archive
     2  
     3  import (
     4  	"github.com/annchain/OG/common"
     5  	"github.com/annchain/OG/common/math"
     6  )
     7  
     8  //go:generate msgp
     9  
    10  //msgp:tuple TokenInfo
    11  type TokenInfo struct {
    12  	PublicOffering
    13  	Sender       common.Address `json:"sender"`
    14  	CurrentValue *math.BigInt   `json:"current_value"`
    15  	Destroyed    bool           `json:"destroyed"`
    16  }
    17  
    18  type TokensInfo []*TokenInfo