examples: add .yml configuration files
This commit is contained in:
parent
52275bcd9c
commit
de8db692f4
6 changed files with 48 additions and 0 deletions
8
examples/engine/engine.yml
Normal file
8
examples/engine/engine.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
hasstorage: false
|
||||
ispayable: false
|
||||
supportedstandards: []
|
||||
events:
|
||||
- name: Tx
|
||||
parameters:
|
||||
- name: txHash
|
||||
type: ByteString
|
12
examples/iterator/iterator.yml
Normal file
12
examples/iterator/iterator.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
hasstorage: true
|
||||
ispayable: false
|
||||
supportedstandards: []
|
||||
events:
|
||||
- name: found storage values
|
||||
parameters:
|
||||
- name: values
|
||||
type: Any
|
||||
- name: found storage keys
|
||||
parameters:
|
||||
- name: keys
|
||||
type: Any
|
8
examples/runtime/runtime.yml
Normal file
8
examples/runtime/runtime.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
hasstorage: false
|
||||
ispayable: false
|
||||
supportedstandards: []
|
||||
events:
|
||||
- name: Event
|
||||
parameters:
|
||||
- name: event
|
||||
type: Any
|
4
examples/storage/storage.yml
Normal file
4
examples/storage/storage.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
hasstorage: true
|
||||
ispayable: false
|
||||
supportedstandards: []
|
||||
events: []
|
4
examples/token-sale/token_sale.yml
Normal file
4
examples/token-sale/token_sale.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
hasstorage: true
|
||||
ispayable: false
|
||||
supportedstandards: ["NEP-5"]
|
||||
events: []
|
12
examples/token/token.yml
Normal file
12
examples/token/token.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
hasstorage: true
|
||||
ispayable: false
|
||||
supportedstandards: ["NEP-5"]
|
||||
events:
|
||||
- name: transfer
|
||||
parameters:
|
||||
- name: from
|
||||
type: ByteString
|
||||
- name: to
|
||||
type: ByteString
|
||||
- name: amount
|
||||
type: Integer
|
Loading…
Reference in a new issue