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
| address | type | created | updated | last_block_seen | first_block_seen | |
|---|---|---|---|---|---|---|
| 0xd969009f484bf152f3f9314092e283d22c0c8c34 | EOA | 2023-08-01 03:01:17.057 | 2023-08-01 03:01:17.057 | 10929655 | 10929325 |
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
| address | type | name | symbol | decimals | total_supply | circulating_supply | first_block_seen | created | updated | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0xe9e7cea3dedca5984780bafc599bd69add087d56 | NATIVE | BUSD Token | BUSD | 18 | 1250999016.256384 | NULL | 128919 | 2023-07-11 11:34:46.771 | 2023-07-11 11:34:46.771 | |
| 0xb0557906c617f0048a700758606f64b33d0c41a6 | ERC20 | Zepe.io | Zepe.io | 18 | 1000000000 | NULL | 10730661 | 2023-07-31 22:54:18.512 | 2023-07-31 22:54:18.512 | |
| 0xc33fc11b55465045b3f1684bde4c0aa5c5f40124 | ERC20 | BNBw.io | BNBw | 9 | 1000000000000 | NULL | 10249773 | 2023-07-30 05:47:52.911 | 2023-07-30 05:47:52.911 |
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 5.
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
| "hash","log_index","amount","action","block_number","block_timestamp","to_address","from_address","token","value" | |
| "0x1bca9762154ef7d2cb36bc9744dfb9dc87bac52d13352ed2058420207e4ea18e",273,"103.6895720001174","transfer","10929378","2021-09-15 07:17:29","0xc590175e458b83680867afd273527ff58f74c02b","0xd969009f484bf152f3f9314092e283d22c0c8c34","0xe9e7cea3dedca5984780bafc599bd69add087d56","0" | |
| "0x1bca9762154ef7d2cb36bc9744dfb9dc87bac52d13352ed2058420207e4ea18e",275,"102.78228824511638","transfer","10929378","2021-09-15 07:17:29","0x51e6d27fa57373d8d4c256231241053a70cb1d93","0xc590175e458b83680867afd273527ff58f74c02b","0xe9e7cea3dedca5984780bafc599bd69add087d56","0" | |
| "0x1bca9762154ef7d2cb36bc9744dfb9dc87bac52d13352ed2058420207e4ea18e",277,"0.2451511222142641","transfer","10929378","2021-09-15 07:17:29","0xdef1c0ded9bec7f1a1670819833240f027b25eff","0x51e6d27fa57373d8d4c256231241053a70cb1d93","0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c","0" | |
| "0x1bca9762154ef7d2cb36bc9744dfb9dc87bac52d13352ed2058420207e4ea18e",281,"0.9072 |
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
| balance | block_number | token | wallet | |
|---|---|---|---|---|
| 0 | 10929325 | 0xe9e7cea3dedca5984780bafc599bd69add087d56 | 0xd969009f484bf152f3f9314092e283d22c0c8c34 | |
| 750000 | 10929375 | 0xb0557906c617f0048a700758606f64b33d0c41a6 | 0xd969009f484bf152f3f9314092e283d22c0c8c34 | |
| 21131181 | 10929655 | 0xc33fc11b55465045b3f1684bde4c0aa5c5f40124 | 0xd969009f484bf152f3f9314092e283d22c0c8c34 |
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
| address | type | created | updated | last_block_seen | first_block_seen | |
|---|---|---|---|---|---|---|
| 0xc33fc11b55465045b3f1684bde4c0aa5c5f40124 | CONTRACT | 2023-07-30 06:02:42.84 | 2023-07-30 06:02:42.84 | 24441120 | 10252849 |
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
| pragma solidity 0.8.4; | |
| // SPDX-License-Identifier: Unlicensed | |
| /* | |
| #NFTeaseToken features: | |
| 2% fee auto add to the liquidity pool to locked forever when selling | |
| 2% fee auto distribute to all holders | |
| 1% fee to admin for continuation of platform | |
| 50% Supply is burned at start. | |
| */ |
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
| const origFetch = window.fetch; | |
| window.fetch = (url, init, ...args) => { | |
| if (typeof url === "string") { | |
| if (url.includes("/access_token")) { | |
| url = url.replace("player_type=site", "player_type=site"); | |
| } else if ( | |
| url.includes("/gql") && | |
| init && | |
| typeof init.body === "string" && | |
| init.body.includes("PlaybackAccessToken") |