11# OST Java SDK
2- [ ![ Build Status] ( https://travis-ci.org/ostdotcom/ost-sdk-java.svg?branch=master )] ( https://travis-ci.org/ostdotcom/ost-sdk-java )
2+ [ ![ Build Status] ( https://travis-ci.org/ostdotcom/ost-sdk-java.svg?branch=develop )] ( https://travis-ci.org/ostdotcom/ost-sdk-java )
33
44The official [ OST] ( https://dev.ost.com/ ) Java SDK.
55
@@ -18,18 +18,18 @@ This ensures that they stay within the token economy.
1818
1919The OST technology stack is designed to give businesses everything they need
2020to integrate, test, and deploy BTs. Within the OST suite of products, developers
21- can use OST KIT to create, test, and launch Brand Tokens backed by OST.
21+ can use OST Platform to create, test, and launch Brand Tokens backed by OST.
2222
2323OST APIs and server-side SDKs make it simple and easy for developers to
2424integrate blockchain tokens into their apps.
2525
2626## Requirements
2727
2828Integrating an OST SDK into your application can begin as soon as you create an account
29- with OST KIT , requiring only three steps:
30- 1 . Sign-up on [ https://kit .ost.com ] ( https://kit .ost.com ) .
31- 2 . Create your Brand Token in OST KIT .
32- 3 . Obtain an API Key and API Secret from [ https://kit .ost.com/mainnet/developer ] ( https://kit .ost.com/mainnet/developer ) .
29+ with OST Platform , requiring only three steps:
30+ 1 . Sign-up on [ https://platform .ost.com ] ( https://platform .ost.com ) .
31+ 2 . Create your Brand Token in OST Platform .
32+ 3 . Obtain an API Key and API Secret from [ https://platform .ost.com/mainnet/developer ] ( https://platform .ost.com/mainnet/developer ) .
3333
3434## Documentation
3535
@@ -96,22 +96,22 @@ to their tokens. To tackle this risk, OST promotes a
9696mobile-first approach and provides mobile (client) and server SDKs.
9797
9898
99- * The server SDKs enable you to register users with KIT .
99+ * The server SDKs enable you to register users with OST Platform .
100100* The client SDKs provide the additional support required for
101101the ownership and management of Brand Tokens by users so
102102that they can create keys and control their tokens.
103103
104104### Users Module
105105
106- To register users with KIT , you can use the services provided in the Users module.
106+ To register users with OST Platform , you can use the services provided in the Users module.
107107
108108Initialize a Users object to perform user-specific actions, like creating users:
109109
110110``` java
111111com.ost.services. Users usersService = services. users;
112112```
113113
114- Create a User with KIT :
114+ Create a User with OST Platform :
115115
116116``` java
117117HashMap < String ,Object > params = new HashMap<String ,Object > ();
@@ -144,7 +144,7 @@ System.out.println("response: " + response.toString() );
144144### Devices Module
145145
146146Once a user is created via the API, you can register the
147- user’s device with KIT . Next, activate the user’s
147+ user’s device with OST Platform . Next, activate the user’s
148148wallet on the user's device. Multiple devices can be
149149registered per user.
150150
@@ -511,7 +511,7 @@ System.out.println("response: " + response.toString() );
511511
512512### Tokens Module
513513
514- To get information about the Brand Token created on the OST KIT interface, use services provided
514+ To get information about the Brand Token created on the OST Platform interface, use services provided
515515by the Tokens module. You can use this service to obtain the chain ID of the auxiliary
516516chain on which the token economy is running, in addition to other information.
517517
@@ -543,4 +543,4 @@ HashMap <String,Object> params = new HashMap<String,Object>();
543543params. put(" chain_id" , " 200" );
544544JsonObject response = chainsService. get( params );
545545System . out. println(" response: " + response. toString() );
546- ```
546+ ```
0 commit comments