mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 13:58:05 +00:00
73b630db9b
Follow C# implementation, we have to marshall JSON Fixed8 fields without taking into account decimals.
53 lines
1.8 KiB
Go
53 lines
1.8 KiB
Go
package result
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
)
|
|
|
|
// ApplicationLog wrapper used for the representation of the
|
|
// state.AppExecResult based on the specific tx on the RPC Server.
|
|
type ApplicationLog struct {
|
|
TxHash util.Uint256 `json:"txid"`
|
|
Trigger string `json:"trigger"`
|
|
VMState string `json:"vmstate"`
|
|
GasConsumed int64 `json:"gas_consumed,string"`
|
|
Stack []smartcontract.Parameter `json:"stack"`
|
|
Events []NotificationEvent `json:"notifications"`
|
|
}
|
|
|
|
//NotificationEvent response wrapper
|
|
type NotificationEvent struct {
|
|
Contract util.Uint160 `json:"contract"`
|
|
Item smartcontract.Parameter `json:"state"`
|
|
}
|
|
|
|
// StateEventToResultNotification converts state.NotificationEvent to
|
|
// result.NotificationEvent.
|
|
func StateEventToResultNotification(event state.NotificationEvent) NotificationEvent {
|
|
seen := make(map[stackitem.Item]bool)
|
|
item := smartcontract.ParameterFromStackItem(event.Item, seen)
|
|
return NotificationEvent{
|
|
Contract: event.ScriptHash,
|
|
Item: item,
|
|
}
|
|
}
|
|
|
|
// NewApplicationLog creates a new ApplicationLog wrapper.
|
|
func NewApplicationLog(appExecRes *state.AppExecResult) ApplicationLog {
|
|
events := make([]NotificationEvent, 0, len(appExecRes.Events))
|
|
for _, e := range appExecRes.Events {
|
|
events = append(events, StateEventToResultNotification(e))
|
|
}
|
|
|
|
return ApplicationLog{
|
|
TxHash: appExecRes.TxHash,
|
|
Trigger: appExecRes.Trigger.String(),
|
|
VMState: appExecRes.VMState,
|
|
GasConsumed: appExecRes.GasConsumed,
|
|
Stack: appExecRes.Stack,
|
|
Events: events,
|
|
}
|
|
}
|