Skip to content

Commit

Permalink
Merge pull request #416 from morpho-org/style/rename-v2-option-1-text…
Browse files Browse the repository at this point in the history
…-instances

Rename v2 option 1 a couple additional text instances
  • Loading branch information
MathisGD authored Mar 5, 2024
2 parents 0129e59 + e3803d9 commit b3a3d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Each Bundler is a domain-specific abstract layer of contract that implements som

Some chain-specific domains are also scoped to the chain-specific folder, because they are not expected to be used on any other chain (e.g. DAI and its specific `permit` function is only available on Ethereum - see [`EthereumPermitBundler`](./src/ethereum/EthereumPermitBundler.sol)).

User-end bundlers are provided in each chain-specific folder, instanciating all the intermediary domain-specific bundlers and associated parameters (such as chain-specific protocol addresses, e.g. [`EthereumBundler`](./src/ethereum/EthereumBundler.sol)).
User-end bundlers are provided in each chain-specific folder, instanciating all the intermediary domain-specific bundlers and associated parameters (such as chain-specific protocol addresses, e.g. [`EthereumBundlerV2`](./src/ethereum/EthereumBundlerV2.sol)).

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion test/hardhat/EthereumBundler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ describe("EthereumBundler", () => {
hre.tracer.nameTags[loanAddress] = "Loan";
hre.tracer.nameTags[oracleAddress] = "Oracle";
hre.tracer.nameTags[irmAddress] = "AdaptiveCurveIrm";
hre.tracer.nameTags[bundlerAddress] = "EthereumBundler";
hre.tracer.nameTags[bundlerAddress] = "EthereumBundlerV2";
});

it("should simulate gas cost [morpho-supplyCollateral+borrow]", async () => {
Expand Down

0 comments on commit b3a3d50

Please sign in to comment.