@filecoin-station/spark-impact-evaluator
v1.2.4
Published
Inherits from https://github.com/Meridian-IE/impact-evaluator, with added SPARK-specific ACL and configuration.
Downloads
6,047
Readme
spark-impact-evaluator
Inherits from https://github.com/Meridian-IE/impact-evaluator, with added SPARK-specific ACL and configuration.
Roles
.MEASURE_ROLE()
Development
This repo requires Rust and Cargo, which can be installed from here
Install Foundry
We recommend you install it from source:
git clone https://github.com/foundry-rs/foundry
cd foundry
git checkout 9a4bb7f5
# install cast + forge
cargo install --path ./cli --profile local --bins --locked --force
# install anvil
cargo install --path ./anvil --profile local --locked --force
Clone Repo and Install
git clone https://github.com/filecoin-station/spark-impact-evaluator.git
cd spark-impact-evaluator
git submodule update --init --recursive
forge test
Local Development
To iterate quickly, the anvil
network can be used to develop locally. Note
that Anvil strictly uses Etheruem addressing and does not include Filecoin
pre-compiles.
First run anvil
:
anvil
The output will provide a list of private keys and addresses that can be used.
Anvil's default mnemonic is:
test test test test test test test test test test test junk
To deploy the contract on Anvil, run:
forge create --rpc-url http://127.0.0.1:8545 --mnemonic "test test test test test test test test test test test junk" src/Spark.sol:Spark --constructor-args 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
Node.js API
import * as SparkImpactEvaluator from '@filecoin-station/spark-impact-evaluator'
console.log({
abi: SparkImpactEvaluator.ABI,
address: SparkImpactEvaluator.ADDRESS
})
Node.js CLI
The CLI prints the current contract address.
$ spark-impact-evaluator
0x8460766edc62b525fc1fa4d628fc79229dc73031
Deployment
Contracts can be deployed using the forge cli
or using a rust deployment
script that leverages contract bindings.
Forge CLI
This deployment method requires manual insertion of a private key and is not recommended for production use cases.
NOTE: Deployment using forge CLI often errors out on Filecoin networks even though the transaction goes through (Foundry is configured for EVM's block time, not FVM's). Use a block explorer to find the address of the contract.
Make sure the following env vars are defined as follows:
export RPC_URL="..."
export ADMIN_ADDRESS="..."
export MNEMONIC_PATH="{path to mnemonic secret file}"
To deploy using a private key, run:
forge create --rpc-url $RPC_URL --private-key <your_private_key> src/Spark.sol:Spark --constructor-args $ADMIN_ADDRESS
To deploy using a local mnemonic secret, run:
forge create --rpc-url $RPC_URL --mnemonic $MNEMONIC_PATH src/Spark.sol:Spark --constructor-args $ADMIN_ADDRESS
Deployment Rust Script
The deployment relies on contract bindings generated in the /contract-bindings
directory. If you make changes to the contracts, run:
rm -rf contract-bindings
forge bind --crate-name contract-bindings -b ./contract-bindings
This will create new bindings with the modified contracts.
Deployment can then proceed either with a locally stored mnemonic or a connected
ethereum ledger wallet. To use with a mnemonic, create a secrets/mnemonic
file
in the root directory.
To deploy, run:
(cd contract-utils && cargo run)
Tests
Integration Tests
Integration tests run on the filecoin calibration net and require a wallet with test FIL to pay for gas fees on the calibration net. Test FIL is free and can be obtained using the faucet.
Before running integration tests, these env vars are required:
export TEST_RPC_URL=https://api.calibration.node.glif.io/rpc/v1
export TEST_MNEMONIC={insert wallet mnemonic here}
export TEST_CONTRACT_ADDRESS={this can be an empty string}
To run tests, run:
cd contract-utils
cargo test -- --nocapture --test-threads 1