We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NEF is Neo executable format, I think we should make it a NEP standard.
namespace Neo.SmartContract { /// <summary> /// +------------+-----------+------------------------------------------------------------+ /// | Field | Length | Comment | /// +------------+-----------+------------------------------------------------------------+ /// | Magic | 4 bytes | Magic header | /// | Compiler | 32 bytes | Compiler used | /// | Version | 16 bytes | Compiler version (Mayor, Minor, Build, Version) | /// | ScriptHash | 20 bytes | ScriptHash for the script | /// +------------+-----------+------------------------------------------------------------+ /// | Checksum | 4 bytes | Sha256 of the header (CRC) | /// +------------+-----------+------------------------------------------------------------+ /// | Script | Var bytes | Var bytes for the payload | /// +------------+-----------+------------------------------------------------------------+ /// </summary> public class NefFile : ISerializable
original posted at neo-project/neo#889 neo-project/neo#903
The text was updated successfully, but these errors were encountered:
@bettybao1209 will help send the PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
NEF is Neo executable format, I think we should make it a NEP standard.
original posted at neo-project/neo#889 neo-project/neo#903
The text was updated successfully, but these errors were encountered: