neoneo-go/pkg/rpc/response/result/nep5.go

37 lines
1.1 KiB
Go
Raw Normal View History

2020-03-05 11:50:06 +00:00
package result
import (
"github.com/nspcc-dev/neo-go/pkg/util"
)
2020-03-05 11:50:06 +00:00
// NEP5Balances is a result for the getnep5balances RPC call.
type NEP5Balances struct {
Balances []NEP5Balance `json:"balance"`
2020-03-05 11:50:06 +00:00
Address string `json:"address"`
}
// NEP5Balance represents balance for the single token contract.
type NEP5Balance struct {
Asset util.Uint160 `json:"assethash"`
2020-03-05 11:50:06 +00:00
Amount string `json:"amount"`
LastUpdated uint32 `json:"lastupdatedblock"`
2020-03-05 11:50:06 +00:00
}
2020-03-05 12:16:03 +00:00
// NEP5Transfers is a result for the getnep5transfers RPC.
type NEP5Transfers struct {
Sent []NEP5Transfer `json:"sent"`
Received []NEP5Transfer `json:"received"`
Address string `json:"address"`
}
// NEP5Transfer represents single NEP5 transfer event.
type NEP5Transfer struct {
Timestamp uint64 `json:"timestamp"`
Asset util.Uint160 `json:"assethash"`
Address string `json:"transferaddress,omitempty"`
2020-03-05 12:16:03 +00:00
Amount string `json:"amount"`
Index uint32 `json:"blockindex"`
NotifyIndex uint32 `json:"transfernotifyindex"`
TxHash util.Uint256 `json:"txhash"`
2020-03-05 12:16:03 +00:00
}