Skip to content

Commit 01c2acd

Browse files
committed
smartcontract: change value of NEP11Payable and NEP17Payable
The essence is the same, but the standard has its official name since neo-project/proposals#169. Signed-off-by: Anna Shaleva <[email protected]>
1 parent 16a6a59 commit 01c2acd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pkg/smartcontract/manifest/manifest.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ const (
2222
NEP11StandardName = "NEP-11"
2323
// NEP17StandardName represents the name of NEP-17 smartcontract standard.
2424
NEP17StandardName = "NEP-17"
25-
// NEP11Payable represents the name of contract interface which can receive NEP-11 tokens.
26-
NEP11Payable = "NEP-11-Payable"
27-
// NEP17Payable represents the name of contract interface which can receive NEP-17 tokens.
28-
NEP17Payable = "NEP-17-Payable"
25+
// NEP11Payable represents the name of NEP-26 smartcontract standard (contract interface
26+
// which can receive NEP-11 tokens)
27+
NEP11Payable = "NEP-26"
28+
// NEP17Payable represents the name of NEP-27 smartcontract standard (contract interface
29+
// which can receive NEP-17 tokens).
30+
NEP17Payable = "NEP-27"
2931
// NEP24StandardName represents the name of the NEP-24 smart contract standard for NFT royalties.
3032
NEP24StandardName = "NEP-24"
3133
// NEP24Payable represents the name of the contract interface for handling royalty payments in accordance

0 commit comments

Comments
 (0)