Gelato-automations/contracts/interfaces/InstaDapp/connectors/IConnectGelatoProviderPayment.sol

13 lines
277 B
Solidity
Raw Normal View History

2020-10-30 17:35:11 +00:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
interface IConnectGelatoProviderPayment {
function payProvider(
address _provider,
address _token,
uint256 _amt,
uint256 _getId,
uint256 _setId
) external payable;
}