You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Neo.SmartContract.Framework/Services/ContractManifest.cs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,12 @@
11
11
12
12
namespaceNeo.SmartContract.Framework.Services
13
13
{
14
+
/// <summary>
15
+
/// Represents the manifest of a smart contract.
16
+
/// When a smart contract is deployed, it must explicitly declare the features and permissions it will use.
17
+
/// When it is running, it will be limited by its declared list of features and permissions, and cannot make any behavior beyond the scope of the list.
18
+
/// </summary>
19
+
/// <remarks>For more details, see NEP-15.</remarks>
0 commit comments