We can't make this file beautiful and searchable because it's too large.
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
13911.1 swader | |
13911.1 sorpaas | |
13911.1 s1na | |
13911.1 rjl493456442 | |
13911.1 qd-qd | |
13911.1 protolambda | |
13911.1 paulrberg | |
13911.1 noahzinsmeister | |
13911.1 neurone | |
13911.1 moodysalem |
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
#!/usr/bin/env python3 | |
import sys | |
import json | |
import os | |
def find_account_inclusion_object(eligibles, eth_address): | |
for account in eligibles: | |
if account["identity"].lower() == eth_address.lower(): | |
return account | |
return None |
We can't make this file beautiful and searchable because it's too large.
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
address,uni,is_lp,is_user,is_socks | |
0x0000000000000000000000000000000000000000,400,True,True,False | |
0x0000000000000000000000000000000000000001,5988.626491,True,True,False | |
0x0000000000000000000000000000000000001337,400.010855,True,True,False | |
0x000000000000000000000000000000000000dEaD,49560.985333,True,True,False | |
0x000000000000006F6502B7F2bbaC8C30A3f67E9a,400,False,True,False | |
0x0000000000000D9054F605cA65A2647c2B521422,487.471197,True,True,False | |
0x0000000000001DD36b0C6318894ac98751A8768E,400,False,True,False | |
0x00000000000043DC09b2d31827CB23F414E1Fa3D,400,False,True,False | |
0x00000000000080C886232E9b7EBBFb942B5987AA,1133.399093,True,True,False |
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
/** | |
*Submitted for verification at Etherscan.io on 2020-09-16 | |
*/ | |
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity =0.6.11; | |
/** | |
* @dev Interface of the ERC20 standard as defined in the EIP. | |
*/ |