Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@tact-lang/emulator
Advanced tools
Emulation toolkit for TON Smart Contracts
yarn add @tact-lang/emulator @ton/core @ton/crypto ton-abi
import { ContractSystem, randomAddress } from '@tact-lang/emulator';
import { WalletContractV4 } from '@ton/ton';
// Contract System is a virtual environment that emulates the TON blockchain
const system = await ContractSystem.create();
// Treasure is a contract that has 1m of TONs and is a handy entry point for your smart contracts
let treasure = await system.treasure('my-treasure');
system.name(treasure, 'my treasure'); // Set a name for the contract. Useful for snapshot testing.
// Update verbosity
system.globalVerbosity = Verbosity.DEBUG; // Global parameter
system.verbosity(treasure, Verbosity.ERROR); // Overwrite for a specific contract
// Track contract transactions and events
let tracker = system.track(treasure);
// Logger to collect VM logs from a contract
let logger = system.log(treasure);
// Create a random unknown address that would be treated as unititialized contract
let unknownAddress = randomAddress('some-unknown-seed'); // This seed is used to generate deterministic address
// Send an empty message to the unknown address
await treasure.send({
to: unknownAddress,
bounce: true,
});
// Run a block
let transactions = await system.run();
console.warn(inspect(transactions, false, 10000));
// Open a contract
let wallet = system.open(WalletContractV4.create({ workchain: 0, publicKey: <some-test-key> }));
// Show contract logs
console.warn(logger.collect());
// Test events and transactions
expect(tracker.collect()).toMatchSnapshot();
MIT
FAQs
Emulation toolkit for TON Smart Contracts
The npm package @tact-lang/emulator receives a total of 26 weekly downloads. As such, @tact-lang/emulator popularity was classified as not popular.
We found that @tact-lang/emulator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.