using System;
using System.Numerics;
using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Services;
public class EmbeddedSample : SmartContract
{
private static readonly ContractManifest Manifest = ContractManifest.Parse(@"{
"name": "EmbeddedSample",
"groups": [],
"features": {
"storage": false,
"payable": false
},
"supportedstandards": [],
"abi": {
"methods": [
{
"name": "main",
"parameters": [],
"returntype": "Integer",
"offset": 0,
"safe": false
}
],
"events": []
},
"permissions": [],
"trusts": "*"
}");
private static readonly byte[] NefBytes = Convert.FromBase64String(@"TkVGM2NzX18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIRQJRZrG4=");
public static int Main()
{
return 1;
}
}