Home

Awesome

Openfort Protocol

<div align="center"> <h4> <a href="https://www.openfort.xyz/"> Website </a> <span> | </span> <a href="https://www.openfort.xyz/docs"> Documentation </a> <span> | </span> <a href="https://www.openfort.xyz/docs/api"> API Docs </a> <span> | </span> <a href="https://twitter.com/openfortxyz"> Twitter </a> </h4> </div>

Openfort Contracts

Official Contracts of the Openfort Project.

The following standards are supported:

Development

Install Foundry

  curl -L https://foundry.paradigm.xyz | bash
  foundryup

Build and test

  git clone https://github.com/openfort-xyz/openfort-contracts.git && cd openfort-contracts
  yarn
  forge install
  forge build
  forge test

Unit Test Coverage

You can use Foundry to get the unit test coverage. Use the lcov report format and genhtml to view the coverage data in a nice web interface.

  forge coverage --report lcov
  genhtml -o report --branch-coverage lcov.info

Use different built-in scripts

Before executing any of the scripts below, make sure you've properly configured your .env file.

Generate a gas report

./script/gasProfile.sh

Deploy Upgradeable and Managed factories to all chains

./script/deployAllChains.sh

Check paymaster's deposit and Patron's balance on different chains

forge script CheckDeposits --force

Deploy one upgradeable factory and one account

Simulation:

forge script --force script/deployManagedAccounts.s.sol -vvvvv --optimizer-runs 1000000 --slow --fork-url $<rpc_network>

Actual deployment:

forge script --force script/deployManagedAccounts.s.sol  -vvvvv --optimizer-runs 1000000 --slow --fork-url $<rpc_network> --broadcast --verify --etherscan-api-key $<api_key>

Compare gas costs

You can compare gas costs by running the following command against different gas reports:

forge snapshot --silent --diff gas_reports/2023-05-24_11:52.snap.out

Static Analyzers

Static analysis using Slither

If you want to perform a static analysis of the smart contracts using Slither, you can run the following commands:

  pip3 install slither-analyzer
  pip3 install solc-select
  solc-select install 0.8.19
  solc-select use 0.8.19
  slither .

Static analysis using Mythril

If you want to perform a static analysis of the smart contracts using Mythril, you can run the following commands:

  rustup default nightly
  pip3 install mythril
  myth analyze contracts/core/static/StaticOpenfortAccount.sol --solc-json mythril.config.json

If you run into the error ImportError: cannot import name 'getargspec' from 'inspect' from Python3 running the commands above, please see the temporary fix on this comment.

Gas Stats

As of June 2023, the current average gas cost for deploying or using the different smart contracts of this project is:

Upgradeable Accounts

Smart ContractDescription# of deployments per game/ecosystemAvg gas cost
UpgradeableOpenfortFactoryDeploy factory (containing UpgradeableOpenfortAccount's implementation)1~3,250,000
UpgradeableOpenfortAccountCreate a new upgradeable account using the createAccountWithNonce() of the factoryindefinite~200,000
UpgradeableOpenfortAccountUpdating to a new implementation using upgradeTo()indefinite~3,500

Paymaster

Smart ContractDescription# of deployments per game/ecosystemAvg gas cost
OpenfortPaymasterDeploy Paymaster to pay gas in ERC20s1~1,250,000

Gas Stats in USD

The gas price range is reported as the daily average gas price for the first 90 days of 2023 ± one standard deviation.

BlockchainGas Price RangeToken PriceCreate an Upgradeable account
Ethereum30.5 ± 10.5 gwei~$1800$7.5-15
Polygon220 ± 108 gwei~$0.67$0.015-$0.045
Avalanche36 ± 4.5 nAVAX~$12.8$0.08-$0.11
BSC7 ± 0.55 gwei~$240$0.32-$0.36