neo-go/pkg/core/native/nativenames/names.go

44 lines
867 B
Go
Raw Normal View History

package nativenames
// Names of all native contracts.
const (
Management = "ContractManagement"
Ledger = "LedgerContract"
Neo = "NeoToken"
Gas = "GasToken"
Policy = "PolicyContract"
Oracle = "OracleContract"
Designation = "RoleManagement"
Notary = "Notary"
2021-02-15 15:43:10 +00:00
CryptoLib = "CryptoLib"
2021-03-03 15:59:10 +00:00
StdLib = "StdLib"
)
2021-03-12 10:04:41 +00:00
// All contains the list of all native contract names ordered by the contract ID.
var All = []string{
Management,
StdLib,
CryptoLib,
Ledger,
Neo,
Gas,
Policy,
Designation,
Oracle,
Notary,
}
// IsValid checks if the name is a valid native contract's name.
2021-03-12 10:04:41 +00:00
func IsValid(name string) bool {
return name == Management ||
name == Ledger ||
name == Neo ||
name == Gas ||
name == Policy ||
name == Oracle ||
name == Designation ||
name == Notary ||
name == CryptoLib ||
name == StdLib
}