File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # OST JavaScript SDK
1+ # OST Java SDK
22The official [ OST Java SDK] ( https://dev.ost.com/ ) .
33
44
@@ -116,8 +116,8 @@ Execute Airdrop:
116116
117117``` java
118118HashMap < String ,Object > params = new HashMap<String ,Object > ();
119- params. put(" amount" : 1 );
120- params. put(" user_ids" : " f87346e4-61f6-4d55-8cb8-234c65437b01" );
119+ params. put(" amount" , 1 );
120+ params. put(" user_ids" , " f87346e4-61f6-4d55-8cb8-234c65437b01" );
121121JsonObject response = airdropService. execute( params );
122122System . out. println(" response: " + response. toString() );
123123```
@@ -126,7 +126,7 @@ Get Airdrop Status:
126126
127127``` java
128128HashMap < String ,Object > params = new HashMap<String ,Object > ();
129- params. put(" id" : ' ecd9b0b2-a0f4-422c-95a4-f25f8fc88334' );
129+ params. put(" id" , ' ecd9b0b2-a0f4-422c-95a4-f25f8fc88334' );
130130JsonObject response = airdropService. get( params );
131131System . out. println(" response: " + response. toString() );
132132```
You can’t perform that action at this time.
0 commit comments