Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
GalloDaSballo committed Oct 10, 2024
2 parents 7e98f34 + 7f93a3f commit 99b737d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ForwardBribe.sol
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import {IERC20} from "openzeppelin-contracts/contracts/interfaces/IERC20.sol";
import {SafeERC20} from "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";

import {BribeInitiative} from "./BribeInitiative.sol";

contract ForwardBribe is BribeInitiative {
using SafeERC20 for IERC20;

address public immutable receiver;

constructor(address _governance, address _bold, address _bribeToken, address _receiver)
Expand Down

0 comments on commit 99b737d

Please sign in to comment.