I hereby claim:
- I am mdehoog on github.
- I am mdehoog (https://keybase.io/mdehoog) on keybase.
- I have a public key ASCbDfTCWwhQ--CS71TjD_M-V5fTu966pjNgRDwkfTgaGAo
To claim this, I am signing this object:
package main | |
import ( | |
"bytes" | |
"compress/zlib" | |
"context" | |
"encoding/binary" | |
"fmt" | |
"log" | |
"math/big" |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"time" | |
"github.com/ethereum/go-ethereum/cmd/utils" | |
"github.com/ethereum/go-ethereum/common" | |
"github.com/ethereum/go-ethereum/core/rawdb" |
package fastlz | |
// based on https://github.com/Vectorized/solady/blob/5315d937d79b335c668896d7533ac603adac5315/js/solady.js | |
func FlzDecompress(ib []byte) []byte { | |
j := uint32(0) | |
ob := make([]byte, 0, 2*len(ib)) | |
for i := uint32(0); i < uint32(len(ib)); { | |
t := uint32(ib[i]) >> 5 | |
if t == 0 { |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.15; | |
/// @title Compression | |
/// @notice Compression is a library containing compression utilities. | |
library Compression { | |
/// @notice Version of https://github.com/Vectorized/solady/blob/main/src/utils/LibZip.sol | |
/// that only returns the length of the data if it were to be compressed. This saves | |
/// gas over actually compressing the data, given we only need the length. | |
/// @dev Returns the length of the compressed data. |
package main | |
import ( | |
"context" | |
"errors" | |
"fmt" | |
"github.com/ethereum-optimism/optimism/op-node/rollup/derive" | |
"github.com/ethereum/go-ethereum/common" | |
"github.com/ethereum/go-ethereum/core/types" |
package main | |
import ( | |
"context" | |
"fmt" | |
libp2pcore "github.com/libp2p/go-libp2p-core" | |
"github.com/libp2p/go-libp2p-core/peer" | |
"github.com/pkg/errors" | |
"github.com/prysmaticlabs/prysm/beacon-chain/p2p" | |
"github.com/prysmaticlabs/prysm/beacon-chain/sync" |
package main | |
import ( | |
"context" | |
"github.com/ethereum/go-ethereum/accounts/keystore" | |
"github.com/ethereum/go-ethereum/common" | |
"github.com/ethereum/go-ethereum/core/types" | |
"github.com/ethereum/go-ethereum/ethclient" | |
"github.com/holiman/uint256" | |
"github.com/protolambda/ztyp/view" |
I hereby claim:
To claim this, I am signing this object:
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
}); |