Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename v2 option 1 a couple additional text instances #416

Merged
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
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
Loading