-
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.
- Loading branch information
1 parent
3ccab8f
commit b6d3d16
Showing
4 changed files
with
142 additions
and
71 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 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,17 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity ^0.8.18; | ||
|
||
import "../../src/interfaces/IKintoEntryPoint.sol"; | ||
import "../../src/interfaces/IKintoID.sol"; | ||
import "../../src/interfaces/IKintoAppRegistry.sol"; | ||
|
||
import {KintoAppRegistry} from "../../src/apps/KintoAppRegistry.sol"; | ||
|
||
// Harness contract to expose internal functions for testing. | ||
contract KintoAppRegistryHarness is KintoAppRegistry { | ||
constructor(IKintoWalletFactory _walletFactory) KintoAppRegistry(_walletFactory) {} | ||
|
||
function exposed_baseURI() public pure returns (string memory) { | ||
return _baseURI(); | ||
} | ||
} |
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