Skip to content

Commit f3f997d

Browse files
Merge pull request #17 from ostdotcom/readme-changes
Update README.md
2 parents e016df2 + 6c1ac4d commit f3f997d

11 files changed

Lines changed: 17 additions & 165 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ hs_err_pid*
2525
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
2626
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
2727

28+
.idea/
29+
.idea/*
30+
2831
# User-specific stuff
2932
.idea/**/workspace.xml
3033
.idea/**/tasks.xml

.idea/compiler.xml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/markdown-navigator.xml

Lines changed: 0 additions & 78 deletions
This file was deleted.

.idea/markdown-navigator/profiles_settings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/ost-sdk-java.iml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

44
The official [OST](https://dev.ost.com/) Java SDK.
55

@@ -18,18 +18,18 @@ This ensures that they stay within the token economy.
1818

1919
The OST technology stack is designed to give businesses everything they need
2020
to 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

2323
OST APIs and server-side SDKs make it simple and easy for developers to
2424
integrate blockchain tokens into their apps.
2525

2626
## Requirements
2727

2828
Integrating 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
9696
mobile-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
101101
the ownership and management of Brand Tokens by users so
102102
that 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

108108
Initialize a Users object to perform user-specific actions, like creating users:
109109

110110
```java
111111
com.ost.services.Users usersService = services.users;
112112
```
113113

114-
Create a User with KIT:
114+
Create a User with OST Platform:
115115

116116
```java
117117
HashMap <String,Object> params = new HashMap<String,Object>();
@@ -144,7 +144,7 @@ System.out.println("response: " + response.toString() );
144144
### Devices Module
145145

146146
Once 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
148148
wallet on the user's device. Multiple devices can be
149149
registered 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
515515
by the Tokens module. You can use this service to obtain the chain ID of the auxiliary
516516
chain 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>();
543543
params.put("chain_id", "200");
544544
JsonObject response = chainsService.get( params );
545545
System.out.println("response: " + response.toString() );
546-
```
546+
```

0 commit comments

Comments
 (0)