forked from TrueCloudLab/neoneo-go
13 lines
278 B
Go
13 lines
278 B
Go
|
package nativenames
|
||
|
|
||
|
// Names of all native contracts.
|
||
|
const (
|
||
|
Management = "ManagementContract"
|
||
|
Neo = "NeoToken"
|
||
|
Gas = "GasToken"
|
||
|
Policy = "PolicyContract"
|
||
|
Oracle = "OracleContract"
|
||
|
Designation = "DesignationContract"
|
||
|
Notary = "Notary"
|
||
|
)
|