Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
reveloper authored Mar 9, 2024
2 parents 459db2a + 56e8043 commit e7483e9
Show file tree
Hide file tree
Showing 33 changed files with 943 additions and 500 deletions.
24 changes: 24 additions & 0 deletions docs/develop/companies/outsource.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Discover 3rd party development teams for your TON project
* [Blockczech R&D Lab](#blockczech-rd-lab)
* [EvaCodes](#evacodes)
* [Coinvent](#coinvent)
* [softstack](#softstack)


### Astralyx
Expand Down Expand Up @@ -100,6 +101,29 @@ Coinvent is a dedicated outsource development team, passionately committed to cr
- [@coinvent_dev](https://t.me/coinvent_dev)
- [email protected]

### softstack

#### Summary
Softstack formerly known as Chainsulting, is a leading provider of comprehensive Web3 solutions, with a focus on software development and smart contract auditing.

#### Workstreams
- Smart Contract & dApp Development
- Digital Asset Wallets
- Telegram Mini-Apps & Bots
- Cybersecurity (Smart Contract Audits, Penetration Testing)

#### Projects
- [DeGods](https://degods.com)
- [tixbase](https://tixbase.com)
- [TMRW Foundation](https://tmrw.com)
- [Bitcoin.com](https://bitcoin.com)
- [Coinlink Finance](https://coinlink.finance)

#### Contacts
- [email protected]
- [softstack.io](https://softstack.io/)
- Telegram [@softstack](https://t.me/softstack)

## Add your team

If you are fully prepared to become an outsourced agent for TON Ecosystem, you can promote your company by filling out our form or submitting a pull request.
Expand Down
1 change: 1 addition & 0 deletions docs/develop/dapps/apis/sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ The data provider is a [Liteserver](/participate/run-nodes/liteserver), which ca
| Library | Language | Description |
|---------|----------|--------------|
|[pytoniq-core](https://github.com/yungwine/pytoniq-core) | Python | Python powerful transport-free SDK |
|[pytvm](https://github.com/yungwine/pytvm) | Python | Python TVM emulator using bindings to C++ standard emulator |
|[ayrat555/ton](https://github.com/ayrat555/ton) | Elixir | TON SDK for Elixir|
|[tvm_valuetypes](https://github.com/toncenter/tvm_valuetypes)| Python | library is collection of utilits for handling TVM types. |

Expand Down
4 changes: 2 additions & 2 deletions docs/develop/dapps/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ async def main():

USER_JETTON_WALLET = (await provider.run_get_method(address=JETTON_MASTER_ADDRESS,
method="get_wallet_address",
stack=[begin_cell().store_address(USER_ADDRESS).end_cell().begin_parse()]))[0]
stack=[begin_cell().store_address(USER_ADDRESS).end_cell().begin_parse()]))[0].load_address()
forward_payload = (begin_cell()
.store_uint(0, 32) # TextComment op-code
.store_snake_string("Comment")
Expand All @@ -598,7 +598,7 @@ async def main():
.end_cell())

await wallet.transfer(destination=USER_JETTON_WALLET, amount=int(0.05*1e9), body=transfer_cell)
await client.close_all()
await provider.close_all()

asyncio.run(main())
```
Expand Down
4 changes: 3 additions & 1 deletion docs/develop/dapps/ton-connect/sign.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,13 @@ The signature must be verified by public key:
### Examples of TON Proof Verification

* [GO demo app](https://github.com/ton-connect/demo-dapp-backend/blob/master/proof.go)
* [Rust demo app](https://github.com/liketurbo/demo-dapp-backend-rs)
* [TS example](https://gist.github.com/TrueCarry/cac00bfae051f7028085aa018c2a05c6)
* [Python example](https://github.com/XaBbl4/pytonconnect/blob/main/examples/check_proof.py)
* [PHP example](https://github.com/vladimirfokingithub/Ton-Connect-Proof-Php-Check)

## See Also

* [[YouTube] Check ton_proof for @tonconnect/react-ui [RU]](https://youtu.be/wIMbkJHv0Fs?list=PLyDBPwv9EPsCJ226xS5_dKmXXxWx1CKz_&t=2971)
* [Preparing Messages](/develop/dapps/ton-connect/message-builders)
* [Sending Messages](/develop/dapps/ton-connect/transactions)
* [Sending Messages](/develop/dapps/ton-connect/transactions)
8 changes: 4 additions & 4 deletions docs/develop/dapps/tutorials/collection-minting.md
Original file line number Diff line number Diff line change
Expand Up @@ -1111,16 +1111,16 @@ Now we can launch our project and enjoy the process!
```
yarn start
```
Go to https://testnet.getgems.io/YOUR_COLLECTION_ADDRESS_HERE and look to this perfect ducks!
Go to https://testnet.getgems.io/collection/<YOUR_COLLECTION_ADDRESS_HERE> and look to this perfect ducks!

## Conclusion

Today you have learned a lot of new things about TON and even created your own beautiful NFT collection in the testnet! If you still have any questions or have noticed an error - feel free to write to the author - [@coalus](https:/t.me/coalus)
Today you have learned a lot of new things about TON and even created your own beautiful NFT collection in the testnet! If you still have any questions or have noticed an error - feel free to write to the author - [@coalus](https://t.me/coalus)

## References

- [GetGems NFT-contracts](https:/github.com/getgems-io/nft-contracts)
- [GetGems NFT-contracts](https://github.com/getgems-io/nft-contracts)
- [NFT Standart](https://github.com/ton-blockchain/TEPs/blob/master/text/0062-nft-standard.md)

## About the author
- Coalus on [Telegram](https:/t.me/coalus) or [GitHub](https:/github.com/coalus)
- Coalus on [Telegram](https://t.me/coalus) or [GitHub](https://github.com/coalus)
Loading

0 comments on commit e7483e9

Please sign in to comment.