init
Signed-off-by: T-Hax <>
This commit is contained in:
commit
8f085566cc
69 changed files with 19692 additions and 0 deletions
7
contracts/relayer-registry/interfaces/IENS.sol
Normal file
7
contracts/relayer-registry/interfaces/IENS.sol
Normal file
|
@ -0,0 +1,7 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
|
||||
pragma solidity ^0.6.12;
|
||||
|
||||
interface IENS {
|
||||
function owner(bytes32 node) external view returns (address);
|
||||
}
|
11
contracts/relayer-registry/interfaces/ITornadoGovernance.sol
Normal file
11
contracts/relayer-registry/interfaces/ITornadoGovernance.sol
Normal file
|
@ -0,0 +1,11 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
|
||||
pragma solidity ^0.6.12;
|
||||
|
||||
import "tornado-governance/contracts/v2-vault-and-gas/interfaces/ITornadoVault.sol";
|
||||
|
||||
interface ITornadoGovernance {
|
||||
function lockedBalance(address account) external view returns (uint256);
|
||||
|
||||
function userVault() external view returns (ITornadoVault);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue