6 lines
153 B
Solidity
6 lines
153 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity ^0.8.9;
|
|
|
|
interface RelayerRegistry {
|
|
function setMinStakeAmount(uint256 minAmount) external;
|
|
} |