1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00
thalos/types.go

12 lines
259 B
Go

package main
import (
eos "github.com/eoscanada/eos-go"
)
type ActionTrace struct {
Receiver eos.Name `json:"receiver"`
Contract eos.AccountName `json:"contract"`
Action eos.ActionName `json:"action"`
Data interface{} `json:"data"`
}