Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.4 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.4 KB

Basic Sample Hardhat Project - with Starknet Plugin

This project demonstrates a basic Hardhat project, but with Starknet plugin.

Get started

Clone this repo

git clone [email protected]:Shard-Labs/starknet-hardhat-example.git
cd starknet-hardhat-example

Install dependencies

npm ci

Compile a contract

npx hardhat starknet-compile contracts/contract.cairo

Deploy a contract

npx hardhat starknet-deploy starknet-artifacts/contracts/contract.cairo

Run a test that interacts with the compiled contract

npx hardhat test test/quick-test.ts

Supported starknet-hardhat-plugin version

package.json is fixed to use the latest starknet-hardhat-plugin version this example repository is synced with.

Troubleshooting

If you're having issues trying to use this example repo with the Starknet plugin, try running npm install or npm update, as it may be due to version mismatch in the dependencies.

Branches

Branch updating (for developers)

  • New PRs and features should be targeted to the plugin branch.
  • After releasing a new plugin version, master should ideally be reset (fast forwarded) to plugin (less ideally merged).