A Tycho executor for TON Sandbox.
Requires node 16 or higher.
yarn add @tychosdk/emulator @ton/sandbox @ton/ton @ton/core @ton/crypto
or
npm i @tychosdk/emulator @ton/sandbox @ton/ton @ton/core @ton/crypto
import { Blockchain } from "@ton/sandbox";
import { TychoExecutor } from "@tychosdk/emulator";
const executor = await TychoExecutor.create();
const blockchain = await Blockchain.create({
executor,
});
const version = executor.getVersion();
console.log("Version:", version);
To install dependencies:
bun install
To build wasm:
bun wasm:build
To run tests:
bun test
To publish:
bun run build
bun publish --access public
We welcome contributions to the project! If you notice any issues or errors, feel free to open an issue or submit a pull request.
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.