Skip to content

Commit

Permalink
fix: updated the link to public docs and fixed minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyxdd committed May 10, 2024
1 parent 59d9bb4 commit 4947d70
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Instead of standard SBTs, TON Society uses compressed ones. This approach allows

1. Information about cSBT collections and minted items is stored on the TON Society's backend service.
2. Minting proofs for a given collection are sent on-chain every 24 hours in a single transaction — this leads to significant savings on fees.
3. TON Society's minting system is fully complaint with [Compressed SBT Standard](https://github.com/krigga/TEPs/blob/compressed-nfts/text/0000-compressed-nft-standard.md#1-itemsindex). All ecosystem players willing to display these cSBTs should support it using [open APIs](https://ton-developers.github.io/ton-society/#/Compressed%20SBTs) built according to the Standard.
3. TON Society's minting system is fully complaint with [Compressed SBT Standard](https://github.com/krigga/TEPs/blob/compressed-nfts/text/0000-compressed-nft-standard.md#1-itemsindex). All ecosystem players willing to display these cSBTs should support it using [open APIs](https://ton-society.github.io/sbt-platform/#/Compressed%20SBTs) built according to the Standard.
4. Currently, cSBT items and collections minted through TON Society are supported and displayed by Getgems, TON Space, Tonkeeper, Tonviewer, and the TON API.

If activity owners decide to reward their participants using classic SBT collections, they need to implement minting on their own. Afterward, the activity and its minted collection can be registered in the TON Society catalog to increase visibility and attract more interest.
Expand Down Expand Up @@ -55,8 +55,8 @@ To get a personalized link:
### 3. Access cSBT and user data to display on a project side
Use TON Society APIs to display minted cSBTs and user information in your project.

**[Users and Collections](https://ton-developers.github.io/ton-society/#/Users)**<br />
**[Users and Collections](https://ton-society.github.io/sbt-platform/#/Users)**<br />
Provides access to publicly available information on society.ton.org regarding registered users and the SBT/cSBT collections associated with them.

**[cSBT data](https://ton-developers.github.io/ton-society/#/Compressed%20SBTs)**<br />
**[cSBT data](https://ton-society.github.io/sbt-platform/#/Compressed%20SBTs)**<br />
Provides access to cSBT collections minted via TON Society in your project. This information complies with the [Compressed SBT Standard](https://github.com/krigga/TEPs/blob/compressed-nfts/text/0000-compressed-nft-standard.md#1-itemsindex).
14 changes: 7 additions & 7 deletions docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ paths:
get:
tags:
- Compressed SBTs
summary: For a specific collection (by its Id), returns an item's data and proof cell
summary: For a specific collection, returns an item's data and the proof cell
description: The endpoint follows specifications outlined in the ["Compressed NFT Standard"](https://github.com/krigga/TEPs/blob/compressed-nfts/text/0000-compressed-nft-standard.md#1-itemsindex)
operationId: findCsbtItem
parameters:
Expand Down Expand Up @@ -305,7 +305,7 @@ paths:
get:
tags:
- Compressed SBTs
summary: For a specific collection (by its Id), returns list of items in a slice given its offset and count
summary: For a specific collection, returns a list of items in a slice given its offset and count
description: The endpoint follows specifications outlined in the ["Compressed NFT Standard"](https://github.com/krigga/TEPs/blob/compressed-nfts/text/0000-compressed-nft-standard.md#2-itemsoffsetoffsetcountcount)
operationId: findCsbtItems
parameters:
Expand All @@ -325,14 +325,14 @@ paths:
schema:
type: integer
default: 0
- name: Count
- name: count
in: query
description: Number of items to return
required: true
explode: true
schema:
type: string
default: EQCuSUgDsTjTIl-fiVYy8PppqpIgJX3Xn8Cjzjb8YMW-YatV
type: number
default: 26
responses:
'200':
description: Successful operation
Expand All @@ -350,7 +350,7 @@ paths:
get:
tags:
- Compressed SBTs
summary: Returns the state of a compressed SBT collection (given its Id)
summary: Returns the state of a compressed SBT collection
description: The endpoint follows specifications outlined in the ["Compressed NFT Standard"](https://github.com/krigga/TEPs/blob/compressed-nfts/text/0000-compressed-nft-standard.md#3-state)
operationId: findCsbtCollectionState
parameters:
Expand All @@ -361,7 +361,7 @@ paths:
explode: true
schema:
type: string
default: EQCuSUgDsTjTIl-fiVYy8PppqpIgJX3Xn8Cjzjb8YMW-YatV
default: EQAyaHk64ZntohYtixic2oOt2jyRV_GpJ0Qn-yl4Kh9vJz_i
responses:
'200':
description: Successful operation
Expand Down

0 comments on commit 4947d70

Please sign in to comment.