We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fca23f commit adcc953Copy full SHA for adcc953
1 file changed
contracts/README.md
@@ -118,10 +118,13 @@ The `recipientAddress` must be a bytes32. To convert a bech32 Cosmos address:
118
Example using cast:
119
120
```shell
121
-# If you have the raw 20-byte hex address
122
-cast to-bytes32 0x1234567890abcdef1234567890abcdef12345678
+# Left-pad a 20-byte address to 32 bytes
+cast pad --left --len 32 1234567890abcdef1234567890abcdef12345678
123
+# Output: 0x0000000000000000000000001234567890abcdef1234567890abcdef12345678
124
```
125
126
+Note: When calling `transferRemote()` via cast, you may need to omit the `0x` prefix depending on your invocation method.
127
+
128
## Admin Functions
129
130
All functions are owner-only:
0 commit comments