Skip to content

Instantly share code, notes, and snippets.

View storming0x's full-sized avatar

storm0x storming0x

View GitHub Profile
@storming0x
storming0x / check_stark.py
Last active February 14, 2024 18:03
check_stark.py
import os
import json
# Path to the directory containing JSON files
json_directory = "eth"
# List of identity strings to check against
identities_to_check = [
"address1",
"address2",

Keybase proof

I hereby claim:

  • I am storming0x on github.
  • I am storm0x (https://keybase.io/storm0x) on keybase.
  • I have a public key ASDyCqbBmMVbYmA-iVjRORYLkFFDO3Em3msuEcj5XbNDOwo

To claim this, I am signing this object:

Contributing to Yearn

This is a living guide that defines a development process for The Yearn.finance Core Protocol.

We want to make contributing to this project as easy and transparent as possible, whether it's:

  • Reporting a bug
  • Discussing the current state of the code
  • Submitting a fix
  • Proposing new features
  • Becoming a maintainer
@storming0x
storming0x / VaultBatchEarn.sol
Last active August 27, 2020 23:45
VaultBatchEarnV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
pragma experimental ABIEncoderV2;
interface VaultLike {
function available() external view returns (uint);
function earn() external;
}
contract Context {