-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from KintoXYZ/increase-test-coverage-3
increase coverage
- Loading branch information
Showing
41 changed files
with
1,556 additions
and
852 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity ^0.8.18; | ||
|
||
import "../../src/wallet/KintoWallet.sol"; | ||
import "./utils/MigrationHelper.sol"; | ||
|
||
// NOTE: this is a sample migration script with the new refactors | ||
// contract KintoMigration22DeployScript is MigrationHelper { | ||
// using ECDSAUpgradeable for bytes32; | ||
|
||
// function run() public { | ||
// run2(); | ||
|
||
// // generate bytecode for KintoWalletV5 | ||
// bytes memory bytecode = abi.encodePacked( | ||
// type(KintoWalletV5).creationCode, | ||
// abi.encode( | ||
// _getChainDeployment("EntryPoint"), | ||
// IKintoID(_getChainDeployment("KintoID")), | ||
// IKintoAppRegistry(_getChainDeployment("KintoAppRegistry")) | ||
// ) | ||
// ); | ||
|
||
// // upgrade KintoWallet to V5 | ||
// deployAndUpgrade("KintoWallet", "V5", bytecode); | ||
// } | ||
// } |
Oops, something went wrong.