Today we want to share with you some amazing news about how creating and proposing footsteps has become easier than ever!
All you need to do is write down your thought in the first paragraph, and simply copy the rest and give it to the neural network to get the result.
Template for ChatGPT:
Please write SOMETHING YOU WANT TO CREATE IN FOOTSTEPWith this, you can go to GitHub and create a new TON Footsteps initiative!
To write a TON Footstep in the required form, follow these steps:
Begin with the Summary: Provide a brief, concise summary that explains the main idea of the proposal. This should help the reader quickly understand the purpose of the footstep.
Provide Context: Explain the current situation and why it's important to adopt this proposal. Offer any relevant background information that would help the reader understand the need for the proposed solution.
List the Goals: Clearly outline the goals that the proposal aims to achieve. These should be specific and measurable, allowing others to understand the intended outcomes of the proposal.
Specify Deliverables: Clearly state the expected deliverables that will be produced as a result of implementing the proposal. This can include tangible products, processes, or improvements.
Define "Done": Establish clear criteria that determine when the proposal is considered complete and successful. These criteria should be agreed upon by all parties involved and should be measurable and objective.
Propose a Reward: Suggest an appropriate reward for completing the proposal, which could be a Standard TON Footstep NFT, a monetary reward in USD, or another form of compensation.
Remember to use clear, concise language and maintain a professional tone throughout your proposal. Be sure to address each section thoroughly and provide enough detail for others to understand the importance of the proposal and its potential impact on the TON Ecosystem.
#ton_footsteps
@delovoyslava for more information
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
👍11🔥6👎3🤩3💯2
FunC updates
New versions of func-js-bin (0.4.3) and func-js (0.6.1) have been released.
Here is the official changelog for FunC version 0.4.3 - link
The only change of note in func-js is that it now contains this latest version of FunC.
To update func-js (if you use it as a CLI tool), run
New versions of func-js-bin (0.4.3) and func-js (0.6.1) have been released.
Here is the official changelog for FunC version 0.4.3 - link
The only change of note in func-js is that it now contains this latest version of FunC.
To update func-js (if you use it as a CLI tool), run
npm install @ton-community/func-js@latest -g🔥9
Blueprint dependency update
blueprint v0.9.0 has just been released, it includes dependency updates:
- func v0.4.3
- tact v1.1.1
Please note that this release is not yet included in create-ton, and so for now you will have to update blueprint manually when creating new projects.
blueprint v0.9.0 has just been released, it includes dependency updates:
- func v0.4.3
- tact v1.1.1
Please note that this release is not yet included in create-ton, and so for now you will have to update blueprint manually when creating new projects.
🔥13👍3
New sandbox release!
sandbox v0.9.0 has been released. It contains two new features:
- A gas usage helper,
- Snapshots for
sandbox v0.9.0 has been released. It contains two new features:
- A gas usage helper,
printTransactionFees, that you can call on an array of transactions acquired from a sandbox execution, to help you calculate the fees of your operations- Snapshots for
Blockchain and SmartContract. Here's how to use them:const snapshot = oldBlockchain.snapshot()These features were discussed in our community prior to their release, so join us, if you want to discuss other stuff!
const newBlockchain = await Blockchain.create()
await newBlockchain.loadFrom(snapshot)
🔥19👍7❤6
🔨Dev tools updates
sandbox v0.10.0
- New executor WASM binaries taken from the artifacts of this commit
- New treasury code which fixes some interactions between snapshots and treasuries
create-ton v0.4.0
- Updated template readme
- Changed template jest config to use TypeScript
- Updated blueprint and sandbox to latest versions
sandbox v0.10.0
- New executor WASM binaries taken from the artifacts of this commit
- New treasury code which fixes some interactions between snapshots and treasuries
create-ton v0.4.0
- Updated template readme
- Changed template jest config to use TypeScript
- Updated blueprint and sandbox to latest versions
👍15❤🔥2👨💻1
func-js update
A new version of func has been released (official release notes), so we've updated func-js-bin (v0.4.4) and func-js (v0.6.2). The only change is that they now ship func v0.4.4
A new version of func has been released (official release notes), so we've updated func-js-bin (v0.4.4) and func-js (v0.6.2). The only change is that they now ship func v0.4.4
👍13
Beta dev tools for the upcoming TVM update
The testnet branch of the official TON repo contains a lot of new opcodes, and we have released new tools to help you test them out before they reach mainnet. The new versions are as follows:
Also, the updated sandbox only includes the updated emulator binary, but lacks some interface updates - for example, there is currently no way to set the information required for the new opcodes
Also note that the default and slim configs packaged with sandbox are deliberately changed to enable the new TVM opcodes and will not match the ones that are actually contained in the blocks indicated by the seqno consts.
If you want to use the new opcodes in blueprint, you also need to override func-js versions. To do so, add the following to your package.json:
(change
Note that sandbox can be updated in the usual way by replacing the version in the
The testnet branch of the official TON repo contains a lot of new opcodes, and we have released new tools to help you test them out before they reach mainnet. The new versions are as follows:
@ton-community/sandbox@0.12.0-tvmbeta.1 @ton-community/func-js@0.6.3-tvmbeta.1 @ton-community/func-js-bin@0.4.5-tvmbeta.1
Please note that the actual func version in the func-js-bin package is still 0.4.4Also, the updated sandbox only includes the updated emulator binary, but lacks some interface updates - for example, there is currently no way to set the information required for the new opcodes
PREVBLOCKSINFOTUPLE, PREVMCBLOCKS, PREVKEYBLOCK
The interface will likely be updated when the update reaches mainnet, or sooner if there is demand for that.Also note that the default and slim configs packaged with sandbox are deliberately changed to enable the new TVM opcodes and will not match the ones that are actually contained in the blocks indicated by the seqno consts.
If you want to use the new opcodes in blueprint, you also need to override func-js versions. To do so, add the following to your package.json:
"overrides": {
"@ton-community/func-js-bin": "0.4.5-tvmbeta.1",
"@ton-community/func-js": "0.6.3-tvmbeta.1"
}(change
overrides to resolutions if you're using yarn)Note that sandbox can be updated in the usual way by replacing the version in the
devDependencies section directly.👍14🏆4
🔨Dev tools updates
blueprint v0.10.0
- Added two optional fields to the
- Changed the
create-ton v0.5.0
- Updated template's blueprint to 0.10.0, sandbox to 0.11.0
- Changed template's jest config to ignore the
blueprint v0.10.0
- Added two optional fields to the
CompilerConfig: preCompileHook?: () => Promise<void> and postCompileHook?: (code: Cell) => Promise<void>. The former one gets called before any compilation of the respective contract happens, the latter one - after any compilation with the compiled code cell (they are called both during the build command and when calling the compile function for the respective contracts)- Changed the
run command to only show .ts noscriptscreate-ton v0.5.0
- Updated template's blueprint to 0.10.0, sandbox to 0.11.0
- Changed template's jest config to ignore the
dist directory👍13🎉4❤2❤🔥2🤩1👨💻1
🚀 Join TonTech and shape the future of TON blockchain development!
We're hiring developers to build cutting-edge tools and SDKs. Work with the latest blockchain technology, collaborate in a dynamic environment, and access empowering resources.
Make an impact on the TON community.
Contact us: @Narek
We're hiring developers to build cutting-edge tools and SDKs. Work with the latest blockchain technology, collaborate in a dynamic environment, and access empowering resources.
Make an impact on the TON community.
Contact us: @Narek
👨💻11👍7🔥2
Biweekly digest of TON Footsteps.
Over the past two weeks, we have gathered the most exciting news from the TON Footsteps ecosystem component:
💎 Significant steps aiding ecosystem development:
• Ton Developers Program
You can read more in the footstep and the corresponding file documenting this work. It will be launched within a month.
• Reproducible research of TON Footsteps
Statistical data of the TON Footsteps component, reflecting all metrics for full transparency. You can read more in the repository.
👥 Content:
One milestone has been completed in each of the onboarding footsteps.
You can view the videos via the links:
- Buy TON Fast
- Mastering Crypto Wallets
🎓 Documentation:
• Documentation for Get Methods (Getters) in TON Blockchain
• Step-by-Step Guide for Launching Liteserver
📊 Development:
• Dart library for TON Connect 2.0
#ton_footsteps
Over the past two weeks, we have gathered the most exciting news from the TON Footsteps ecosystem component:
• Ton Developers Program
You can read more in the footstep and the corresponding file documenting this work. It will be launched within a month.
• Reproducible research of TON Footsteps
Statistical data of the TON Footsteps component, reflecting all metrics for full transparency. You can read more in the repository.
One milestone has been completed in each of the onboarding footsteps.
You can view the videos via the links:
- Buy TON Fast
- Mastering Crypto Wallets
• Documentation for Get Methods (Getters) in TON Blockchain
• Step-by-Step Guide for Launching Liteserver
• Dart library for TON Connect 2.0
#ton_footsteps
Please open Telegram to view this post
VIEW IN TELEGRAM
👍14🔥5
Hey guys! A while ago, we started improving the previously unfinished TON Ledger App, and we are now close to the finish line! It's still not released and may require some further improvements, but you can check out its development branch here. One of the main new features is the support for the upcoming Ledger Stax device. Please also see the attached screenshot of the new UI.
👍11🤩2😁1
Hey guys!
If we happen to have Rust developers with TON experience in subscribers: we have a small task for you, write about yourself in the comments.
If we happen to have Rust developers with TON experience in subscribers: we have a small task for you, write about yourself in the comments.
👍9
Media is too big
VIEW IN TELEGRAM
Presenting three key insights:
• Total number of completed and paid-out footsteps: Through to the flash-grant system, nearly 100 ideas from the community have been implemented
• Total funds spent on all footsteps: Continuously growing, surpassing $120,000
• Average reward per footstep: Fluctuates around $2,000
These data-driven insights have led us to recognize the following important trends:
• Our community is growing actively, indicating high satisfaction with our services
• Users are dynamically interacting with our platform, exploring various facets of TON Footsteps
• The volume of footsteps continues to increase, affirming our efficiency and reliability
Step 1: Developing new features and capabilities, taking into consideration the valuable feedback from our community
Step 2: Enhancing the comfort of the community's interaction with the system
Step 3: Enhancing our user interface to provide a more convenient and intuitive user experience
It's quite important that this tool was development in the Footstep #184, about which we talked in the previous post.
#ton_footsteps
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥16👍11👏4😁1
🔨Dev tools updates
blueprint v0.11.0
- Added an
- Updated TACT to 1.1.3
blueprint v0.11.0
- Added an
options field to the tact variant of CompilerConfig, which is of the same type as the options of the TACT compiler, and includes fields such as debug, experimental, etc- Updated TACT to 1.1.3
👍11🔥5
Monthly digest of TON Footsteps.
With a slight delay, we've compiled a more comprehensive list of the most exciting news from the TON Footsteps ecosystem component, covering the period from June 25 to July 19 (almost a month):
👥 Content:
• TON Dev Study - Learn send_mode and fees through Sandbox tests
You can view the videos via the links in the playlist:
📹 FunC & Blueprint
🎓 Documentation:
• Step-by-step explanation for TON DNS subdomains system
• Update TON FunC Lessons with Blueprint SDK
• Detailed denoscription of initialization stage for TVM
📊 Dev tooling:
• Testnet coins faucet bot for Telegram
📥 Software Development Kit:
• C# SDK for TON
• Dart/Flutter SDK for TON
We aim to stick to our regular publishing schedule in the future, but given the not so active past month, we have not witnessed any explosive developments.
❗️ Please take five minutes of your time and complete the survey of feedback form. This way, we can become even better! ❗️
#ton_footsteps
With a slight delay, we've compiled a more comprehensive list of the most exciting news from the TON Footsteps ecosystem component, covering the period from June 25 to July 19 (almost a month):
• TON Dev Study - Learn send_mode and fees through Sandbox tests
You can view the videos via the links in the playlist:
• Step-by-step explanation for TON DNS subdomains system
• Update TON FunC Lessons with Blueprint SDK
• Detailed denoscription of initialization stage for TVM
• Testnet coins faucet bot for Telegram
• C# SDK for TON
• Dart/Flutter SDK for TON
We aim to stick to our regular publishing schedule in the future, but given the not so active past month, we have not witnessed any explosive developments.
#ton_footsteps
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥15👍7❤4🎉1
Hey everyone!
Last month, we dedicated our efforts to researching large collections on TON, and we have some exciting developments to share with you.
Let's start with some context: TON's asynchronous architecture naturally leads developers to use sharded architectures for their smart contracts. This also holds true for the current NFT standard in TON, where each NFT is represented as a separate smart contract. While this approach helps distribute the load on smart contracts, it presents some challenges for developers:
1. Deployment of an NFT collection with 1 million items results in the deployment of 1 million + 1 contracts.
2. Managing multi-NFT operations becomes a significant challenge.
However, we didn't let these challenges deter us. Our team has worked hard to find an innovative solution that allows for the deployment of extremely large collections of NFTs at a very affordable cost. While doing it entirely on-chain proved impractical, we found an excellent compromise by combining on-chain and off-chain storage of data.
Here's the basic idea: we introduce a new state for NFTs, which we call "virtual NFTs." The data for these virtual NFTs, including ownership and metadata, is stored off-chain, while on-chain, we keep a Merkle tree root containing all the NFTs in the collection. When the first transfer of a virtual NFT occurs, it gets minted on-chain, and from that point forward, it becomes indistinguishable from classical NFTs.
This approach offers numerous benefits:
1. Creation of truly massive collections, even up to 1 billion items.
2. Collection deployment comes at a fixed price, independent of its size.
3. Collection deployment costs are incredibly low, akin to deploying a normal empty collection (almost free).
4. The "claiming" of virtual NFTs is very affordable, comparable to a standard transfer.
5. Full compatibility with the existing NFT standard and mechanics.
6. The implementation on marketplace platforms is relatively straightforward.
We are thrilled to announce that today we have published this new approach as the Compressed NFT Standard. Alongside this, we have released reference contract implementations and an off-chain storage server. We eagerly await your feedback and comments on our standard draft.
Thank you for your continuous support, and let's work together to shape the future of NFTs on TON!
Last month, we dedicated our efforts to researching large collections on TON, and we have some exciting developments to share with you.
Let's start with some context: TON's asynchronous architecture naturally leads developers to use sharded architectures for their smart contracts. This also holds true for the current NFT standard in TON, where each NFT is represented as a separate smart contract. While this approach helps distribute the load on smart contracts, it presents some challenges for developers:
1. Deployment of an NFT collection with 1 million items results in the deployment of 1 million + 1 contracts.
2. Managing multi-NFT operations becomes a significant challenge.
However, we didn't let these challenges deter us. Our team has worked hard to find an innovative solution that allows for the deployment of extremely large collections of NFTs at a very affordable cost. While doing it entirely on-chain proved impractical, we found an excellent compromise by combining on-chain and off-chain storage of data.
Here's the basic idea: we introduce a new state for NFTs, which we call "virtual NFTs." The data for these virtual NFTs, including ownership and metadata, is stored off-chain, while on-chain, we keep a Merkle tree root containing all the NFTs in the collection. When the first transfer of a virtual NFT occurs, it gets minted on-chain, and from that point forward, it becomes indistinguishable from classical NFTs.
This approach offers numerous benefits:
1. Creation of truly massive collections, even up to 1 billion items.
2. Collection deployment comes at a fixed price, independent of its size.
3. Collection deployment costs are incredibly low, akin to deploying a normal empty collection (almost free).
4. The "claiming" of virtual NFTs is very affordable, comparable to a standard transfer.
5. Full compatibility with the existing NFT standard and mechanics.
6. The implementation on marketplace platforms is relatively straightforward.
We are thrilled to announce that today we have published this new approach as the Compressed NFT Standard. Alongside this, we have released reference contract implementations and an off-chain storage server. We eagerly await your feedback and comments on our standard draft.
Thank you for your continuous support, and let's work together to shape the future of NFTs on TON!
❤🔥55👍16🔥14⚡6🏆3💊3❤2💘1