Open this in Axiom REPL →
This file contains hidden or 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
use ethers::prelude::*; | |
use eyre::Result; | |
use gas_oracle::{ | |
EthGasStation, Etherchain, Etherscan, | |
GasCategory::{Fast, Fastest, SafeLow, Standard}, | |
GasOracle, | |
}; | |
#[tokio::main] | |
async fn main() -> Result<()> { |
Ko has different build flags to change the docker image repo path: https://ko.build/reference/ko_build/
We have an example repo with dir cmd/hello-k8s/main.go
.
Realized options and results are already described in https://ko.build/configuration/#naming-images
- no flags
This file contains hidden or 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 ( | |
"encoding/hex" | |
"encoding/json" | |
"fmt" | |
"github.com/Layr-Labs/eigenda/api/clients/v2/coretypes" | |
certbindings "github.com/Layr-Labs/eigenda/contracts/bindings/IEigenDACertTypeBindings" | |
"github.com/ethereum/go-ethereum/rlp" |
OlderNewer