@@ -9,16 +9,15 @@ OST is a complete technology solution enabling mainstream businesses
99to easily launch blockchain-based economies without
1010requiring blockchain development.
1111
12- At the core of OST is the concept of OST-powered Brand Tokens (BTs).
13- BTs are white-label cryptocurrency tokens with utility representations
12+ Brand Tokens (BTs) are white-label cryptocurrency tokens with utility representations
1413running on highly-scalable Ethereum-based side blockchains,
15- backed by OST tokens staked on Ethereum mainnet. Within a business’s
14+ backed by value token (such as OST, USDC) staked on Ethereum mainnet. Within a business’s
1615token economy, BTs can only be transferred to whitelisted user addresses.
1716This ensures that they stay within the token economy.
1817
1918The OST technology stack is designed to give businesses everything they need
2019to integrate, test, and deploy BTs. Within the OST suite of products, developers
21- can use OST Platform to create, test, and launch Brand Tokens backed by OST.
20+ can use OST Platform to create, test, and launch Brand Tokens backed by value token (such as OST, USDC) .
2221
2322OST APIs and server-side SDKs make it simple and easy for developers to
2423integrate blockchain tokens into their apps.
@@ -43,7 +42,7 @@ with OST Platform, requiring only three steps:
4342<dependency >
4443 <groupId >com.ost</groupId >
4544 <artifactId >ost-sdk-java</artifactId >
46- <version >2.0 .0</version >
45+ <version >2.1 .0</version >
4746</dependency >
4847```
4948
@@ -293,7 +292,7 @@ System.out.println("response: " + response.toString() );
293292
294293#### Price Points Module
295294
296- To know the OST price point in USD and when it was last updated,
295+ To know the value token (such as OST, USDC) price point in pay currency and when it was last updated,
297296use services provided by the Price Points module.
298297
299298``` java
@@ -414,12 +413,12 @@ arrayListAmount.add(amount);
414413Gson gsonObj = new Gson ();
415414String tokenHolderSender = " 0xa9632350057c2226c5a10418b1c3bc9acdf7e2ee" ;
416415String payCurrencyCode = " USD" ;
417- String ostToUsd = " 23757000000000000" ;
416+ String intendedPricePoint = " 23757000000000000" ;
418417nestedarraylist. add(tokenHolderSender);
419418nestedarraylist. add(arrayListForUser2TokenHolderAddress);
420419nestedarraylist. add(arrayListAmount);
421420nestedarraylist. add(payCurrencyCode);
422- nestedarraylist. add(ostToUsd );
421+ nestedarraylist. add(intendedPricePoint );
423422nestedparams. put(" parameters" , nestedarraylist);
424423String jsonStr = gsonObj. toJson(nestedparams);
425424params. put(" raw_calldata" , jsonStr);
@@ -543,3 +542,21 @@ params.put("chain_id", "200");
543542JsonObject response = chainsService. get( params );
544543System . out. println(" response: " + response. toString() );
545544```
545+
546+ ### Base Tokens Module
547+
548+ To get information about the value tokens (such as OST, USDC) available on the OST Platform interface, use services
549+ provided by the Base Tokens module. You can use this service to obtain the base token details
550+ on OST Platform interface.
551+
552+ ``` java
553+ com.ost.services. BaseTokens baseTokensService = services. baseTokens;
554+ ```
555+
556+ Get Base Token Detail:
557+
558+ ``` java
559+ HashMap < String ,Object > params = new HashMap<String ,Object > ();
560+ JsonObject response = baseTokensService. get( params );
561+ System . out. println(" response: " + response. toString() );
562+ ```
0 commit comments