This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"crypto/ecdsa" | |
"encoding/json" | |
"fmt" | |
"math/big" | |
"os" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.9; | |
import {Suave} from "../../suave-geth/suave/sol/libraries/Suave.sol"; | |
// Uncomment this line to use console.log | |
import "forge-std/console.sol"; | |
contract Pepc { | |
string public boostRelayUrl = "https://relay-goerli.flashbots.net"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.8; | |
import "../../suave-geth/suave/sol/libraries/Suave.sol"; | |
contract OFAPrivate { | |
address[] public addressList = [0xC8df3686b4Afb2BB53e60EAe97EF043FE03Fb829]; | |
// Struct to hold hint-related information for an order. | |
struct HintOrder { |