
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
TypeScript programming with the full power of the Ethereum Virtual Machine
Tevm is an ethereum development toolkit that offers
Tevm runs in all environments
Try out our online frontend example on stackblitz
Tevm scripting is a simple yet powerful way to program.
HelloWorld.s.sol// SPDX-License-Identifier: MIT
pragma solidity >0.8.0;
contract HelloWorld {
function greet(string memory name) public pure returns (string memory) {
return string(abi.encodePacked("Hello ", name, "!"));
}
}
import { HelloWorld } from "./HelloWorld.sol";
console.log(HelloWorld.abi);
console.log(HelloWorld.bytecode);
EthGetTransactionReceiptHandler actionimport { HelloWorld } from "./HelloWorld.sol";
import { createMemoryClient } from "tevm";
const client = createMemoryClient();
const result = await tevm.script(HelloWorld.read.greate("World"));
console.log(result.data); // Hello world!
This is just a small subset of what Tevm offers. See docs for more information.
Contributions are encouraged, but please open an issue before doing any major changes to make sure your change will be accepted.
See CONTRIBUTING.md for contributing information
FAQs
A typesafe Ethereum Virtual Machine (EVM) toolkit written in TypeScript
We found that tevm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.