You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: other_types_of_ownership/arbitrary.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
From Bitcoin 0.10, the **RedeemScript** can be arbitrary, which means that with the script language of Bitcoin, you can create your own definition of what “ownership” means.
4
4
5
-
For example, I can give money to whoever either know my date of birth (dd/mm/yyyy) serialized in UTF8 either knows the private key of **1KF8kUVHK42XzgcmJF4Lxz4wcL5WDL97PB**.
5
+
For example, I can give money to whoever knows either my date of birth (dd/mm/yyyy) serialized in UTF-8 or the private key of **1KF8kUVHK42XzgcmJF4Lxz4wcL5WDL97PB**.
6
6
7
-
The details of the script language are out of scope, you can easily find the documentation on various websites, and it is a stack based language so everyone having done some assembler should be able to read it.
7
+
The details of the script language are out of scope. You can easily find the documentation on various websites. The Bitcoin script language is a stack based language so everyone having done some assembler should be able to read it.
8
8
9
9
> **Note:** ([nopara73](https://github.com/nopara73)) I find [Davide De Rosa's tutorial](http://davidederosa.com/basic-blockchain-programming/bitcoin-script-language-part-one/) as the most enjoyable one.
10
10
@@ -24,7 +24,7 @@ Script redeemScript = new Script(
24
24
"OP_ENDIF");
25
25
```
26
26
27
-
This **RedeemScript** means that there is 2 way of spending such **ScriptCoin**: either you know the data that give**birthHash** (my birthdate), either you own the bitcoin address.
27
+
This **RedeemScript** means that there are 2 ways of spending such **ScriptCoin**: Either you know the data that gives**birthHash** (my birthdate) or you own the bitcoin address.
0 commit comments