-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
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
Implement NEP-25 #3272
Draft
shargon
wants to merge
1
commit into
master
Choose a base branch
from
nep-25
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Implement NEP-25 #3272
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Copyright (C) 2015-2024 The Neo Project. | ||
// | ||
// ExtendedType.cs file belongs to the neo project and is free | ||
// software distributed under the MIT software license, see the | ||
// accompanying file LICENSE in the main directory of the | ||
// repository or http://www.opensource.org/licenses/mit-license.php | ||
// for more details. | ||
// | ||
// Redistribution and use in source and binary forms with or without | ||
// modifications are permitted. | ||
|
||
using Neo.Json; | ||
using Neo.VM; | ||
using Neo.VM.Types; | ||
using System; | ||
|
||
namespace Neo.SmartContract.Manifest | ||
{ | ||
public class ExtendedType : IInteroperable | ||
{ | ||
/// <summary> | ||
/// The type of the parameter. It can be any value of <see cref="ContractParameterType"/> except <see cref="ContractParameterType.Void"/>. | ||
/// </summary> | ||
public ContractParameterType Type { get; set; } | ||
|
||
/// <summary> | ||
/// NamedType is used to refer to one of the types defined in the namedtypes object of Contract, | ||
/// so namedtypes MUST contain a field named name. | ||
/// This field is only used for structures (ordered set of named values of diffent types), | ||
/// if used other fields MUST NOT be set, except for the type which MUST be an Array. | ||
/// Value string MUST start with a letter and can contain alphanumeric characters and dots. | ||
/// It MUST NOT be longer than 64 characters. | ||
/// </summary> | ||
public string NamedType { get; set; } | ||
|
||
void IInteroperable.FromStackItem(StackItem stackItem) | ||
{ | ||
FromStackItem((VM.Types.Array)stackItem, 0); | ||
} | ||
|
||
internal void FromStackItem(VM.Types.Array @struct, int startIndex) | ||
{ | ||
Type = (ContractParameterType)(byte)@struct[startIndex].GetInteger(); | ||
NamedType = @struct[startIndex + 1].GetString(); | ||
} | ||
|
||
StackItem IInteroperable.ToStackItem(ReferenceCounter referenceCounter) | ||
{ | ||
Struct @struct = new Struct(referenceCounter); | ||
ToStackItem(referenceCounter, @struct); | ||
return @struct; | ||
} | ||
|
||
internal StackItem ToStackItem(ReferenceCounter referenceCounter, Struct @struct) | ||
{ | ||
@struct.Add((byte)Type); | ||
@struct.Add(NamedType); | ||
return @struct; | ||
} | ||
|
||
/// <summary> | ||
/// Converts the type from a JSON object. | ||
/// </summary> | ||
/// <param name="json">The method represented by a JSON object.</param> | ||
/// <returns>The extended type.</returns> | ||
public static ExtendedType FromJson(JObject json) | ||
{ | ||
ExtendedType type = new() | ||
{ | ||
Type = Enum.Parse<ContractParameterType>(json["type"].GetString()), | ||
NamedType = json["namedtype"].GetString(), | ||
}; | ||
if (!Enum.IsDefined(typeof(ContractParameterType), type.Type)) throw new FormatException(); | ||
return type; | ||
} | ||
|
||
/// <summary> | ||
/// Converts the parameter to a JSON object. | ||
/// </summary> | ||
/// <returns>The parameter represented by a JSON object.</returns> | ||
public virtual JObject ToJson() | ||
{ | ||
var json = new JObject(); | ||
json["type"] = Type.ToString(); | ||
json["namedtype"] = NamedType; | ||
return json; | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you remove 95 line? It's un-needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's required for ensure that the name is not repeated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
linq