neoneo-go/pkg/core/native/nativenames/names.go
Roman Khimov ac527650eb native: add Ledger contract, fix
But don't change the way we process/store transactions and blocks. Effectively
it's just an interface for smart contracts that replaces old syscalls.

Transaction definition is moved temporarily to runtime package and Block
definition is removed (till we solve  properly).
2021-02-04 13:12:11 +03:00

14 lines
334 B
Go

package nativenames
// Names of all native contracts.
const (
Management = "ContractManagement"
Ledger = "LedgerContract"
Neo = "NeoToken"
Gas = "GasToken"
Policy = "PolicyContract"
Oracle = "OracleContract"
Designation = "RoleManagement"
Notary = "Notary"
NameService = "NameService"
)