This repository contains a Forge script developed by the Sablier Labs team for SteakHut. The script batch creates multiple Sablier streams, which will power SteakHut's $STEAK token vesting campaign.
Run the script like this, making sure to replace ETH_FROM
with your wallet address:
# your address here
ETH_FROM=0x0000000000000000000000000000000000000000 \
forge script script/SteakHut.s.sol \
--broadcast \
--ledger \
--mnemonic-derivation-paths "m/44'/60'/0'/0" \
--rpc-url avalanche \
--sig "run()" \
--verify \
--with-gas-price $(cast to-wei 25 gwei) \
-vvvv
- Run
foundryup
to make sure you are running the latest version of Foundry - The command above assumes that you are using a Ledger wallet connected to a computer via USB. If you wish to use a
mnemonic instead, remove the
--ledger
flag and set a$MNEMONIC
environment variable in a.env
file. Check out theBase
script.
This is experimental software and is provided on an "as is" and "as available" basis. Sablier Labs does not give any warranties and will not be liable for any loss, direct or indirect through continued use of this codebase.
This repo is licensed under GPL 3.0 or later.