2018-08-20 07:07:08 +00:00
|
|
|
package compiler
|
|
|
|
|
2018-08-22 07:51:35 +00:00
|
|
|
var syscalls = map[string]map[string]string{
|
|
|
|
"storage": {
|
|
|
|
"GetContext": "System.Storage.GetContext",
|
|
|
|
"Put": "System.Storage.Put",
|
|
|
|
"Get": "System.Storage.Get",
|
|
|
|
"Delete": "System.Storage.Delete",
|
|
|
|
"Find": "System.Storage.Find",
|
|
|
|
},
|
|
|
|
"runtime": {
|
|
|
|
"GetTrigger": "System.Runtime.GetTrigger",
|
|
|
|
"CheckWitness": "System.Runtime.CheckWitness",
|
|
|
|
"Notify": "System.Runtime.Notify",
|
|
|
|
"Log": "System.Runtime.Log",
|
|
|
|
"GetTime": "System.Runtime.GetTime",
|
|
|
|
"Serialize": "System.Runtime.Serialize",
|
|
|
|
"Deserialize": "System.Runtime.Deserialize",
|
|
|
|
},
|
|
|
|
"blockchain": {
|
|
|
|
"GetHeight": "System.Blockchain.GetHeight",
|
|
|
|
"GetHeader": "System.Blockchain.GetHeader",
|
|
|
|
"GetBlock": "System.Blockchain.GetBlock",
|
|
|
|
"GetTransaction": "System.Blockchain.GetTransaction",
|
|
|
|
"GetContract": "System.Blockchain.GetContract",
|
|
|
|
"GetAccount": "Neo.Blockchain.GetAccount",
|
|
|
|
"GetValidators": "Neo.Blockchain.GetValidators",
|
|
|
|
"GetAsset": "Neo.Blockchain.GetAsset",
|
|
|
|
},
|
|
|
|
"header": {
|
|
|
|
"GetIndex": "System.Header.GetIndex",
|
|
|
|
"GetHash": "System.Header.GetHash",
|
|
|
|
"GetPrevHash": "System.Header.GetPrevHash",
|
|
|
|
"GetTimestamp": "System.Header.GetTimestamp",
|
|
|
|
"GetVersion": "Neo.Header.GetVersion",
|
|
|
|
"GetMerkleRoot": "Neo.Header.GetMerkleRoot",
|
|
|
|
"GetConsensusData": "Neo.Header.GetConsensusData",
|
|
|
|
"GetNextConsensus": "Neo.Header.GetNextConsensus",
|
|
|
|
},
|
|
|
|
"block": {
|
|
|
|
"GetTransactionCount": "System.Block.GetTransactionCount",
|
|
|
|
"GetTransactions": "System.Block.GetTransactions",
|
|
|
|
"GetTransaction": "System.Block.GetTransaction",
|
|
|
|
},
|
|
|
|
"transaction": {
|
|
|
|
"GetType": "Neo.Transaction.GetType",
|
|
|
|
"GetAttributes": "Neo.Transaction.GetAttributes",
|
|
|
|
"GetInputs": "Neo.Transaction.GetInputs",
|
|
|
|
"GetOutputs": "Neo.Transaction.GetOutputs",
|
|
|
|
"GetReferences": "Neo.Transaction.GetReferences",
|
|
|
|
"GetUnspentCoins": "Neo.Transaction.GetUnspentCoins",
|
|
|
|
"GetScript": "Neo.Transaction.GetScript",
|
|
|
|
},
|
|
|
|
"asset": {
|
|
|
|
"GetAssetID": "Neo.Asset.GetAssetID",
|
|
|
|
"GetAssetType": "Neo.Asset.GetAssetType",
|
|
|
|
"GetAmount": "Neo.Asset.GetAmount",
|
|
|
|
"Create": "Neo.Asset.Create",
|
|
|
|
"Renew": "Neo.Asset.Renew",
|
|
|
|
},
|
|
|
|
"contract": {
|
|
|
|
"GetScript": "Neo.Contract.GetScript",
|
|
|
|
"IsPayable": "Neo.Contract.IsPayable",
|
|
|
|
"Create": "Neo.Contract.Create",
|
|
|
|
"Destroy": "Neo.Contract.Destroy",
|
|
|
|
"Migrate": "Neo.Contract.Migrate",
|
|
|
|
"GetStorageContext": "Neo.Contract.GetStorageContext",
|
|
|
|
},
|
|
|
|
"input": {
|
|
|
|
"GetHash": "Neo.Input.GetHash",
|
|
|
|
"GetIndex": "Neo.Input.GetIndex",
|
|
|
|
},
|
|
|
|
"output": {
|
|
|
|
"GetAssetID": "Neo.Output.GetAssetID",
|
|
|
|
"GetValue": "Neo.Output.GetValue",
|
|
|
|
"GetScriptHash": "Neo.Output.GetScriptHash",
|
|
|
|
},
|
2018-08-22 08:08:06 +00:00
|
|
|
"engine": {
|
|
|
|
"GetScriptContainer": "System.ExecutionEngine.GetScriptContainer",
|
|
|
|
"GetCallingScriptHash": "System.ExecutionEngine.GetCallingScriptHash",
|
|
|
|
"GetEntryScriptHash": "System.ExecutionEngine.GetEntryScriptHash",
|
|
|
|
"GetExecutingScriptHash": "System.ExecutionEngine.GetExecutingScriptHash",
|
|
|
|
},
|
2018-08-20 07:07:08 +00:00
|
|
|
}
|