Prechádzať zdrojové kódy

(add):添加0xx.py文件

windowdog 5 mesiacov pred
rodič
commit
4ddf94e075

+ 30 - 0
src/code/000.py

@@ -0,0 +1,30 @@
+import pandas as pd
+
+# 假设我们有以下数据
+data = {'id': ['A', 'A', 'B', 'B', 'B'],
+        'from': ['X', 'Y', 'Z', 'X', 'Y'],
+        'to': ['Y', 'Z', 'X', 'Y', 'Z']}
+df = pd.DataFrame(data)
+
+# 计算 from_counts
+from_counts = df.groupby('from')['id'].nunique()
+
+# 计算 to_counts
+to_counts = df.groupby('to')['id'].nunique()
+
+print("from_counts:")
+print(from_counts)
+print("to_counts:")
+print(to_counts)
+# 创建一个包含值的 DataFrame
+df_values = pd.DataFrame({'value': list(set(df['from'].unique()) | set(df['to'].unique()))})
+
+# 将 from_counts 和 to_counts 合并到 df_values 中
+df_values['from_counts'] = df_values['value'].map(from_counts)
+df_values['to_counts'] = df_values['value'].map(to_counts)
+# df_values sort by value
+df_values = df_values.sort_values(by='value')
+# df_values['from_counts'] = df_values['from_counts'].fillna(0)
+      
+
+print(df_values)

+ 1 - 0
src/code/009_get_ori_token_transfer_by_etherscan.py

@@ -207,6 +207,7 @@ def request_onetime(req_dict_total, key_idx, write_tokens_path,
             return
 
         add_df = add_df[["blockNumber", "timeStamp", "hash","from","to","value"]]
+        
         # 如果没有这个csv文件 直接写入
         if not write_tokens_path_name.exists():
             print(f"loop={loop} {cur_conadd} 第一次文件\n", end='')

+ 10 - 4
src/code/010_get_token_transfer.py

@@ -17,7 +17,7 @@ print(f"{'{:<6}'.format('ENTER')} {baseclass.scriptfilename} ----------------NOT
  
 arr_ori_contracttokentx_file = [file for file in os.listdir(baseclass.ori_contracttokentx_path) if file.endswith(".csv")]
  
-set_token = set()
+ 
 for file in arr_ori_contracttokentx_file:
     tokenaddress = file.split("_")[0]
     if tokenaddress =="":
@@ -29,11 +29,17 @@ for file in arr_ori_contracttokentx_file:
     tokenaddress = file.split("_")[0]
     if tokenaddress =="":
         continue
-    df =pd.read_csv(baseclass.ori_contracttokentx_path/f"{file}" , dtype=object)
+    
+    df =pd.read_csv(baseclass.ori_contracttokentx_path/f"{file}" , dtype=object)  
     df =df.astype({
         "blockNumber":int,
         "timeStamp":int, 
     })
+    
+    df =df[~ df["to"].isin( ["0x0000000000000000000000000000000000000000","0x000000000000000000000000000000000000dead"] )].reset_index(drop=True)
+    
+    
+    
     if not os.path.exists(baseclass.contracttokentx_path / f"{tokenaddress}.csv" ):
         df.to_csv(
                  baseclass.contracttokentx_path / f"{tokenaddress}.csv",  mode='w', index=False)
@@ -41,8 +47,8 @@ for file in arr_ori_contracttokentx_file:
         df.to_csv(
                 baseclass.contracttokentx_path / f"{tokenaddress}.csv",  mode='a', header=False, index=False)
             
- 
- 
+
+  
  
 print(f"{'{:<6}'.format('END')} {baseclass.scriptfilename} ----------------NOTE-----------NOTE---------------")
 

+ 60 - 0
src/code/011_get_dalao_buysell_count.py

@@ -0,0 +1,60 @@
+
+from base_class import BaseVariableFunction
+from base_class import *
+
+from base_library import BaseLibrary
+old_print = print
+
+
+def timestamped_print(*args, **kwargs):
+    old_print(datetime.datetime.utcnow().replace(
+        microsecond=0), *args, **kwargs)
+
+
+print = timestamped_print
+baseclass = BaseVariableFunction(__file__)
+
+baselibrary = BaseLibrary()
+baseclass.makedirpath(baseclass.dalao_buysell_count_path)
+print('\n'*5)
+print(f"{'{:<6}'.format('ENTER')} {baseclass.scriptfilename} ----------------NOTE-----------NOTE---------------")
+            
+arr_token_transfer_file = [file for file in os.listdir(baseclass.contracttokentx_path) if file.endswith(".csv")]
+
+
+for file in arr_token_transfer_file:
+    tokenaddress = file.replace(".csv","")
+    df =pd.read_csv(baseclass.contracttokentx_path/f"{file}" , dtype=object)  
+    # df.groupby(by=["hash"] ).apply(lambda gdf: func( gdf=gdf ))
+    sell_df = df.groupby('from')['hash'].nunique()
+    # 计算 buy_df
+    buy_df = df.groupby('to')['hash'].nunique()
+    
+    dalao_count_df = pd.DataFrame({'dalaoaddress': list(set(df['from'].unique()) | set(df['to'].unique()))})
+
+    # 将 sell_df 和 buy_df 合并到 dalao_count_df 中
+    dalao_count_df['buy'] = dalao_count_df['dalaoaddress'].map(buy_df)
+    dalao_count_df['sell'] = dalao_count_df['dalaoaddress'].map(sell_df)
+    dalao_count_df['buy'] = dalao_count_df['buy'].fillna(0)
+    dalao_count_df['sell'] = dalao_count_df['sell'].fillna(0)
+    
+    dalao_count_df = dalao_count_df.sort_values(by='dalaoaddress')
+    dalao_count_df =dalao_count_df [~dalao_count_df["dalaoaddress"].isin(baselibrary.arr_router)].reset_index(drop=True)
+        
+ 
+    
+    dalao_count_df.to_excel(baseclass.dalao_buysell_count_path / f"{tokenaddress}.xlsx",index=False)
+    
+ 
+         
+         
+             
+
+  
+             
+
+  
+ 
+ 
+print(f"{'{:<6}'.format('END')} {baseclass.scriptfilename} ----------------NOTE-----------NOTE---------------")
+

+ 60 - 0
src/code/012_get_dalao_ori_merge.py

@@ -0,0 +1,60 @@
+
+from base_class import BaseVariableFunction
+from base_class import *
+
+from base_library import BaseLibrary
+old_print = print
+
+
+def timestamped_print(*args, **kwargs):
+    old_print(datetime.datetime.utcnow().replace(
+        microsecond=0), *args, **kwargs)
+
+
+print = timestamped_print
+baseclass = BaseVariableFunction(__file__)
+
+ 
+baseclass.makedirpath(baseclass.dalao_merge_path)
+print('\n'*5)
+print(f"{'{:<6}'.format('ENTER')} {baseclass.scriptfilename} ----------------NOTE-----------NOTE---------------")
+            
+arr_token_file = [file for file in os.listdir(baseclass.dalao_buysell_count_path) if file.endswith(".xlsx")]
+# df =None
+df =pd.DataFrame()
+
+for file in arr_token_file:
+    tokenaddress = file.replace(".xlsx","")
+    dalao_count_df =pd.read_excel (baseclass.dalao_buysell_count_path / f"{file}",dtype=object)
+    dalao_count_df["tokenaddress"] = tokenaddress
+    df = pd.concat([df,dalao_count_df])
+df =df.astype({
+    "buy":int,
+    "sell":int,
+})
+many_buy_txns_mask = (df["buy"]>=15  )
+zero_buy_mask = (df["buy"]==0)
+drop_mask = (many_buy_txns_mask | zero_buy_mask)
+
+df=df[~drop_mask].reset_index(drop=True)
+
+df["eth"] = -1
+df["weth"] = -1
+df["usdt"] = -1
+df["usdc"] = -1
+df["iscontract"] = -1
+
+df.to_excel(baseclass.dalao_merge_path/"ori_merge.xlsx",index=False)
+
+    
+    
+
+
+  
+             
+
+  
+ 
+ 
+print(f"{'{:<6}'.format('END')} {baseclass.scriptfilename} ----------------NOTE-----------NOTE---------------")
+

+ 16 - 0
src/code/013_get_dalao_balance.py

@@ -0,0 +1,16 @@
+
+
+
+
+
+如果是在合约外部判断,则可以使用web3.eth.getCode(),或者是对应的JSON-RPC方法eth_getcode。
+getCode()用来获取参数地址所对应合约的代码,如果参数是一个外部账号地址,则返回"0x";如果参数是合约,则返回对应的字节码,如下所示:
+
+web3.eth.getCode("0xa5Acc472597C1e1651270da9081Cc5a0b38258E3")
+"0x"
+
+web3.eth.getCode("0xd5677cf67b5aa051bb40496e68ad359eb97cfbf8")
+
+"0x600160008035811a818181146012578301005b601b6001356025565b8060005260206000f25b600060078202905091905056"
+
+这样我们就可以通过getCode()的内容判断是哪一种地址了。

+ 3 - 19
src/code/base_class.py

@@ -40,6 +40,8 @@ class BaseVariableFunction:
         self.ori_contracttokentx_path = self.librarydata_path / 'ori_contracttokentx/'
         self.contracttokentx_path = self.librarydata_path / 'contracttokentx/'
         self.base_library_file = self.code_path / 'base_library.json'
+        self.dalao_buysell_count_path = self.librarydata_path / 'dalao_buysell_count/'
+        self.dalao_merge_path = self.librarydata_path / 'dalao_merge/'
    
 
      
@@ -77,25 +79,7 @@ class BaseVariableFunction:
  
             
         ]
-
-    def getbiaoshipath(self, biaoshi):
-        self.biaoshi_totalrelpersonadd_path = self.totalrelpersonadd_path / biaoshi
-        self.biaoshi_gredalao3tran_total_path = self.gredalao3tran_total_path / biaoshi
-        self.biaoshi_analysisST_path = self.analysisST_path / biaoshi
-        self.biaoshi_mayqunfa_path = self.mayqunfa_path / biaoshi
-        self.biaoshi_relpersonadd_path = self.relpersonadd_path / biaoshi
-        self.biaoshi_configreladdST_path = self.configreladdST_path / biaoshi
-        self.biaoshi_profitconfigreladdST_path = self.profitconfigreladdST_path / biaoshi
-        self.biaoshi_bigamountprofitconfigreladdST_path = self.bigamountprofitconfigreladdST_path / biaoshi
-
-        self.biaoshi_exmanyadds_path = self.exmanyadds_path / biaoshi
-        self.biaoshi_profitrelpersonadd_path = self.profitrelpersonadd_path / biaoshi
-        self.biaoshi_Analysis_path = self.Analysis_path / biaoshi
-        self.biaoshi_filter_copy_path = self.Analysis_path / biaoshi/'filteradd'
-        self.biaoshi_temporiginalrecietpt_path = self.temporiginalrecietpt_path / biaoshi
-        self.biaoshi_tempdecrecietpt_path = self.tempdecrecietpt_path / biaoshi
-        # self.biaoshi_nover_tokenlp_abi_path = self.nover_tokenlp_abi_path/biaoshi
-
+ 
     def makedirpath(self, folder):
         pathlib.Path(folder).mkdir(exist_ok=True)
 

+ 1 - 1623
src/code/base_library.json

@@ -15,936 +15,10 @@
         "0x0000000000000000000000000000000000000000",
         "0x000000000000000000000000000000000000dead"
     ],
-    "wbnb_abi": [
-        {
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "logic",
-                    "type": "address"
-                },
-                {
-                    "internalType": "address",
-                    "name": "admin",
-                    "type": "address"
-                },
-                {
-                    "internalType": "bytes",
-                    "name": "data",
-                    "type": "bytes"
-                }
-            ],
-            "stateMutability": "nonpayable",
-            "type": "constructor"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": false,
-                    "internalType": "address",
-                    "name": "previousAdmin",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "internalType": "address",
-                    "name": "newAdmin",
-                    "type": "address"
-                }
-            ],
-            "name": "AdminChanged",
-            "type": "event"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "implementation",
-                    "type": "address"
-                }
-            ],
-            "name": "Upgraded",
-            "type": "event"
-        },
-        {
-            "stateMutability": "payable",
-            "type": "fallback"
-        },
-        {
-            "inputs": [],
-            "name": "admin",
-            "outputs": [
-                {
-                    "internalType": "address",
-                    "name": "",
-                    "type": "address"
-                }
-            ],
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "newAdmin",
-                    "type": "address"
-                }
-            ],
-            "name": "changeAdmin",
-            "outputs": [],
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "inputs": [],
-            "name": "implementation",
-            "outputs": [
-                {
-                    "internalType": "address",
-                    "name": "",
-                    "type": "address"
-                }
-            ],
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "newImplementation",
-                    "type": "address"
-                }
-            ],
-            "name": "upgradeTo",
-            "outputs": [],
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "newImplementation",
-                    "type": "address"
-                },
-                {
-                    "internalType": "bytes",
-                    "name": "data",
-                    "type": "bytes"
-                }
-            ],
-            "name": "upgradeToAndCall",
-            "outputs": [],
-            "stateMutability": "payable",
-            "type": "function"
-        },
-        {
-            "stateMutability": "payable",
-            "type": "receive"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "from",
-                    "type": "address"
-                },
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "to",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "internalType": "uint256",
-                    "name": "value",
-                    "type": "uint256"
-                }
-            ],
-            "name": "Transfer",
-            "type": "event"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "owner",
-                    "type": "address"
-                },
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "spender",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "internalType": "uint256",
-                    "name": "value",
-                    "type": "uint256"
-                }
-            ],
-            "name": "Approval",
-            "type": "event"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "name": "from",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "name": "value",
-                    "type": "uint256"
-                }
-            ],
-            "name": "Withdrawal",
-            "type": "event"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "name": "to",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "name": "value",
-                    "type": "uint256"
-                }
-            ],
-            "name": "Deposit",
-            "type": "event"
-        }
-    ],
-    "usdt_abi": [
-        {
-            "inputs": [],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "constructor"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "owner",
-                    "type": "address"
-                },
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "spender",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "internalType": "uint256",
-                    "name": "value",
-                    "type": "uint256"
-                }
-            ],
-            "name": "Approval",
-            "type": "event"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "previousOwner",
-                    "type": "address"
-                },
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "newOwner",
-                    "type": "address"
-                }
-            ],
-            "name": "OwnershipTransferred",
-            "type": "event"
-        },
-        {
-            "anonymous": false,
-            "inputs": [
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "from",
-                    "type": "address"
-                },
-                {
-                    "indexed": true,
-                    "internalType": "address",
-                    "name": "to",
-                    "type": "address"
-                },
-                {
-                    "indexed": false,
-                    "internalType": "uint256",
-                    "name": "value",
-                    "type": "uint256"
-                }
-            ],
-            "name": "Transfer",
-            "type": "event"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "_decimals",
-            "outputs": [
-                {
-                    "internalType": "uint8",
-                    "name": "",
-                    "type": "uint8"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "_name",
-            "outputs": [
-                {
-                    "internalType": "string",
-                    "name": "",
-                    "type": "string"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "_symbol",
-            "outputs": [
-                {
-                    "internalType": "string",
-                    "name": "",
-                    "type": "string"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "owner",
-                    "type": "address"
-                },
-                {
-                    "internalType": "address",
-                    "name": "spender",
-                    "type": "address"
-                }
-            ],
-            "name": "allowance",
-            "outputs": [
-                {
-                    "internalType": "uint256",
-                    "name": "",
-                    "type": "uint256"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "spender",
-                    "type": "address"
-                },
-                {
-                    "internalType": "uint256",
-                    "name": "amount",
-                    "type": "uint256"
-                }
-            ],
-            "name": "approve",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "account",
-                    "type": "address"
-                }
-            ],
-            "name": "balanceOf",
-            "outputs": [
-                {
-                    "internalType": "uint256",
-                    "name": "",
-                    "type": "uint256"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "uint256",
-                    "name": "amount",
-                    "type": "uint256"
-                }
-            ],
-            "name": "burn",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "decimals",
-            "outputs": [
-                {
-                    "internalType": "uint8",
-                    "name": "",
-                    "type": "uint8"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "spender",
-                    "type": "address"
-                },
-                {
-                    "internalType": "uint256",
-                    "name": "subtractedValue",
-                    "type": "uint256"
-                }
-            ],
-            "name": "decreaseAllowance",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "getOwner",
-            "outputs": [
-                {
-                    "internalType": "address",
-                    "name": "",
-                    "type": "address"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "spender",
-                    "type": "address"
-                },
-                {
-                    "internalType": "uint256",
-                    "name": "addedValue",
-                    "type": "uint256"
-                }
-            ],
-            "name": "increaseAllowance",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "uint256",
-                    "name": "amount",
-                    "type": "uint256"
-                }
-            ],
-            "name": "mint",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "name",
-            "outputs": [
-                {
-                    "internalType": "string",
-                    "name": "",
-                    "type": "string"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "owner",
-            "outputs": [
-                {
-                    "internalType": "address",
-                    "name": "",
-                    "type": "address"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [],
-            "name": "renounceOwnership",
-            "outputs": [],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "symbol",
-            "outputs": [
-                {
-                    "internalType": "string",
-                    "name": "",
-                    "type": "string"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": true,
-            "inputs": [],
-            "name": "totalSupply",
-            "outputs": [
-                {
-                    "internalType": "uint256",
-                    "name": "",
-                    "type": "uint256"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "view",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "recipient",
-                    "type": "address"
-                },
-                {
-                    "internalType": "uint256",
-                    "name": "amount",
-                    "type": "uint256"
-                }
-            ],
-            "name": "transfer",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "sender",
-                    "type": "address"
-                },
-                {
-                    "internalType": "address",
-                    "name": "recipient",
-                    "type": "address"
-                },
-                {
-                    "internalType": "uint256",
-                    "name": "amount",
-                    "type": "uint256"
-                }
-            ],
-            "name": "transferFrom",
-            "outputs": [
-                {
-                    "internalType": "bool",
-                    "name": "",
-                    "type": "bool"
-                }
-            ],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        },
-        {
-            "constant": false,
-            "inputs": [
-                {
-                    "internalType": "address",
-                    "name": "newOwner",
-                    "type": "address"
-                }
-            ],
-            "name": "transferOwnership",
-            "outputs": [],
-            "payable": false,
-            "stateMutability": "nonpayable",
-            "type": "function"
-        }
-    ],
-    "maintoken_list": [
-        "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
-        "0x55d398326f99059ff775485246999027b3197955"
-    ],
-    "zhuliutoken_nomain_list": [
-        "0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65",
-        "0x2dff88a56767223a5529ea5960da7a3f5f766406",
-        "0x08a84af1368cd333073ac5dfb2254208e06b3a70",
-        "0x9b17baadf0f21f03e35249e0e59723f34994f806",
-        "0x8da443f84fea710266c8eb6bc34b71702d033ef2",
-        "0xb0d502e938ed5f4df2e681fe6e419ff29631d62b",
-        "0x8fff93e810a2edaafc326edee51071da9d398e83",
-        "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
-        "0xbc7d6b50616989655afd682fb42743507003056d",
-        "0x1f9f6a696c6fd109cd3956f45dc709d2b3902163",
-        "0xeca88125a5adbe82614ffc12d0db554e2e2867c8",
-        "0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b",
-        "0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca",
-        "0x1fc9004ec7e5722891f5f38bae7678efcb11d34d",
-        "0x42981d0bfbaf196529376ee702f2a9eb9092fcb5",
-        "0x039cb485212f996a9dbb85a9a75d898f94d38da6",
-        "0x949d48eca67b17269629c7194f4b727d4ef9e5d6",
-        "0x070a08beef8d36734dd67a491202ff35a6a16d97",
-        "0xa4080f1778e69467e905b8d6f72f6e441f9e9484",
-        "0xebd49b26169e1b52c04cfd19fcf289405df55f80",
-        "0xac51066d7bec65dc4589368da368b212745d63e8",
-        "0xaec945e04baf28b135fa7c640f624f8d90f1c3a6",
-        "0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5",
-        "0x1ae369a6ab222aff166325b7b87eb9af06c86e57"
-    ],
-    "exclude_public_router": [
-        "0x5d00661ea3c9b8f095520573b9b940b6febcfd8b",
-        "0x407993575c91ce7643a4d4ccacc9a98c36ee1bbe"
-    ],
-    "exclude_dalao_contract": [
-        "0x000000000e81357e5526767ed880dbc2f5872174",
-        "0x00000005e2d1eedc0aa31ad91f7aa4d5c61266a6",
-        "0x0000000006084a12714c9e17891abbbbf6684cdf",
-        "0x00000000d3cb6df5c2cc02945e81cbae1ec94449",
-        "0x00000000004712b0169adce3dcf583fada3dc0e0",
-        "0x0000000000275508225df0cca6a8a5ba83357a9a",
-        "0x0000000000b35ae47b12b8ccf2f8d51e208760c8",
-        "0x996730db3c8ef2aa6bfbd3fa9c99a8201f97a5db",
-        "0x89c050cd95c73a9354fcf02dca36e70d3cc8d200",
-        "0x6827ab5b01b02a594d9d36f2ffa787f6c7c5a72d",
-        "0xe92b4955cd62686c84cda5d3631e23dcd2f5072f",
-        "0xe36a3dd43334fe2e376440cfaabdbc503ff24f3b",
-        "0xb7674099fe229b3d9e3481820f3a45fd999f9617",
-        "0x9605c9945c4c69cc74afccca64244019c4b1c193",
-        "0x7bb05d74e7662f7a6713603a0fa6a4cb01efd3d0",
-        "0x1ec933a4a7321586789b58ed513165d25fe1cf7c"
-    ],
     "excutor_router_list": [
         "0xa60d2e45d0f28ecc35648ff741f050d0a08fff22",
         "0x4f6bf6548dccaa0c519bb34f953dc6376e38c5a"
     ],
-    "three_public_router_str2list_dict": {
-        "0x881d": [
-            "0x881d65d0f5c18b1ba0d255b1b4b35afa4eb808b2"
-        ],
-        "0xf7fa": [
-            "0xf7fa7dd3fb0cb00f994fcca434f9796d9f803ab4"
-        ],
-        "0x64c7": [
-            "0x64c7f3c2c19b41a6ad67bb5f4edc8edbb3284f34"
-        ],
-        "0xd7f1": [
-            "0xd7f1dd5d49206349cae8b585fcb0ce3d96f1696f"
-        ],
-        "0x36b2": [
-            "0x36b26710bb51a49783ad892d607c139e726e7252"
-        ],
-        "0x286c": [
-            "0x286c3bead28b45a519c9f477ccf5e8ae7d92033d"
-        ],
-        "0x58da": [
-            "0x58da90a5c604ef7c1a520bc5f8cb327524799995"
-        ],
-        "0xeddb": [
-            "0xeddb16da43daed83158417955dc0c402c61e7e7d"
-        ],
-        "0xd669": [
-            "0xd669b935419ea11f5a691bff056a269170c166e8"
-        ],
-        "0x8ebe": [
-            "0x8ebe4739c6dac25949b541c60a306758e916bd3c"
-        ],
-        "0xcecc": [
-            "0xcecce97529effc360f68b3f26eef4ad74ebf5705",
-            "0xa60d2e45d0f28ecc35648ff741f050d0a08fff22",
-            "0x4f6bf6548dccaa0c519bb34f953dc6376e38c5a"
-        ],
-        "0x9256": [
-            "0x9256f1033f81e13e6918db931d0b9dc50889df51"
-        ],
-        "0x1584": [
-            "0x15844509968d85d1b25b4a7fc86affb557083cc8"
-        ],
-        "0x8a49": [
-            "0x8a49eabcc73251ae3b20fa9c98b48fe02584dc59"
-        ],
-        "0xf040": [
-            "0xf040118d0f2abb2f96af89435d9bcc53c7df3221"
-        ],
-        "0xdb5d": [
-            "0xdb5d5c30e150a972e087600951af962753d878ab"
-        ],
-        "0x0a68": [
-            "0x0a682be35dbab58b7d68177c49770f3e8ab3f3e4"
-        ],
-        "BitKeepSRV2": [
-            "0xd1ca1f4dbb645710f5d5a9917aa984a47524f49a",
-            "0x2f2dd99235cb728fc79af575f1325eaa270f0c99",
-            "0xe37e799d5077682fa0a244d46e5649f71457bd09",
-            "0x7d16053f9985c42fbaabd3e35ed33f486e256b02",
-            "0x4c52f61212f9e36922ab78aab250f1a2f000d93c"
-        ],
-        "KyberSMetaARV2": [
-            "0x6131b5fae19ea4f9d964eac0408e4408b66337b5",
-            "0xf081470f5c6fbccf48cc4e5b82dd926409dcdd67",
-            "0x7d16053f9985c42fbaabd3e35ed33f486e256b02"
-        ],
-        "OKX_AR": [
-            "0x9333c74bdd1e118634fe5664aca7a9710b108bab",
-            "0xa96a96669295e85af046026bf714a26e84096889"
-        ],
-        "TransitSRV4": [
-            "0xb45a2dda996c32e93b8c47098e90ed0e7ab18e39",
-            "0x661d4d4785c302a56d7cb8a92f130d319bc25e4a"
-        ],
-        "TransitSRV5": [
-            "0x00000047bb99ea4d791bb749d970de71ee0b1a34"
-        ],
-        "1inchARV3": [
-            "0x11111112542d85b3ef69ae05771c2dccff4faa26"
-        ],
-        "1inchARV4": [
-            "0x1111111254fb6c44bac0bed2854e76f90643097d"
-        ],
-        "1inchARV5": [
-            "0x1111111254eeb25477b68fb85ed929f73a960582"
-        ],
-        "MetaMaskSR": [
-            "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31",
-            "0xc590175e458b83680867afd273527ff58f74c02b",
-            "0xf081470f5c6fbccf48cc4e5b82dd926409dcdd67"
-        ],
-        "FstSR": [
-            "0xb3ca4d73b1e0ea2c53b42173388cc01e1c226f40"
-        ],
-        "ZeroEx": [
-            "0xdef1c0ded9bec7f1a1670819833240f027b25eff"
-        ],
-        "ParaSRV5": [
-            "0xdef171fe48cf0115b1d80b88dc8eab59176fee57",
-            "0x53e693c6c7ffc4446c53b205cf513105bf140d7b"
-        ],
-        "DODOSR": [
-            "0x0656fd85364d03b103ceeda192fb2d3906a6ac15",
-            "0x6c1c420c04f4d563d6588a97693af902b87be5f1"
-        ],
-        "MdexSRold": [
-            "0x7dae51bd3e3376b8c7c4900e9107f12be3af1ba8"
-        ],
-        "MdexSRnew": [
-            "0x62c1a0d92b09d0912f7bb9c96c5ecdc7f2b87059"
-        ],
-        "0xf82c": [
-            "0xf82c5c56b8721356204fb0c0383195f806cd9563"
-        ],
-        "0x1f23": [
-            "0x1f23b383d9a4ead40de965ee47dd7d307abc8fcc"
-        ],
-        "0xf1ae": [
-            "0xf1aeeffcc93f1cb6e3fe5903c55af580c42529bd"
-        ],
-        "0x1a8f": [
-            "0x1a8f43e01b78979eb4ef7febec60f32c9a72f58e",
-            "0x86efb351b092a32d833a1ad7374d9bf0fc164aab",
-            "0x7d16053f9985c42fbaabd3e35ed33f486e256b02"
-        ],
-        "0xee6f": [
-            "0xee6f43faa8e8e2319f98a194a4d9d6fedb3edaf2"
-        ],
-        "0x6d02": [
-            "0x6d02f76a2f4a3ea81889a837f093783e64650d54"
-        ],
-        "0x1de6": [
-            "0x1de6b4d4cec3b6fa150380f42797bb4fccc7f7ce"
-        ],
-        "0x1991": [
-            "0x19919e33548bb85df7c4d9dbd468cd0b00571b1e"
-        ],
-        "0x2c9b": [
-            "0x2c9ba798d6f6a27dbe2e45db358f20477a0705d3"
-        ],
-        "0x81da": [
-            "0x81da6bcd98ae46621a1e9743a3f51b10b7e16d97"
-        ],
-        "0xab3e": [
-            "0xab3e6e0e76ac558afde881dcc9e5f8ada8f82802"
-        ],
-        "BoggedSR": [
-            "0xb099ed146fad4d0daa31e3810591fc0554af62bb",
-            "0xdf065366860afff21a737b6b32bc909819c9afeb"
-        ],
-        "0xd5a0": [
-            "0xd5a0f666875c7ad4b4a621eda19ae0c17ad1b7a9"
-        ],
-        "XXSR": [
-            "0x3a849487c0099240493b1786d2da042a4bf8d501"
-        ],
-        "0xebc2": [
-            "0xebc25c81050b22d765b39b8d17a3457404cfc4cd"
-        ],
-        "0x7014": [
-            "0x7014daf2fd59c4f2183fb48fb969d444e83fe1ec",
-            "0x4d8dcbe98771683fc3daa964360a11dd8f911bd1"
-        ],
-        "0xf0c5": [
-            "0xf0c59f8187206ce566866858a7b28c951e6829a3"
-        ],
-        "0x779a": [
-            "0x779a08ebc4f4284d48c0c843fd31d6821ad85ba3"
-        ],
-        "0xb962": [
-            "0xb962fdcb10502f1a7dc8778192d6b1d26ac1ebda"
-        ],
-        "0x0991": [
-            "0x09912f4b5b5cfd528da9bf204337dd1675b3e12c"
-        ],
-        "0xa43d": [
-            "0xa43d8cfa2ef660efe99490825332886b1fabaa77"
-        ],
-        "0xff42": [
-            "0xff42dfc39578f24cb64b0b29eaaa44bf8b5c4443"
-        ],
-        "0x341f": [
-            "0x341fb14a9d11771b81edda96cf63bc89fcf96adf"
-        ],
-        "0x7bd3": [
-            "0x7bd336d7d5172939961f6693ca5ed58ccab37f51"
-        ],
-        "0x8077": [
-            "0x8077d0007cda06f883ad0a2807753a1759b31590"
-        ],
-        "0x6223": [
-            "0x6223496b9247a12b0a105e98da80711b5594042c"
-        ],
-        "0x8203": [
-            "0x82035fd79113391892046172efd97ff7fdbbd1fd"
-        ]
-    },
     "swapped_Router": {
         "0x6131b5fae19ea4f9d964eac0408e4408b66337b5": "KyberSMetaARV2",
         "0xb45a2dda996c32e93b8c47098e90ed0e7ab18e39": "TransitSRV4",
@@ -961,701 +35,5 @@
         "0xee6f43faa8e8e2319f98a194a4d9d6fedb3edaf2": "0xee6f",
         "0x6d02f76a2f4a3ea81889a837f093783e64650d54": "0x6d02",
         "0x7014daf2fd59c4f2183fb48fb969d444e83fe1ec": "0x7014"
-    },
-    "swappedroutername2add_obj": {
-        "KyberSMetaARV2": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5",
-        "TransitSRV4": "0xb45a2dda996c32e93b8c47098e90ed0e7ab18e39",
-        "TransitSRV5": "0x00000047bb99ea4d791bb749d970de71ee0b1a34",
-        "OKX_AR": "0x9333c74bdd1e118634fe5664aca7a9710b108bab",
-        "1inchARV3": "0x11111112542d85b3ef69ae05771c2dccff4faa26",
-        "1inchARV4": "0x1111111254fb6c44bac0bed2854e76f90643097d",
-        "SlingshotSR": "0x224b239b8bb896f125bd77eb334e302a318d9e33",
-        "ZeroEx": "0xdef1c0ded9bec7f1a1670819833240f027b25eff",
-        "ParaSRV5": "0xdef171fe48cf0115b1d80b88dc8eab59176fee57",
-        "DODOSR": "0x0656fd85364d03b103ceeda192fb2d3906a6ac15",
-        "0xf82c": "0xf82c5c56b8721356204fb0c0383195f806cd9563",
-        "0x1f23": "0x1f23b383d9a4ead40de965ee47dd7d307abc8fcc",
-        "0xee6f": "0xee6f43faa8e8e2319f98a194a4d9d6fedb3edaf2",
-        "0x6d02": "0x6d02f76a2f4a3ea81889a837f093783e64650d54",
-        "0x7014": "0x7014daf2fd59c4f2183fb48fb969d444e83fe1ec"
-    },
-    "swapped_nonan": [
-        "OKX_AR"
-    ],
-    "swappedrouter2topics0_obj": {
-        "KyberSMetaARV2": [
-            "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,dstReceiver,spentAmount,returnAmount)"
-        ],
-        "TransitSRV4": [
-            "0x7055e3d08e2c20429c6b162f3e3bee3f426d59896e66084c3580dc353e54129d",
-            4,
-            "Swapped(index_topic_1 address srcToken,index_topic_2 address dstToken,index_topic_3 address dstReceiver,address sender,bool feeMode,uint256 spentAmount,uint256 returnAmount,uint256 minReturnAmount,uint256 fee,uint256 toChainID,string channel,uint256 time)",
-            "Swapped(address,address,address,address,bool,uint256,uint256,uint256,uint256,uint256,string,uint256)",
-            "Swapped(srcToken,dstToken,dstReceiver,sender,feeMode,spentAmount,returnAmount,minReturnAmount,fee,toChainID,channel,time)"
-        ],
-        "TransitSRV5": [
-            "0x2251435bd151cd72851a82be055bf6d1c3d7f34d08d56493dddf874229b8e897",
-            4,
-            "Swapped(index_topic_1 address srcToken,index_topic_2 address dstToken,index_topic_3 address dstReceiver,uint256 spentAmount,uint256 returnAmount,uint256 toChainID,string channel)",
-            "Swapped(address,address,address,uint256,uint256,uint256,string)",
-            "Swapped(srcToken,dstToken,index_topic_3dstReceiver,spentAmount,returnAmount,toChainID,channel)"
-        ],
-        "OKX_AR": [
-            "0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c",
-            1,
-            "Swapped(address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,uint256,uint256)",
-            "Swapped(srcToken,dstToken,dstReceiver,spentAmount,returnAmount)"
-        ],
-        "1inchARV3": [
-            "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,dstReceiver,spentAmount,returnAmount)"
-        ],
-        "1inchARV4": [
-            "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,dstReceiver,spentAmount,returnAmount)"
-        ],
-        "SlingshotSR": [
-            "0x899a8968d68f840cf01fdaf129bf72e96ca51b8ecad8c4f7566938e7a2ba6bcf",
-            2,
-            "Swapped(index_topic_1 address dstReceiver,address srcToken,address dstToken,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,uint256,uint256)",
-            "Swapped(dstReceiver,srcToken,dstToken,spentAmount,returnAmount)"
-        ],
-        "ZeroEx": [
-            "0x0f6672f78a59ba8e5e5b5d38df3ebc67f3c792e2c9259b8d97d7f00dd78ba1b3",
-            2,
-            "Swapped(index_topic_1 address sender,address srcToken,address dstToken,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,spentAmount,returnAmount)"
-        ],
-        "ParaSRV5": [
-            "0xe00361d207b252a464323eb23d45d42583e391f2031acdd2e9fa36efddd43cb0",
-            4,
-            "Swapped(bytes16 uuid,address partner,uint256 feePercent,address initiator,index_topic_1 address dstReceiver,index_topic_2 address srcToken,index_topic_3 address destToken,uint256 srcAmount,uint256 spentAmount,uint256 expectedAmount)",
-            "Swapped(bytes16,address,uint256,address,address,address,address,uint256,uint256,uint256)",
-            "Swapped(uuid,partner,feePercent,initiator,dstReceiver,srcToken,destToken,srcAmount,spentAmount,expectedAmount)"
-        ],
-        "DODOSR": [
-            "0x92ceb067a9883c85aba061e46b9edf505a0d6e81927c4b966ebed543a5221787",
-            1,
-            "Swapped(address srcToken,address dstToken,address sender,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,uint256,uint256)",
-            "Swapped(srcToken,dstToken,sender,spentAmount,returnAmount)"
-        ],
-        "0xf82c": [
-            "0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address pool,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,pool,spentAmount,returnAmount)"
-        ],
-        "0x1f23": [
-            "0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address pool,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,pool,spentAmount,returnAmount)"
-        ],
-        "0xee6f": [
-            "0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address pool,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,pool,spentAmount,returnAmount)"
-        ],
-        "0x6d02": [
-            "0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75",
-            1,
-            "Swapped(address sender,address srcToken,address dstToken,address pool,uint256 spentAmount,uint256 returnAmount)",
-            "Swapped(address,address,address,address,uint256,uint256)",
-            "Swapped(sender,srcToken,dstToken,pool,spentAmount,returnAmount)"
-        ],
-        "0x7014": [
-            "0x7055e3d08e2c20429c6b162f3e3bee3f426d59896e66084c3580dc353e54129d",
-            4,
-            "Swapped(index_topic_1 address srcToken,index_topic_2 address dstToken,index_topic_3 address dstReceiver,address sender,bool feeMode,uint256 spentAmount,uint256 returnAmount,uint256 minReturnAmount,uint256 fee,uint256 toChainID,string channel,uint256 time)",
-            "Swapped(address,address,address,address,bool,uint256,uint256,uint256,uint256,uint256,string,uint256)",
-            "Swapped(srcToken,dstToken,dstReceiver,sender,feeMode,spentAmount,returnAmount,minReturnAmount,fee,toChainID,channel,time)"
-        ]
-    },
-    "swapped_topics0_obj": {
-        "Swapped(address,address,address,address,uint256,uint256)": "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8",
-        "Swapped(address,address,address,uint256,uint256)": "0x6782190c91d4a7e8ad2a867deed6ec0a970cab8ff137ae2bd4abd92b3810f4d3",
-        "Swapped(address,address,uint256,uint256)": "0xa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb",
-        "Swapped(bytes16,address,uint256,address,address,address,address,uint256,uint256,uint256)": "0xc2858b119a52c4d869da0ded84999010a910ac3d68c4982cfcb26678f519c624",
-        "Swapped(address,address,address,address,bool,uint256,uint256,uint256,uint256,uint256,string,uint256)": "0xcce4b7d6f238212bf8c88164cee0f80b164e39303601cd8244c0586b31c2aa91",
-        "Swapped(address,address,address,uint256,uint256,uint256,string)": "0x3f9865669a66391352d8bac674c04d64783a453699eb056be8c1e52b7a5802a8"
-    },
-    "swapped_eventhead_2abi_obj": {
-        "Swapped(address sender,address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "sender",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "contract IERC20",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "contract IERC20",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstReceiver",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstReceiver",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(address srcToken,address dstToken,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(index_topic_1 address dstReceiver,address srcToken,address dstToken,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstReceiver",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(index_topic_1 address sender,address srcToken,address dstToken,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "sender",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(bytes16 uuid,address partner,uint256 feePercent,address initiator,index_topic_1 address dstReceiver,index_topic_2 address srcToken,index_topic_3 address destToken,uint256 srcAmount,uint256 spentAmount,uint256 expectedAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": false,
-                        "internalType": "bytes16",
-                        "name": "uuid",
-                        "type": "bytes16"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "partner",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "feePercent",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "initiator",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstReceiver",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "expectedAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(address srcToken,address dstToken,address sender,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "sender",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(index_topic_1 address srcToken,index_topic_2 address dstToken,index_topic_3 address dstReceiver,address sender,bool feeMode,uint256 spentAmount,uint256 returnAmount,uint256 minReturnAmount,uint256 fee,uint256 toChainID,string channel,uint256 time)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstReceiver",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "trader",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "bool",
-                        "name": "feeMode",
-                        "type": "bool"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "minReturnAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "fee",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "toChainID",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "string",
-                        "name": "channel",
-                        "type": "string"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "time",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(index_topic_1 address srcToken,index_topic_2 address dstToken,index_topic_3 address dstReceiver,uint256 spentAmount,uint256 returnAmount,uint256 toChainID,string channel)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": true,
-                        "internalType": "address",
-                        "name": "dstReceiver",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "toChainID",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "string",
-                        "name": "channel",
-                        "type": "string"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ],
-        "Swapped(address sender,address srcToken,address dstToken,address pool,uint256 spentAmount,uint256 returnAmount)": [
-            {
-                "anonymous": false,
-                "inputs": [
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "sender",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "contract IERC20",
-                        "name": "srcToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "contract IERC20",
-                        "name": "dstToken",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "address",
-                        "name": "pool",
-                        "type": "address"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "spentAmount",
-                        "type": "uint256"
-                    },
-                    {
-                        "indexed": false,
-                        "internalType": "uint256",
-                        "name": "returnAmount",
-                        "type": "uint256"
-                    }
-                ],
-                "name": "Swapped",
-                "type": "event"
-            }
-        ]
-    },
-    "txlist_noinputfunctionname_columns": [
-        "blockNumber",
-        "timeStamp",
-        "hash",
-        "blockHash",
-        "transactionIndex",
-        "from",
-        "to",
-        "value",
-        "gasPrice",
-        "contractAddress",
-        "methodId"
-    ],
-    "txlist_columns": [
-        "blockNumber",
-        "timeStamp",
-        "hash",
-        "blockHash",
-        "transactionIndex",
-        "from",
-        "to",
-        "value",
-        "gasPrice",
-        "contractAddress",
-        "methodId",
-        "functionName",
-        "input"
-    ],
-    "txlistinternal_columns": [
-        "blockNumber",
-        "timeStamp",
-        "hash",
-        "from",
-        "to",
-        "value",
-        "contractAddress",
-        "input",
-        "type"
-    ],
-    "containtracegas_txlistinternal_columns": [
-        "blockNumber",
-        "timeStamp",
-        "hash",
-        "from",
-        "to",
-        "value",
-        "contractAddress",
-        "input",
-        "type",
-        "gas",
-        "gasUsed",
-        "traceId"
-    ],
-    "tokentx_columns": [
-        "blockNumber",
-        "timeStamp",
-        "hash",
-        "blockHash",
-        "from",
-        "contractAddress",
-        "to",
-        "value",
-        "tokenName",
-        "tokenSymbol",
-        "tokenDecimal",
-        "gasPrice"
-    ],
-    "contract_tokentx_columns": [
-        "blockNumber",
-        "timeStamp",
-        "hash"
-    ],
-    "bigamount_offsettimes_max": 10,
-    "biaoshi_specialadds": "specialadds",
-    "paircsvname": "Bsc_06201304new_pairs.csv",
-    "bnbprice": 600,
-    "biaoshi": "20240310",
-    "startdate": "2024-03-10T00:00:00Z",
-    "enddate": "2024-03-11T00:00:00Z"
+    }
 }

+ 45 - 0
src/code/base_library.py

@@ -0,0 +1,45 @@
+ 
+
+class BaseLibrary:
+    def __init__(self,):
+ 
+        
+        self.arr_router =  [
+            
+            # Uniswap,#Universal Router
+            "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad",
+            # FeeCollector
+            "0x000000fee13a103a10d593b9ae06b3e05f2e7e1c",
+            # jaredfromsubway: MEV Bot 2
+            '0x1f2f10d1c40777ae1da742455c65828ff36df387',
+            # MEV Bot
+            "0x000000d40b595b94918a28b27d1e2c66f43a51d3"
+            # MetaMask: Swaps Spende
+            "0x74de5d4FCbf63E00296fd95d33236B9794016631",
+            
+            #"KyberSMetaARV2",
+            "0x6131b5fae19ea4f9d964eac0408e4408b66337b5",
+            #"TransitSRV4",
+            "0xb45a2dda996c32e93b8c47098e90ed0e7ab18e39",
+            #"TransitSRV5",
+            "0x00000047bb99ea4d791bb749d970de71ee0b1a34",
+            #"OKX_AR",
+            "0x9333c74bdd1e118634fe5664aca7a9710b108bab", 
+            #"1inchARV3",
+            "0x11111112542d85b3ef69ae05771c2dccff4faa26",
+            #"1inchARV4",
+            "0x1111111254fb6c44bac0bed2854e76f90643097d",
+            #"SlingshotSR",
+            "0x224b239b8bb896f125bd77eb334e302a318d9e33",
+            #"ZeroEx",
+            "0xdef1c0ded9bec7f1a1670819833240f027b25eff",
+            #"ParaSRV5",
+            "0xdef171fe48cf0115b1d80b88dc8eab59176fee57",
+            #"DODOSR",
+            "0x0656fd85364d03b103ceeda192fb2d3906a6ac15",
+        
+        ]
+   
+ 
+        
+ 

BIN
src/librarydata/dalao_buysell_count/0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad.xlsx


BIN
src/librarydata/dalao_buysell_count/0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8.xlsx


BIN
src/librarydata/dalao_buysell_count/0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c.xlsx


BIN
src/librarydata/dalao_merge/ori_merge.xlsx