diff --git a/server/jccommon/types.go b/server/jccommon/types.go index 7c6212fd..a5870415 100644 --- a/server/jccommon/types.go +++ b/server/jccommon/types.go @@ -124,6 +124,22 @@ type BlockDataPo struct { TimeStamp string `json:"timestamp"` } +type VesterClaimPo struct { + Receiverstring string `json:"receiver"` + Amount string `json:"amount"` +} + +type VesterDepositPo struct { + Account string `json:"account"` + Amount string `json:"amount"` +} + +type VesterWithdrawPo struct { + Account string `json:"account"` + ClaimedAmount string `json:"claimedAmount"` + Amount string `json:"amount"` +} + type NftIdentity struct { NetId int32 ContractAddress string