diff --git a/docs/sophia_stdlib.md b/docs/sophia_stdlib.md index ad8b89d..c80dfc8 100644 --- a/docs/sophia_stdlib.md +++ b/docs/sophia_stdlib.md @@ -57,6 +57,12 @@ Address.to_str(a : address) : string Base58 encoded string +#### to_bytes +``` +Address.to_bytes(a : address) : bytes(32) +``` + +The binary representation of the address. #### is_contract ``` @@ -564,14 +570,6 @@ Chain.block_height : int" The height of the current block (i.e. the block in which the current call will be included). -#### to_bytes -``` -Address.to_bytes(a : address) : bytes(32) -``` - -The binary representation of the address. - - ##### bytecode_hash ``` Chain.bytecode_hash : 'c => option(hash)