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
=WARNING REPORT==== 3-May-2016::11:20:34 === | |
Non-AMQP exit reason '{function_clause, | |
[{rabbit_delayed_message_utils,get_msg, | |
[{delivery,false,<0.1621.0>, | |
{basic_message, | |
{resource,<<"/">>,exchange,<<"delayed_exchange">>}, | |
[<<"delayed_task">>], | |
{content,60, | |
{'P_basic',<<"application/json">>,<<"utf-8">>, | |
[{<<"x-delay">>,signedint,5000}], |
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
template<class... Args> | |
std::pair<TransportType *, bool> get_or_create( | |
SocketAddress const &addr, | |
Args&&... args | |
) { | |
auto [iter, res] = transport_map.try_emplace( | |
addr, | |
std::forward<Args>(args)... | |
); | |
return std::make_pair(&iter->second, res); |
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
import { ethers, providers, Wallet } from "ethers"; | |
import { FlashbotsBundleProvider } from "@flashbots/ethers-provider-bundle"; | |
import axios from 'axios'; | |
async function fetchProof(address) { | |
let resp = await axios({ | |
method: 'get', | |
url: 'https://api.otherside.xyz/proofs/'+address, | |
}); | |
return resp.data; |
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
simple-taiko-node-taiko_client_driver-1 | INFO [10-30|08:59:13.386] Anchor arguments l1Hash=68e0c8..63e58e signalRoot=9c1056..6b8b50 l1Height=4,592,445 gasUsed=127,856 | |
simple-taiko-node-taiko_client_driver-1 | INFO [10-30|08:59:13.394] "🔗 New L2 block inserted" blockID=930,176 height=930,176 hash=f29fc6..d05874 latestVerifiedBlockID=930,239 latestVerifiedBlockHash=1e4c68..ee683f transactions=1 baseFee=1 withdrawals=0 | |
simple-taiko-node-taiko_client_driver-1 | INFO [10-30|08:59:13.395] New BlockProposed event L1Height=4,592,447 L1Hash=ec8e70..1c8e0a BlockID=930,177 Removed=false | |
simple-taiko-node-taiko_client_driver-1 | INFO [10-30|08:59:13.396] Transaction list is valid blockID=930,177 | |
simple-taiko-node-taiko_client_driver-1 | INFO [10-30|08:59:13.396] Validate transactions list blockID=930,177 hint=1 invalidTxIndex=0 | |
simple-taiko-node-taiko_client_driver-1 | INFO [10-30 |
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
#include <icicle/api/bn254.h> | |
// FIXME: This uses std::string but does not import | |
#include <icicle/device.h> | |
#include <icicle/errors.h> | |
#include <icicle/msm.h> | |
#include <icicle/runtime.h> | |
int main() { | |
eIcicleError result = icicle_load_backend_from_env_or_default(); | |
if (result != eIcicleError::SUCCESS) { |
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
#include <icicle/api/bn254.h> | |
#include <icicle/backend/msm_config.h> | |
#include <icicle/device.h> | |
#include <icicle/errors.h> | |
#include <icicle/msm.h> | |
#include <icicle/runtime.h> | |
#include <filesystem> | |
#include <fstream> |