mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-25 13:56:35 +00:00
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"
|
||
|
)
|