Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ artifacts/
cache/
.env
coverage/

# Rust build artifacts
grantstream-cli/target/
11 changes: 11 additions & 0 deletions grantstream-cli/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# RPC endpoint for the network you're targeting (e.g. Base Sepolia)
RPC_URL=https://sepolia.base.org

# Hex-encoded private key for the signer wallet (no 0x prefix required)
PRIVATE_KEY=your_private_key_here

# Deployed GrantStreamEscrow contract address
CONTRACT_ADDRESS=0xYourEscrowContractAddress

# USDC ERC-20 token address used by the escrow
USDC_ADDRESS=0xYourUSDCTokenAddress
1 change: 1 addition & 0 deletions grantstream-cli/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
Loading
Loading