mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
ec17654986
add dao which takes care about all CRUD operations on storage remove blockchain state since everything is stored on change remove storage operations from structs(entities) move structs to entities package
45 lines
1.5 KiB
Go
45 lines
1.5 KiB
Go
package wrappers
|
|
|
|
import (
|
|
"github.com/CityOfZion/neo-go/pkg/core/entities"
|
|
"github.com/CityOfZion/neo-go/pkg/core/transaction"
|
|
"github.com/CityOfZion/neo-go/pkg/crypto"
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
|
)
|
|
|
|
// AssetState wrapper used for the representation of
|
|
// core.AssetState on the RPC Server.
|
|
type AssetState struct {
|
|
ID util.Uint256 `json:"assetID"`
|
|
AssetType transaction.AssetType `json:"assetType"`
|
|
Name string `json:"name"`
|
|
Amount util.Fixed8 `json:"amount"`
|
|
Available util.Fixed8 `json:"available"`
|
|
Precision uint8 `json:"precision"`
|
|
FeeMode uint8 `json:"fee"`
|
|
FeeAddress util.Uint160 `json:"address"`
|
|
Owner string `json:"owner"`
|
|
Admin string `json:"admin"`
|
|
Issuer string `json:"issuer"`
|
|
Expiration uint32 `json:"expiration"`
|
|
IsFrozen bool `json:"is_frozen"`
|
|
}
|
|
|
|
// NewAssetState creates a new AssetState wrapper.
|
|
func NewAssetState(a *entities.AssetState) AssetState {
|
|
return AssetState{
|
|
ID: a.ID,
|
|
AssetType: a.AssetType,
|
|
Name: a.GetName(),
|
|
Amount: a.Amount,
|
|
Available: a.Available,
|
|
Precision: a.Precision,
|
|
FeeMode: a.FeeMode,
|
|
FeeAddress: a.FeeAddress,
|
|
Owner: a.Owner.String(),
|
|
Admin: crypto.AddressFromUint160(a.Admin),
|
|
Issuer: crypto.AddressFromUint160(a.Issuer),
|
|
Expiration: a.Expiration,
|
|
IsFrozen: a.IsFrozen,
|
|
}
|
|
}
|