npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nethermindeth/warp

v2.5.1

Published

Solidity to Cairo Transpiler

Downloads

15

Readme

Warp

Warp brings Solidity to Starknet, making it possible to transpile Ethereum smart contracts to Starknet Cairo Contracts.

:warning: Note: Cairo 1 support is being developed at this branch.

Quickstart

Docker compose provides a ready to use environment featuring warp and devnet.

Note: Executing Warp using Docker works only for x86 architecture, ARM architectures (such as Apple's M1) will be supported soon.

Build and run containers

docker-compose up

Transpile

docker-compose exec warp warp transpile exampleContracts/ERC20.sol

It's best to copy the contract/repo to the warp directory so it is available in container via volume. Use contract's paths relative to warp root. For example, assuming you've copied your project to warp/projects/myproject you can replace exampleContracts/ERC20.sol with projects/myproject/mycontract.sol in the above command.

Deploy to devnet

docker-compose exec warp warp compile warp_output/example__contracts/ERC20__WC__WARP.cairo
docker-compose exec warp starknet deploy --no_wallet --contract warp_output/example__contracts/ERC20__WC__WARP_compiled.json --gateway_url http://devnet:5050

Documentation 📖

You can read the documentation here.

Installation :gear:

To install Warp follow the installation instructions here.

To build Warp for development see the contributing guidelines.

Usage :computer:

If you have used installation method 1 you can use the warp command in any folder. If you have used installation method 2, you will have to specify the path to the warp directory followed by bin/warp e.g path_to_warp_repo/bin/warp ...

Starknet setup

Select your network and wallet types. It's recommended to set these as environment variables but they can also be passed as explicit arguments to the Warp CLI and the Starknet CLI.

export STARKNET_WALLET=starkware.starknet.wallets.open_zeppelin.OpenZeppelinAccount
export STARKNET_NETWORK=alpha-goerli

Make sure you have a Starknet account set up, if you have not done so yet please:

warp deploy_account

CLI Commands

warp transpile <path to Solidity contract>

To declare a Starknet contract:

warp declare <path to Starknet contract>

Please note to deploy a contract you will first have to declare it.

To deploy a Starknet contract:

warp deploy <path to Starknet contract>

The deploy command will generate the compiled json file as well as the abi json file. Use warp deploy --help command to see more deployment options.

Libraries

Unsupported Solidity Features

Please see the list below:

| Support Status | Symbol | | :---------------------------------: | :---------------: | | Will likely never be supported | :x: | | Being developed/investigated | :hammer_and_pick: | | Currently Unknown/If added in Cairo | :question: |

| Solidity | Support Status | | :-------------------------------------------------: | :---------------: | | fallback functions with args | :hammer_and_pick: | | delegate calls | :hammer_and_pick: | | indexed arrays in event | :hammer_and_pick: | | low level calls | :x: | | nested tuple expressions | :question: | | gasleft() | :question: | | msg.value | :question: | | msg.sig | :question: | | msg.data | :question: | | tx.gasprice | :question: | | tx.origin | :question: | | try/catch | :question: | | block.coinbase | :question: | | block.gaslimit | :question: | | block.basefee | :question: | | block.chainid | :question: | | block.difficulty | :x: | | precompiles (apart from ecrecover) | :question: | | selfdestruct | :question: | | blockhash | :question: | | functions pointers in storage | :question: | | sha256 (use keccak256 instead) | :x: | | receive | :question: | | Inline Yul Assembly - (memory, calldata, storage) | :question: | | user defined errors | :question: | | function call options e.g x.f{gas: 10000}(arg1) | :question: | | member access of address object e.g address.balance | :question: | | nested tuple assignments | :question: |

Note: We have changed the return of ecrecover to be uint160 because we use the address type for Starknet addresses.

Docker :whale:

Note: Executing Warp using Docker works only for x86 architecture, ARM architectures (such as Apple's M1) will be supported soon.

Build the image from source:

docker build -t warp .

Run the container with the same options and arguments as the Warp binary:

docker run --rm -v $PWD:/dapp --user $(id -u):$(id -g) warp transpile exampleContracts/ERC20.sol

Contributing

You can read about contributing, first steps, development tips and testing for contributors here

Contact Us :phone:

Discord twitter