1.21.1 • Published 7 months ago

@gearbox-protocol/core-v2 v1.21.1

Weekly downloads
-
License
BUSL-1.1
Repository
github
Last release
7 months ago

Gearbox protocol

Gearbox is a generalized leverage protocol. It has two sides to it: passive liquidity providers who earn low-risk APY by providing single-asset liquidity; and active farmers, firms, or even other protocols who borrow those assets to trade or farm with even x10 leverage.

Gearbox Protocol allows anyone to take DeFi-native leverage and then use it across various (DeFi & more) protocols in a composable way. You take leverage with Gearbox and then use it on other protocols you already love: Uniswap, Curve, Convex, Lido, etc. For example, you can leverage trade on Uniswap, leverage farm on Yearn, make delta-neutral strategies, get Leverage-as-a-Service for your structured product, and more... Thanks to the Credit Accounts primitive!

Some compare composable leverage as a primitive to DeFi-native prime brokerage.

New in V2

  • Multicalls. The new Gearbox V2 architecture allows users to submit a sequence of Credit Account management operations and calls to external contracts that are executed sequentially, with only one health check at the end. This enables users to implement arbitrarily complex strategies without significant gas overhead and maintain their account's health with a single transaction, while liquidators can liquidate positions without flash loans or capital requirements.
  • Modular architecture. Compartmentalization of various functions makes parts of the system easily replaceable, which helps to both seamlessly update the system and swiftly respond to threats. E.g., all access and sanity checks when managing a Credit Account are performed inside a Credit Facade (a user-facing interface connected to its respective Credit Manager) - this allows to patch potential exploits or add new Credit Account management features without touching the Credit Manager itself or its connected Credit Accounts.
  • Improved integration potential. With multicalls and improved risk customization, more collateral asset classes and protocols can be connected to the system.

Repository overview

This repository contains the core smart contracts source code for Gearbox Protocol V2, as well as related Forge-based unit tests.

- contracts
  - adapters
  - core
  - credit
  - factories
  - interfaces
  - libraries
  - multicall
  - oracles
  - pool
  - support
  - tokens

Adapters

This directory contains code used for third-party integration. Since this repository contains core protocol code, there are only 2 contracts:

  1. AbstractAdapter.sol is the base contract for all adapters and contains the necessary logic to interact with Gearbox Credit Managers.
  2. UniversalAdapter.sol is a special adapter used for convenience features (such as allowance revocations or limited collateral withdrawals) and (in future updates) for quick integrations with protocols where a complete adapter is not required.

Core

This directory contains protocol contracts related to access, contract discovery, data reporting, etc.

  1. AccountFactory.sol is used to deploy Credit Accounts and managed the existing Credit Account queue. Credit Managers take accounts from the factory when a new account in Gearbox is opened and return them after the account is closed.
  2. ACL.sol is the main access control contract in the system. Contracts that inherit ACLTrait.sol use ACL.sol to determine access to configurator-only functions.
  3. AddressProvider.sol is used by other contracts in the system to determine the up-to-date addresses of core contracts, such as ACL, PriceOracle, GearToken, etc.
  4. ContractsRegister.sol contains a list of legitimate Gearbox Credit Managers and pools connected to the system.
  5. DataCompressor.sol is used to retrieve detailed data on particular Credit Managers and Credit Accounts.
  6. WETHGateway.sol is used to convert native ETH into WETH and vice versa.

Credit

This directory contains the contracts responsible for managing Credit Accounts, tracking Credit Account collateral and debt, facilitating interactions with third-party contracts, etc. These contracts encapsulate the primary functions of the protocol.

  1. CreditAccount.sol is a contract that acts as a user's smart wallet with out-of-the-box leverage. Credit Accounts store all of the user's collateral and borrowed assets, and can execute calls to third-party protocols routed to them by the user. In essence, a Credit Account acts as a substitute to the user's own EOA/Smart Wallet when interacting with protocols, but can also hold borrowed assets and only executes operations that are allowed by its respective Credit Manager.
  2. CreditManager.sol is the primary backend contract of the Gearbox protocol, responsible for opening and closing accounts, routing calls to third-party protocols on behalf of Credit Account owners, performing account health checks, and tracking the lists of allowed third-party contracts and collateral tokens. Credit Managers cannot be interacted with directly by users - this has to be done through either an adapter or Credit Facade.
  3. CreditFacade.sol is the main interface through which users interact with the Gearbox protocol. It allows users to manage their accounts and carry out multicalls, while performing necessary access and security checks for all operations.
  4. CreditConfigurator.sol is an admin contract used to configure various security properties of the connected Credit Manager / Credit Facade, such as allowing new collateral tokens and adapters, changing fee parameters, etc.

Factories

Contains factory contracts used for deployment and initial configuration of important system contracts.

  1. CreditManagerFactoryBase.sol deploys a Credit Manager / Credit Facade / Credit Configurator suite. A special _postInstall() function can be overridden to additionally configure adapters.
  2. GenesisFactory.sol deploys and sets up core contracts, such as ACL, AddressProvider, PriceOracle, etc.
  3. PoolFactory.sol deploys and configures the borrowing pool.

Multicall

Contains libraries that provide convenience functions to construct multicalls for target contracts using their normal function signatures. Since this repository is for core contracts, only contains a library for CreditFacade.

Oracles

Contains the base contracts Gearbox uses to evaluate assets and convert them to each other.

  1. PriceOracle.sol is a contract that serves both as a repository for price feeds, as well as the main interface through which other contracts query asset conversions.
  2. LPPriceFeed.sol is an abstract contract that all LP price feeds (such as Curve LP price feeds) derive from. It implements logic for bounding the LP token / share prices, to prevent manipulation.
  3. ZeroPriceFeed.sol is a dummy price feed used for assets with no reliable USD feeds. This allows to support operations with these assets (such as receiving them as farming rewards and selling) without exposing the protocol to risk.
  4. PriceFeedChecker.sol is a helper contract implementing sanity checks on values returned from price feeds.

Pool

Contains contracts related to passive LP side.

  1. PoolService.sol implements a borrowing pool that loans assets to Credit Managers to be used in Credit Accounts.
  2. LinearInterestRateModel.sol implements a function of interest rate from utilization.

Support

Contains contracts that assist data retrieval and configuration.

  1. ContractUpgrader is a helper contract used to manage configurator rights during initial contract deployment.
  2. PauseMulticall is used to pause multiple Credit Managers / pools within a single transaction.
  3. MultiCall is a read-only multicall contract by MakerDAO. See the corresponding repository.

Tokens

Contains contracts for special tokens used by the system.

  1. DieselToken implements an LP token for Gearbox borrowing pools.
  2. DegenNFT is a special non-transferrable NFT required to open a Credit Account if the system is in Leverage Ninja mode.
  3. GearToken is the contract for the Gearbox DAO GEAR token.
  4. PhantomERC20 is a special pseudo-ERC20 used to collateralize positions that are not represented as ERC20 on the third-party protocol side. Its balanceOf function is customized in concrete implementations to report, e.g., an amount staked in a particular farming pool.

Using contracts

Source contracts and their respective interfaces can be imported from an npm package @gearbox-protocol/core-v2, e.g.:

import {ICreditFacade, MultiCall} from '@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol';

contract MyContract {
  ICreditFacade creditFacade;

  function foo(MultiCall[] memory calls) {
    creditFacade.multicall(calls);
  }
}

Bug bounty

This repository is subject to the Gearbox bug bounty program, per the terms defined here.

Documentation

General documentation of the Gearbox Protocol can be found here. Developer documentation with more tech-related infromation about the protocol, contract interfaces, integration guides and audits is available on the Gearbox dev protal.

Testing

Setup

Running Forge unit tests requires Foundry. See Foundry Book for installation details.

Solidity unit tests

forge t

Licensing

The primary license for the Gearbox-protocol/core-v2 is the Business Source License 1.1 (BUSL-1.1), see LICENSE. The files which are NOT licensed under the BUSL-1.1 have appropriate SPDX headers.

Disclaimer

This application is provided "as is" and "with all faults." Me as developer makes no representations or warranties of any kind concerning the safety, suitability, lack of viruses, inaccuracies, typographical errors, or other harmful components of this software. There are inherent dangers in the use of any software, and you are solely responsible for determining whether this software product is compatible with your equipment and other software installed on your equipment. You are also solely responsible for the protection of your equipment and backup of your data, and THE PROVIDER will not be liable for any damages you may suffer in connection with using, modifying, or distributing this software product.

1.21.0

9 months ago

1.21.1

8 months ago

1.19.0-base.6

10 months ago

1.19.0-base.5

10 months ago

1.19.0-base.4

10 months ago

1.19.0-base.16

8 months ago

1.19.0-base.17

7 months ago

1.19.0-base.12

9 months ago

1.19.0-base.13

9 months ago

1.19.0-base.14

9 months ago

1.19.0-base.15

8 months ago

1.19.0-base.10

9 months ago

1.19.0-base.11

9 months ago

1.19.0-base.9

9 months ago

1.19.0-base.8

9 months ago

1.19.0-base.7

9 months ago

1.20.1

9 months ago

1.20.2

9 months ago

1.20.0

9 months ago

1.18.1

12 months ago

1.18.0

12 months ago

1.19.0-base.2

12 months ago

1.19.0-base.1

12 months ago

1.19.0

12 months ago

1.19.0-base.3

12 months ago

1.18.2-base.2

12 months ago

1.18.2-base.1

12 months ago

1.16.2

1 year ago

1.17.0

12 months ago

1.14.0

1 year ago

1.8.0-next.46

1 year ago

1.8.0-next.45

1 year ago

1.8.0-next.48

1 year ago

1.8.0-next.47

1 year ago

1.8.0-next.44

1 year ago

1.8.0-next.43

1 year ago

1.8.0-next.49

1 year ago

1.8.0-next.50

1 year ago

1.15.0

1 year ago

1.9.1

1 year ago

1.9.0

1 year ago

1.10.0

1 year ago

1.12.1

1 year ago

1.12.0

1 year ago

1.16.1

1 year ago

1.16.0

1 year ago

1.8.0

1 year ago

1.11.0

1 year ago

1.13.0

1 year ago

1.8.0-next.42

1 year ago

1.8.0-next.41

1 year ago

1.8.0-next.40

1 year ago

1.8.0-next.35

1 year ago

1.8.0-next.37

1 year ago

1.8.0-next.36

1 year ago

1.8.0-next.39

1 year ago

1.8.0-next.38

1 year ago

1.8.0-next.34

1 year ago

1.8.0-next.31

1 year ago

1.8.0-next.30

1 year ago

1.8.0-next.33

1 year ago

1.8.0-next.32

1 year ago

1.8.0-next.13

1 year ago

1.8.0-next.12

1 year ago

1.8.0-next.15

1 year ago

1.8.0-next.14

1 year ago

1.8.0-next.11

1 year ago

1.8.0-next.10

1 year ago

1.8.0-next.17

1 year ago

1.8.0-next.16

1 year ago

1.8.0-next.19

1 year ago

1.8.0-next.18

1 year ago

1.8.0-next.24

1 year ago

1.8.0-next.23

1 year ago

1.8.0-next.26

1 year ago

1.8.0-next.25

1 year ago

1.8.0-next.20

1 year ago

1.8.0-next.22

1 year ago

1.8.0-next.21

1 year ago

1.8.0-next.8

1 year ago

1.8.0-next.7

1 year ago

1.8.0-next.9

1 year ago

1.8.0-next.28

1 year ago

1.8.0-next.27

1 year ago

1.8.0-next.6

1 year ago

1.8.0-next.29

1 year ago

1.7.2

1 year ago

1.8.0-next.4

1 year ago

1.8.0-next.3

1 year ago

1.8.0-next.5

1 year ago

1.8.0-next.2

1 year ago

1.8.0-next.1

1 year ago

1.7.1

1 year ago

1.7.0

1 year ago

1.6.1

1 year ago

1.6.0

1 year ago

1.5.0

1 year ago

1.4.0

1 year ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

0.0.12

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

1.0.0

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago