mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
14 lines
327 B
Solidity
14 lines
327 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity 0.7.4;
|
|
|
|
import {ConnectorInterface} from "../IInstaDapp.sol";
|
|
|
|
interface IConnectGelatoExecutorPayment is ConnectorInterface {
|
|
function payExecutor(
|
|
address _token,
|
|
uint256 _amt,
|
|
uint256 _getId,
|
|
uint256 _setId
|
|
) external payable;
|
|
}
|