mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-13 20:04:35 +03:00
upgrade to hash160/256
This commit is contained in:
parent
1fccd2f85b
commit
91dfde532c
@ -152,7 +152,7 @@ Need to test with this because it shows need to input num bytes
|
||||
The below code also shows how to convert from bech32 back to a 20-byte hash. This is used for transaction building.
|
||||
```
|
||||
=pubkey 0x2.79be.667e.f9dc.bbac.55a0.6295.ce87.0b07.029b.fcdb.2dce.28d9.59f2.815b.16f8.1798
|
||||
(encode-pubkey:bech32:btc %main pubkey)
|
||||
(encode-pubkey:bech32:btc %main pubkey)bbt
|
||||
:: gives [~ %bech32 'bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4']
|
||||
|
||||
`[@ @ux]`(hash-160:btc pubkey)
|
||||
|
18
lib/btc.hoon
18
lib/btc.hoon
@ -3,11 +3,12 @@
|
||||
:: big endian sha256: input and output are both MSB first (big endian)
|
||||
::
|
||||
++ sha256
|
||||
|= =byts ^- hash
|
||||
|= =byts ^- hash256
|
||||
:: if there are leading 0s, lshift by their amount after flip to little endian to preserve
|
||||
=/ pad=@ (sub wid.byts (met 3 dat.byts))
|
||||
=/ little-endian=@
|
||||
(lsh 3 pad (swp 3 dat.byts))
|
||||
%- hash256
|
||||
:- 32
|
||||
%+ swp 3
|
||||
(shay wid.byts little-endian)
|
||||
@ -17,8 +18,9 @@
|
||||
(sha256 (sha256 byts))
|
||||
::
|
||||
++ hash-160
|
||||
|= pubkey=@ux ^- hash
|
||||
|= pubkey=@ux ^- hash160
|
||||
=, ripemd:crypto
|
||||
%- hash160
|
||||
:- 20
|
||||
%- ripemd-160
|
||||
%- sha256 [(met 3 pubkey) pubkey]
|
||||
@ -91,7 +93,7 @@
|
||||
(address-to-script-pubkey address.output)
|
||||
::
|
||||
++ sighash
|
||||
|= input-index=@ ^- hash
|
||||
|= input-index=@ ^- hash256
|
||||
?: (gte input-index (lent inputs.ut))
|
||||
~|("Input index out of range" !!)
|
||||
=/ =input:tx (snag input-index inputs.ut)
|
||||
@ -101,7 +103,7 @@
|
||||
::
|
||||
++ sighash-witness
|
||||
|= =input:tx
|
||||
|^ ^- hash
|
||||
|^ ^- hash256
|
||||
=/ prevouts=byts
|
||||
%- concat-as-byts (turn inputs.ut prevouts-buffer)
|
||||
=/ sequences=byts
|
||||
@ -152,7 +154,7 @@
|
||||
++ sighash-legacy
|
||||
:: TODO: Not working--wrong sighash for multiple inputs (works for 1)
|
||||
|= index-to-sign=@
|
||||
|^ ^- hash
|
||||
|^ ^- hash256
|
||||
=/ n-version=^buffer (from-atom-le 4 version.ut)
|
||||
=/ num-inputs=^buffer ~[(@ux (lent inputs.ut))]
|
||||
=/ prevouts=^buffer
|
||||
@ -360,9 +362,13 @@
|
||||
?~ d ~|("Invalid bech32 address" !!)
|
||||
=/ bs=(list @)
|
||||
(from-digits:bits 5 (slag 1 data.u.d))
|
||||
=/ byt-len=@ (div (lent bs) 8)
|
||||
?. =(0 (mod (lent bs) 8))
|
||||
~|("Invalid bech32 address: not 8bit" !!)
|
||||
[(div (lent bs) 8) (to-atom:bits bs)]
|
||||
?. ?|(?=(%20 byt-len) ?=(%32 byt-len))
|
||||
~|("Invalid bech32 address: must be 20 (P2WPKH) or 32 (P2WSH) bytes" !!)
|
||||
%- hash
|
||||
[byt-len (to-atom:bits bs)]
|
||||
:: pubkey is the 33 byte ECC compressed public key
|
||||
::
|
||||
++ encode-pubkey
|
||||
|
@ -4,8 +4,13 @@
|
||||
+$ bech32-address $%([%bech32 cord])
|
||||
+$ address ?(legacy-address bech32-address)
|
||||
+$ sats @ud
|
||||
+$ hash [wid=@ dat=@ux]
|
||||
+$ hash256 [wid=%32 dat=@ux]
|
||||
+$ hash160 [wid=%20 dat=@ux]
|
||||
+$ hash ?(hash256 hash160)
|
||||
+$ buffer (list @ux)
|
||||
++ address-info
|
||||
$: =address
|
||||
==
|
||||
++ tx
|
||||
|%
|
||||
+$ unsigned
|
||||
|
Loading…
Reference in New Issue
Block a user