File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ title : chain/isValidPublicAddress
3
+ description : RPC Chain | Iron Fish Documentation
4
+ ---
5
+
6
+ Checks whether a given public address is valid
7
+
8
+ A valid public address is one that is well formed, not one that is guaranteed to belong to a wallet.
9
+
10
+ #### Request
11
+
12
+ ``` ts
13
+ {
14
+ address : string
15
+ }
16
+ ```
17
+
18
+ #### Response
19
+
20
+ ``` ts
21
+ {
22
+ valid : boolean ;
23
+ }
24
+ ```
25
+
26
+ ###### [ View on Github] ( https://github.com/iron-fish/ironfish/blob/master/ironfish/src/rpc/routes/chain/isValidPublicAddress.ts )
Original file line number Diff line number Diff line change @@ -307,6 +307,10 @@ export const sidebar: SidebarDefinition = [
307
307
id : "rpc/chain/show_chain" ,
308
308
label : "showChain" ,
309
309
} ,
310
+ {
311
+ id : "rpc/chain/is_valid_public_address" ,
312
+ label : "isValidPublicAddress" ,
313
+ } ,
310
314
] ,
311
315
} ,
312
316
{
You can’t perform that action at this time.
0 commit comments