neo-go/examples/token/token.yml

16 lines
380 B
YAML
Raw Normal View History

2020-11-20 08:02:58 +00:00
name: "Awesome NEO Token"
sourceurl: https://github.com/nspcc-dev/neo-go/
2020-11-19 15:01:42 +00:00
supportedstandards: ["NEP-17"]
safemethods: ["balanceOf", "decimals", "symbol", "totalSupply"]
2020-08-10 14:33:21 +00:00
events:
2020-11-19 15:01:42 +00:00
- name: Transfer
2020-08-10 14:33:21 +00:00
parameters:
- name: from
type: Hash160
2020-08-10 14:33:21 +00:00
- name: to
type: Hash160
2020-08-10 14:33:21 +00:00
- name: amount
type: Integer
permissions:
- methods: ["onNEP17Payment"]