justtheboss97 пре 4 година
родитељ
комит
e4aab6b03a
1 измењених фајлова са 21 додато и 21 уклоњено
  1. 21 21
      README.md

+ 21 - 21
README.md

@@ -15,21 +15,21 @@ This is a small description of how the chain works and how data is being formatt
 ### Contract / Transaction data
 ```json
 {
-'id':'public key',
-'type':'type of transaction',
-'date of initiation':'time of day',
-'data': {'client':'name of client',
-        'contractor':'name of contractor',
-        'discription':'discription of the contract',
-        'name':'name of the contract'},
-'terms' : {'deadline': 'deadline',
-            'accepted': 'has contract been accepted',
-            'progress': '0%',
-            'price':'price',
-            'Sign time': 'time the contract was accepted',
-            'comments':"dictonary of comments'
-            'any other term':'with its value'
-            }
+"id": "public key",
+"type": "type of transaction",
+"date of initiation": "time of day",
+"data": {"client": "name of client",
+        "contractor": "name of contractor",
+        "discription": "discription of the contract",
+        "name": "name of the contract"},
+"terms": {"deadline": "deadline",
+          "accepted": "has contract been accepted",
+          "progress": "0%",
+          "price": "price",
+          "Sign time": "time the contract was accepted",
+          "comments": "dictonary of comments",
+          "any other term": "with its value"
+          }
 }
 ```
 
@@ -37,11 +37,11 @@ This is a small description of how the chain works and how data is being formatt
 Terms are part of a contract.
 ```json
 {
-'id':'public key of contract',
-'update id':'unique id of update',   
-'updated':'what is it updating',
-'type':'transaction type',
-'last update':'time',
-'accepted':'has update been accepted'
+"id": "public key of contract",
+"update id": "unique id of update",   
+"updated": "what is it updating",
+"type": "transaction type",
+"last update": "time",
+"accepted": "has update been accepted"
 }
 ```