This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
EthOn.ttl
1982 lines (1747 loc) · 84.7 KB
/
EthOn.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://ethon.consensys.net/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix v0: <http://ethon.consensys.net/v0/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
<http://ethon.consensys.net/> a owl:Ontology ;
owl:versionIRI <http://ethon.consensys.net/v0/> ;
owl:imports <http://www.w3.org/2003/06/sw-vocab-status/ns> ;
dc:contributor "Alex Beregszazi" , "Casey Detrio" , "Herman Junge" , "Joseph Chow" , "Marian Oancea" , "Maurycy Pietrzak" , "Shahan Khatchadourian" , "Stefano Bertolo" , "Sunny Aggarwal" , "William E Bodell III" ;
dc:creator "Johannes Pfeffer" ;
dc:title "EthOn - An Ethereum Ontology" ;
vann:preferredNamespacePrefix "ethon" ;
rdfs:comment "The EthOn Ethereum ontology, described using W3C RDF Schema and the Web Ontology Language. It is closely aligned with Gavin Wood's Ethereum yellow paper."@en ;
rdfs:seeAlso <https://github.com/ConsenSys/EthOn> , <https://github.com/ethereum/yellowpaper> , <https://github.com/ethereum/wiki/wiki/White-Paper> ;
owl:versionInfo "0.2" ;
ns:term_status "testing" .
#
#
# #################################################################
# #
# # Annotation properties
# #
# #################################################################
#
#
# http://ethon.consensys.net/EthOnAnnotationProperty
:EthOnAnnotationProperty a owl:AnnotationProperty ;
rdfs:comment "Superclass of all EthOn specific annotation properties."@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/simpleDefinition
:simpleDefinition a owl:AnnotationProperty ;
rdfs:comment "This property relates an EthOn class to a definition in Simple English, intended especially for non-technical users."@en ;
ns:term_status "unstable" ;
rdfs:subPropertyOf :EthOnAnnotationProperty .
#
# http://ethon.consensys.net/suggestedStringRepresentation
:suggestedStringRepresentation a owl:AnnotationProperty ;
rdfs:comment "This property relates an EthOn class with a suggested string representation. It can be used to give the term a name, e.g. in program code."@en ;
ns:term_status "unstable" ;
rdfs:subPropertyOf :EthOnAnnotationProperty .
#
#
#
# #################################################################
# #
# # Object Properties
# #
# #################################################################
#
#
# http://ethon.consensys.net/AccountObjectProperty
:AccountObjectProperty a owl:ObjectProperty ;
rdfs:subPropertyOf :EthOnObjectProperty ;
rdfs:comment "Groups all EthOn account object properties"@en ;
rdfs:label "EthOn Account Object Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/BlockObjectProperty
:BlockObjectProperty a owl:ObjectProperty ;
rdfs:subPropertyOf :EthOnObjectProperty ;
rdfs:comment "Groups all EthOn block object properties"@en ;
rdfs:label "EthOn Block Object Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/EthOnObjectProperty
:EthOnObjectProperty a owl:ObjectProperty ;
rdfs:comment "Groups all EthOn object properties"@en ;
rdfs:label "EthOn Object Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/MessageObjectProperty
:MessageObjectProperty a owl:ObjectProperty ;
rdfs:subPropertyOf :EthOnObjectProperty ;
rdfs:comment "Groups all EthOn message object properties."@en ;
rdfs:label "EthOn Message Object Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/NetworkObjectProperty
:NetworkObjectProperty a owl:ObjectProperty ;
rdfs:subPropertyOf :EthOnObjectProperty ;
rdfs:comment "Groups all EthOn network object properties."@en ;
rdfs:label "EthOn Network Object Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/StateObjectProperty
:StateObjectProperty a owl:ObjectProperty ;
rdfs:subPropertyOf :EthOnObjectProperty ;
rdfs:comment "Groups all EthOn state object properties."@en ;
rdfs:label "EthOn State Object Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/conformsTo
:conformsTo a owl:ObjectProperty ;
rdfs:subPropertyOf :NetworkObjectProperty ;
rdfs:domain :Block ;
rdfs:range :ProtocolVariant ;
:suggestedStringRepresentation "conformsTo" ;
rdfs:comment "Relates a Block to the protocol variant it conforms to."@en ;
rdfs:label "conforms to" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/containsBlock
:containsBlock a owl:ObjectProperty ;
rdfs:subPropertyOf :NetworkObjectProperty ;
rdfs:domain :Blockchain ;
rdfs:range :Block ;
:suggestedStringRepresentation "containsBlock" ;
rdfs:comment "Relates an Ethereum Blockchain to a Block that it contains."@en ;
rdfs:label "contains Block" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/containsCanonicalBlock
:containsCanonicalBlock a owl:ObjectProperty ;
rdfs:subPropertyOf :containsBlock ;
rdfs:domain :Blockchain ;
rdfs:range :Block ;
:suggestedStringRepresentation "containsCanonicalBlock" ;
rdfs:comment "Relates a blockchain to a canonical block that it contains. A canonical Block is the first block in a blockchain after a fork and that conforms to a new protocol variant."@en ;
rdfs:label "contains canonical Block" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/containsTx
:containsTx a owl:ObjectProperty ;
rdfs:subPropertyOf :BlockObjectProperty ;
a owl:InverseFunctionalProperty ;
rdfs:domain :Block ;
rdfs:range :Tx ;
:suggestedStringRepresentation "containsTx" ;
rdfs:comment "Relates a block to a transaction included in it. All containsTx relations of a block comprise the block's transaction list. The order of the transactions is determined by their index value. The property is inverse functional because a transaction can only be included in one block."@en ;
rdfs:label "contains Transaction"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/controlsAccount
:controlsAccount a owl:ObjectProperty ;
rdfs:subPropertyOf :AccountObjectProperty ;
rdfs:domain :ExternalActor ;
rdfs:range :Account ;
:suggestedStringRepresentation "controlsAccount" ;
rdfs:comment "This property connects an External Actor an Account that it controls. This means the External Actor has control over the private Key for the Account. The control is not necessarily legitimate."@en ;
rdfs:label "controls Account"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/creates
:creates a owl:ObjectProperty ;
rdfs:subPropertyOf :to ;
rdfs:domain _:genid1 .
_:genid1 a owl:Class ;
owl:unionOf _:genid3 .
_:genid3 a rdf:List ;
rdf:first :CreateContractMsg ;
rdf:rest _:genid2 .
_:genid2 a rdf:List ;
rdf:first :CreateTx ;
rdf:rest rdf:nil .
:creates rdfs:range :ContractAccount ;
:suggestedStringRepresentation "creates" ;
rdfs:comment "Relates a create message to the contract account it creates. Note: this is a subproperty of the to property."@en ;
rdfs:label "creates"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/createsPostBlockState
:createsPostBlockState a owl:ObjectProperty ;
rdfs:subPropertyOf :createsState ;
a owl:FunctionalProperty , owl:InverseFunctionalProperty ;
rdfs:domain :Block ;
rdfs:range :WorldState ;
:suggestedStringRepresentation "createsPostBlockState" ;
rdfs:comment "Relates a block to the global state of the system after all transactions in the block have been executed."@en ;
rdfs:label "creates post Block execution State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/createsPostMsgState
:createsPostMsgState a owl:ObjectProperty ;
rdfs:subPropertyOf :createsState ;
a owl:FunctionalProperty ;
rdfs:comment "Relates a message to the global state of the system after all the message has been executed." ;
rdfs:label "creates post Message execution State" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/createsPostTxState
:createsPostTxState a owl:ObjectProperty ;
rdfs:subPropertyOf :createsState ;
a owl:FunctionalProperty ;
rdfs:domain :Tx ;
rdfs:range :WorldState ;
:suggestedStringRepresentation "createsPostTxState" ;
rdfs:comment "Relates a transaction to the global state of the system after the transaction has been executed."@en ;
rdfs:label "creates post Transaction execution State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/createsState
:createsState a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty , :StateObjectProperty ;
rdfs:domain :StateTransition ;
rdfs:range :State ;
:suggestedStringRepresentation "createsState" ;
rdfs:comment "Relates a transition to the state it creates."@en ;
rdfs:label "creates State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/from
:from a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
owl:inverseOf :sends ;
rdfs:domain :Msg ;
rdfs:range :Account ;
:suggestedStringRepresentation "fromAccount" ;
rdfs:comment "Relates a message to the account it originates from."@en ;
rdfs:label "from"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasAccountStorage
:hasAccountStorage a owl:ObjectProperty ;
rdfs:subPropertyOf :AccountObjectProperty ;
a owl:FunctionalProperty , owl:InverseFunctionalProperty ;
rdfs:range :AccountStorage ;
:suggestedStringRepresentation "hasAccountStorage" ;
rdfs:comment "Relates an account to the Merkle Patricia tree that encodes its storage contents at a certain account state. This property is Functional because an account state can have only one instance of account storage and inverse functional because an account storage can have only one associated account state."@en ;
rdfs:label "has Account Storage"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasAuthorBeneficiary
:hasAuthorBeneficiary a owl:ObjectProperty ;
rdfs:subPropertyOf :hasBeneficiary ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range :Account ;
:suggestedStringRepresentation "hasAuthorBeneficiary" ;
rdfs:comment "Relates a block to an account to which the fees from gas costs, the static mining reward and the reward for including uncles are transferred." ;
rdfs:label "has author beneficiary" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasBeneficiary
:hasBeneficiary a owl:ObjectProperty ;
rdfs:subPropertyOf :BlockObjectProperty ;
rdfs:domain :Block ;
rdfs:range :Account ;
:suggestedStringRepresentation "hasBeneficiary" ;
rdfs:comment "Relates a block to an account to which fees or mining rewards from the successful mining of this block are transferred."@en ;
rdfs:label "has beneficiary"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasBilateralFork
:hasBilateralFork a owl:ObjectProperty ;
rdfs:subPropertyOf :hasFork ;
a owl:InverseFunctionalProperty , owl:AsymmetricProperty , owl:TransitiveProperty , owl:IrreflexiveProperty ;
rdfs:domain :ProtocolVariant ;
rdfs:range :ProtocolVariant ;
:suggestedStringRepresentation "hasBilateralFork" ;
rdfs:comment "Relates a protocol variant to a bilaterally forked version of it. In contrast to a hard fork, a bilateral fork may expand some rules and make others more strict. While in a hard fork rules are expanded only and all pre-fork blocks also comply to the new rules, after a bilateral hard fork, pre-fork some blocks may not be compliant to new protocol."@en ;
rdfs:label "has bilateral Fork"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasCurrentState
:hasCurrentState a owl:ObjectProperty ;
rdfs:subPropertyOf :hasState ;
a owl:InverseFunctionalProperty ;
rdfs:domain :Account ;
rdfs:range :AccountState ;
:suggestedStringRepresentation "hasCurrentState" ;
rdfs:comment "This property relates an EthOn concept to its most current state." ;
rdfs:label "has current State" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasFork
:hasFork a owl:ObjectProperty ;
rdfs:subPropertyOf :NetworkObjectProperty ;
a owl:InverseFunctionalProperty , owl:AsymmetricProperty , owl:TransitiveProperty , owl:IrreflexiveProperty ;
rdfs:domain :ProtocolVariant ;
rdfs:range :ProtocolVariant ;
:suggestedStringRepresentation "hasFork" ;
rdfs:comment """Relates a protocol variant to a forked version of it. A fork in a protocol variant is a change of the rules for creating valid new blocks (the protocol).
It is inverse functional because a forked protocol can have only one protocol variant it forked from. It is transitive because if a protocol C that was forked from protocol B that in turn was forked from protocol A, protocol C was also forked from protocol A. It is asymetric because if protocol A is forked from protocol B, B cannot be also forked from A. It is irreflexive because a protocol cannot be a fork of itself."""@en ;
rdfs:label "has Fork"@en ;
rdfs:seeAlso <http://vitalik.ca/general/2017/03/14/forks_and_markets.html> ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasHardFork
:hasHardFork a owl:ObjectProperty ;
rdfs:subPropertyOf :hasFork ;
a owl:InverseFunctionalProperty , owl:AsymmetricProperty , owl:TransitiveProperty , owl:IrreflexiveProperty ;
rdfs:domain :ProtocolVariant ;
rdfs:range :ProtocolVariant ;
:suggestedStringRepresentation "hasSoftFork" ;
rdfs:comment "Relates a protocol variant to a hard forked version of it. Hard forks expand the rule set of a protocol variant or change it incompatibly. Users who want to be on the hard forked chain have to update their clients."@en ;
rdfs:label "has hard Fork"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasLogEntry
:hasLogEntry a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain :Tx ;
rdfs:range :LogEntry ;
:suggestedStringRepresentation "hasLogEntry" ;
rdfs:comment "Relates a transaction to a log entry it creates."@en ;
rdfs:label "has Log Entry"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasLogTopic
:hasLogTopic a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain :LogEntry ;
rdfs:range :LogTopic ;
:suggestedStringRepresentation "hasLogTopic" ;
rdfs:comment "Relates a log entry to a log topic."@en ;
rdfs:label "has Log Topic"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasOriginatorTx
:hasOriginatorTx a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
a owl:InverseFunctionalProperty ;
rdfs:domain :ContractMsg ;
rdfs:range :Tx ;
:suggestedStringRepresentation "hasOriginatorTx" ;
rdfs:comment "Relates a contract message to the transaction it originated from."@en ;
rdfs:label "has Originator Transaction"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasParentBlock
:hasParentBlock a owl:ObjectProperty ;
rdfs:subPropertyOf :BlockObjectProperty ;
a owl:FunctionalProperty , owl:AsymmetricProperty , owl:IrreflexiveProperty ;
rdfs:domain :Block ;
rdfs:range :Block ;
:suggestedStringRepresentation "hasParentBlock" ;
rdfs:comment "Relates a block to its parent in the chain. It always points to the block with a number that is decreased by one, compared to the block it originates from. The relation is asymmetric because if block A is parent to block B then block B can not be parent to block A. It is also irreflexive because a block cannot be parent to itself."@en ;
rdfs:label "has parent Block"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasReceipt
:hasReceipt a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain :Tx ;
rdfs:range :TxReceipt ;
:suggestedStringRepresentation "hasTransactionReceipt" ;
rdfs:comment "Relates a transaction to its receipt."@en ;
rdfs:label "has transaction receipt"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasReceiptsTrie
:hasReceiptsTrie a owl:ObjectProperty ;
rdfs:subPropertyOf :BlockObjectProperty ;
a owl:FunctionalProperty , owl:InverseFunctionalProperty ;
rdfs:domain :Block ;
rdfs:range :ReceiptsTrie ;
:suggestedStringRepresentation "hasReceiptsTrie" ;
rdfs:comment "Relates a block to the trie that contains the block's receipt data."@en ;
rdfs:label "has receipts trie"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasSoftFork
:hasSoftFork a owl:ObjectProperty ;
rdfs:subPropertyOf :hasFork ;
a owl:InverseFunctionalProperty , owl:AsymmetricProperty , owl:TransitiveProperty , owl:IrreflexiveProperty ;
rdfs:domain :ProtocolVariant ;
rdfs:range :ProtocolVariant ;
:suggestedStringRepresentation "hasSoftFork" ;
rdfs:comment "Relates a protocol variant to a soft forked version of it. Soft forks make the rules of a protocol variant more strict. Blocks in the soft forked chain conform to multiple protocol versions at the same time."@en ;
rdfs:label "has soft Fork"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasState
:hasState a owl:ObjectProperty ;
rdfs:subPropertyOf :StateObjectProperty ;
a owl:InverseFunctionalProperty ;
rdfs:domain :Account ;
rdfs:range :AccountState ;
:suggestedStringRepresentation "hasState" ;
rdfs:comment "This property relates an EthOn concept to a state. It is inverse functional because a state can only belong to one single EthOn concept."@en ;
rdfs:label "has state"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasTransition
:hasTransition a owl:ObjectProperty ;
rdfs:subPropertyOf :StateObjectProperty ;
:suggestedStringRepresentation "hasTransition" ;
rdfs:comment "Relates a state to a transition (i.e. a message) that creates a new state."@en ;
rdfs:label "has Transition"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasTxTrie
:hasTxTrie a owl:ObjectProperty ;
rdfs:subPropertyOf :BlockObjectProperty ;
a owl:FunctionalProperty , owl:InverseFunctionalProperty ;
rdfs:domain :Block ;
rdfs:range :TxTrie ;
:suggestedStringRepresentation "hasTxTrie" ;
rdfs:comment "Relates a block to the trie that contains the data of the transactions contained in the block."@en ;
rdfs:label "has transactions trie"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/hasUncleBeneficiary
:hasUncleBeneficiary a owl:ObjectProperty ;
rdfs:subPropertyOf :hasBeneficiary ;
rdfs:domain :Block ;
rdfs:range :Account ;
:suggestedStringRepresentation "hasUncleBeneficiary" ;
rdfs:comment "Relates a block to an account to which the reward for mining an uncle is transferred." ;
rdfs:label "has uncle beneficiary" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/includesUncle
:includesUncle a owl:ObjectProperty ;
rdfs:subPropertyOf :BlockObjectProperty ;
rdfs:domain :Block ;
rdfs:range :Uncle ;
:suggestedStringRepresentation "includesUncle" ;
rdfs:comment "Relates a block to another block by including it as an uncle. Block B can be an uncle of block A if it is the direct child of the k'th generation ancestor of block B, where 2<=k<=7 but not a direct ancestor of block A. Uncles are blocks found by a miner, when a different miner has already found another block for the corresponding place in the blockchain. They are also known as “stale blocks”."@en ;
rdfs:label "includes Uncle"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/loggedBy
:loggedBy a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain :LogEntry ;
rdfs:range :Account ;
:suggestedStringRepresentation "loggedBy" ;
rdfs:comment "Relates a log entry to the contract account that created the log when its code was executed."@en ;
rdfs:label "logged by"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/minesFor
:minesFor a owl:ObjectProperty ;
rdfs:subPropertyOf :NetworkObjectProperty ;
rdfs:domain :Node ;
rdfs:range :Blockchain ;
:suggestedStringRepresentation "minesFor" ;
rdfs:comment "Relates a mining node to the blockchain it mines for. Mining is the process of dedicating effort (working) to bolster one series of transactions (a block) over any other potential competitor block. It is achieved thanks to a cryptographically secure proof."@en ;
rdfs:label "mines for"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/nextBlockState
:nextBlockState a owl:ObjectProperty ;
rdfs:subPropertyOf :nextTxState ;
rdfs:domain :PostBlockState ;
rdfs:range :PostBlockState ;
:suggestedStringRepresentation "nextBlockState" ;
rdfs:comment "Relates a post block state to the following post block state."@en ;
rdfs:label "next Post Block State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/nextMsgState
:nextMsgState a owl:ObjectProperty ;
rdfs:subPropertyOf :nextState ;
rdfs:domain :PostMsgState ;
rdfs:range :PostMsgState ;
:suggestedStringRepresentation "nextMsgState" ;
rdfs:comment "Relates a post message state to the following post message state."@en ;
rdfs:label "next Post Message State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/nextState
:nextState a owl:ObjectProperty ;
rdfs:subPropertyOf :StateObjectProperty ;
rdfs:domain :WorldState ;
rdfs:range :WorldState ;
:suggestedStringRepresentation "nextState" ;
rdfs:comment "Relates a state to the following state. In EthOn the state transition system has no branches."@en ;
rdfs:label "next State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/nextTxState
:nextTxState a owl:ObjectProperty ;
rdfs:subPropertyOf :nextMsgState ;
rdfs:domain :PostTxState ;
rdfs:range :PostTxState ;
:suggestedStringRepresentation "nextTxState" ;
rdfs:comment "Relates a post transaction state to the following post transaction state."@en ;
rdfs:label "next Post Transaction State"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/partOf
:partOf a owl:ObjectProperty ;
rdfs:subPropertyOf :EthOnObjectProperty ;
a owl:TransitiveProperty ;
:suggestedStringRepresentation "partOf" ;
rdfs:comment "This is a general relation to express part of relationships. The classic study of parts and wholes, mereology, has three axioms: 1. the part-of relation is Transitive - \"parts of parts are parts of the whole\" - If A is part of B and B is part of C, then A is part of C Reflexive - \"Everything is part of itself\" - A is part of A Antisymmetric - \"Nothing is a part of its parts\" - if A is part of B and A != B then B is not part of A."@en ;
rdfs:label "part of"@en ;
rdfs:seeAlso <https://www.w3.org/2001/sw/BestPractices/OEP/SimplePartWhole/> ;
ns:term_status "testing" .
#
# http://ethon.consensys.net/refunds
:refunds a owl:ObjectProperty ;
rdfs:subPropertyOf :to ;
a owl:FunctionalProperty ;
rdfs:domain :ContractAccount ;
rdfs:range :Account ;
:suggestedStringRepresentation "refunds" ;
rdfs:comment "Relates a selfdestruct contract message to the contract account it sends its refund balance to."@en ;
rdfs:label "refunds"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/sends
:sends a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain :Account ;
rdfs:range :Msg ;
:suggestedStringRepresentation "sends" ;
rdfs:comment "Relates a an account to a message it sends."@en ;
rdfs:label "sends"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/spawnsBlock
:spawnsBlock a owl:ObjectProperty ;
rdfs:subPropertyOf :NetworkObjectProperty ;
rdfs:domain :Node ;
rdfs:range :Block ;
:suggestedStringRepresentation "spawnsBlock" ;
rdfs:comment "Relates an Ethereum node to a valid block it has transmitted to the network. This does not specify the proofing algorithm (e.g. proof of work or proof of authority)."@en ;
rdfs:label "spawns Block" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/to
:to a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain :Msg ;
rdfs:range :Account ;
:suggestedStringRepresentation "toAccount" ;
rdfs:comment "Relates a message with the account it is sent to."@en ;
rdfs:label "to"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/triggersMsg
:triggersMsg a owl:ObjectProperty ;
rdfs:subPropertyOf :MessageObjectProperty ;
rdfs:domain _:genid4 .
_:genid4 a owl:Class ;
owl:unionOf _:genid8 .
_:genid8 a rdf:List ;
rdf:first :CallContractMsg ;
rdf:rest _:genid7 .
_:genid7 a rdf:List ;
rdf:first :CallTx ;
rdf:rest _:genid6 .
_:genid6 a rdf:List ;
rdf:first :CreateContractMsg ;
rdf:rest _:genid5 .
_:genid5 a rdf:List ;
rdf:first :CreateTx ;
rdf:rest rdf:nil .
:triggersMsg rdfs:range :ContractMsg ;
:suggestedStringRepresentation "triggersMsg" ;
rdfs:comment "Relates a message that was directed to a contract account to the contract messages that result from it. The chain of triggersMsg relations represents a call tree. The messages related to a message via triggersMsg are the direct children of it in the call tree."@en ;
rdfs:label "triggers Contract Message"@en ;
ns:term_status "unstable" .
#
#
#
# #################################################################
# #
# # Data properties
# #
# #################################################################
#
#
# http://ethon.consensys.net/AccountDataProperty
:AccountDataProperty a owl:DatatypeProperty ;
rdfs:subPropertyOf :EthOnDataProperty ;
rdfs:comment "Groups all data properties that are specific to an account."@en ;
rdfs:label "EthOn Account Data Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/BlockDataProperty
:BlockDataProperty a owl:DatatypeProperty ;
rdfs:subPropertyOf :EthOnDataProperty ;
rdfs:comment "Groups all data properties that are specific to a block. These properties are usually functional because a block can only be associated with a single instance of them."@en ;
rdfs:label "EthOn Block Data Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/EthOnDataProperty
:EthOnDataProperty a owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:comment "Groups all data properties specific to EthOn."@en ;
rdfs:label "EthOn Data Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/MessageDataProperty
:MessageDataProperty a owl:DatatypeProperty ;
rdfs:subPropertyOf :EthOnDataProperty ;
rdfs:comment "Groups all EthOn message data properties."@en ;
rdfs:label "EthOn Message Data Property" ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/NetworkDataProperty
:NetworkDataProperty a owl:DatatypeProperty ;
rdfs:subPropertyOf :EthOnDataProperty ;
rdfs:comment "Groups all EthOn network data properties."@en ;
rdfs:label "EthOn Network Data Property"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/StateDataProperty
:StateDataProperty a owl:DatatypeProperty ;
rdfs:subPropertyOf :EthOnDataProperty .
#
# http://ethon.consensys.net/accountBalance
:accountBalance a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :AccountState ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "accountBalance" ;
rdfs:comment "A scalar value equal to the number of Wei owned by an account at a given account state."@en ;
rdfs:label "Account balance"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/accountBalancePrefunded
:accountBalancePrefunded a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
rdfs:domain :ProtocolAccount ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "accountBalancePrefunded" ;
rdfs:comment "The amount of Wei an account was prefunded with in a protocol variant. In the case that an account receives multiple prefunds in multiple protocol variants, the amounts are summed. In contrast to the regular account balance it is a property of the account itself and not of its state."@en ;
rdfs:label "Account balance prefunded"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/accountCode
:accountCode a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :ContractAccount ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "accountCode" ;
rdfs:comment "The immutable EVM bytecode of the contract account."@en ;
rdfs:label "Account code"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/accountCodeHash
:accountCodeHash a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :ContractAccount ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "accountCodeHash" ;
rdfs:comment "The immutable Keccak-256 hash of the EVM code of an account."@en ;
rdfs:label "Account code hash"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/accountNonce
:accountNonce a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :AccountState ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "accountNonce" ;
rdfs:comment "A scalar value equal to the number of transactions sent from this account or, in the case of accounts with associated code, the number of contract-creations made by this account."@en ;
rdfs:label "Account nonce"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/accountPublicKey
:accountPublicKey a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :ExternalAccount ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "accountPublicKey" ;
rdfs:comment "The public key of an external account."@en ;
rdfs:label "Account public key"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/address
:address a owl:DatatypeProperty ;
rdfs:subPropertyOf :AccountDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Account ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "address" ;
rdfs:comment "A 160-bit identifier for accounts."@en ;
rdfs:label "Address"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockBeneficiaryReward
:blockBeneficiaryReward a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "blockBenficiaryReward" ;
rdfs:comment "The reward the beneficiary receives for mining a block. It is comprised of the base reward (5ETH), rewards for including uncles (1/32 of block reward per uncle) and the fees of the Tx in the block."@en ;
rdfs:label "Block beneficiary reward"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockCreationTime
:blockCreationTime a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:dateTime ;
:suggestedStringRepresentation "blockCreationTime" ;
rdfs:comment "This block's inception date and time."@en ;
rdfs:label "Block creation time"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockDifficulty
:blockDifficulty a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "blockDifficulty" ;
rdfs:comment "The difficulty level of this block."@en ;
rdfs:label "Block difficulty"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockExtraData
:blockExtraData a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "blockExtraData" ;
rdfs:comment "An arbitrary byte array containing data relevant to this block. This must be 32 bytes or fewer."@en ;
rdfs:label "Block extra data"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockGasLimit
:blockGasLimit a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "blockGasLimit" ;
rdfs:comment "A scalar value equal to the current limit of gas expenditure per block. Its purpose is to keep block propagation and processing time low, thereby allowing for a sufficiently decentralized network. Miners have the option to increase or decrease it every block by a certain factor."@en ;
rdfs:label "Block gas limit"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockGasUsed
:blockGasUsed a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "blockGasUsed" ;
rdfs:comment "A scalar value equal to the total gas used by all transactions in this block."@en ;
rdfs:label "Block gas used"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockHash
:blockHash a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "blockHash" ;
rdfs:comment "The Keccak 256-bit hash of the block's header, in its entierty."@en ;
rdfs:label "Block hash"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockHeader
:blockHeader a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "blockHeader" ;
rdfs:comment "Relates a block to its block header data. The block header data contains 15 pieces of information: 1. the parent hash, 2. the Uncle hash, 3. a beneficiary address, 4. a state root hash, 5. a transactions root hash, 6. a receipts root hash, 7. a log bloom filter, 8. the difficulty value, 9. the block number, 10. the gas limit of the block, 11. the gas used by all transactions in the block, 12. a scalar timestamp in unix time() format, 13. a byte array containing extra data, 14. a mix hash and 15. the block nonce. The property is functional because a block can have only exactly one block header."@en ;
rdfs:label "Block header"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockLogsBloom
:blockLogsBloom a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "blockLogsBloom" ;
rdfs:comment """The bloom filter of log entries resulting from the transactions in the block.
The bloom filter helps to identify blocks with logs quickly. To find the indexed log entries from a contract, only the bloom filters of all blocks, which are included in the block header have to be checked. Note that bloom filters can produce false positives but not false negatives. In other words, if the bloom filter indicates that the topic and contract have not produced any logs in a block, this information is final. If the bloom filter indicates a match, it is only a probabilistic result and has to be verified further. The transactions in the block can then be re-executed and the probabilistic match of the bloom filter can be verified."""@en ;
rdfs:label "block logs bloom filter"@en ;
rdfs:seeAlso :txLogsBloom ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockMixHash
:blockMixHash a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "blockMixHash" ;
rdfs:comment "A 256-bit hash which proves combined with the nonce that a sufficient amount of computation has been carried out on this block."@en ;
rdfs:label "Block mix hash"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockNonce
:blockNonce a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "blockNonce" ;
rdfs:comment "A 64 bit hash which proves combined with the mix-hash that a sufficient amount of computation has been carried out on this block."@en ;
rdfs:label "Block nonce"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/blockSize
:blockSize a owl:DatatypeProperty ;
rdfs:subPropertyOf :BlockDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Block ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "blockSize" ;
rdfs:comment "The size of the block header in RLP format in bytes."@en ;
rdfs:label "Block size"@en ;
rdfs:seeAlso <https://github.com/ethereum/wiki/wiki/RLP> ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/clientVersion
:clientVersion a owl:DatatypeProperty ;
rdfs:subPropertyOf :NetworkDataProperty ;
rdfs:domain :Node ;
rdfs:range xsd:string ;
:suggestedStringRepresentation "clientVersion" ;
rdfs:comment "Relates a node to a string identifying the Ethereum client version it runs. It composed of the client name (e.g. Geth) and a version identifier (e.g. v1.5.4)."@en ;
rdfs:label "runs client"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/cumulativeGasUsed
:cumulativeGasUsed a owl:DatatypeProperty ;
rdfs:subPropertyOf :MessageDataProperty ;
rdfs:domain :Tx ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "cumulativeGasUsed" ;
rdfs:comment "The cumulative gas used in the block containing the transaction as of immediately after the transaction has happened."@en ;
rdfs:label "cumulative gas used"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/logData
:logData a owl:DatatypeProperty ;
rdfs:subPropertyOf :MessageDataProperty ;
rdfs:domain :LogEntry ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "logData" ;
rdfs:comment "Relates a log entry to its data."@en ;
rdfs:label "Log data"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/logIndex
:logIndex a owl:DatatypeProperty ;
rdfs:subPropertyOf :MessageDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :Tx ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "logIndex" ;
rdfs:comment "Relates a log entry to its index in the transaction reciept of a transaction. The log index defines the order of the log entries of a transaction."@en ;
rdfs:label "Log index"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/logTopicData
:logTopicData a owl:DatatypeProperty ;
rdfs:subPropertyOf :MessageDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :LogTopic ;
rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "logTopicData" ;
rdfs:comment "Relates a log topic to the 32 bytes of data it contains."@en ;
rdfs:label "Log Topic data"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/logTopicIndex
:logTopicIndex a owl:DatatypeProperty ;
rdfs:subPropertyOf :MessageDataProperty ;
a owl:FunctionalProperty ;
rdfs:domain :LogTopic ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "logTopicIndex" ;
rdfs:comment "Relates a log topic to its index in the log entry. The log topic index defines the order of the log topics of in log entry."@en ;
rdfs:label "Log Topic index"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/msgCallDepth
:msgCallDepth a owl:DatatypeProperty ;
rdfs:subPropertyOf :MessageDataProperty ;
rdfs:domain :Tx ;
rdfs:range xsd:integer ;
:suggestedStringRepresentation "msgCallDepth" ;
rdfs:comment "A scalar value equal to the depth of the contract message. A contract message is represented as a call in the Ethereum EVM. This value represents the number of CALL or CREATE opcodes being executed at the time of the message execution."@en ;
rdfs:label "Message call depth"@en ;
ns:term_status "unstable" .
#
# http://ethon.consensys.net/msgData
:msgData a owl:DatatypeProperty ;
rdfs:subPropertyOf :msgPayload ;
rdfs:domain _:genid9 .
_:genid9 a owl:Class ;
owl:unionOf _:genid11 .
_:genid11 a rdf:List ;
rdf:first :CallContractMsg ;
rdf:rest _:genid10 .
_:genid10 a rdf:List ;
rdf:first :CallTx ;
rdf:rest rdf:nil .
:msgData rdfs:range xsd:hexBinary ;
:suggestedStringRepresentation "msgData" ;