SYMBOL INDEX (272 symbols across 40 files) FILE: src/main/java/com/we3j/demo/Application.java class Application (line 19) | @SpringBootApplication method main (line 23) | public static void main(String[] args) { FILE: src/main/java/com/we3j/demo/bean/Account.java class Account (line 11) | public class Account implements Serializable { method getAddress (line 17) | public String getAddress() { method setAddress (line 21) | public void setAddress(String address) { method getBalance (line 25) | public BigInteger getBalance() { method setBalance (line 29) | public void setBalance(BigInteger balance) { method getPrivateKey (line 33) | public String getPrivateKey() { method setPrivateKey (line 37) | public void setPrivateKey(String privateKey) { method getPublicKey (line 41) | public String getPublicKey() { method setPublicKey (line 45) | public void setPublicKey(String publicKey) { method toString (line 49) | @Override FILE: src/main/java/com/we3j/demo/bean/bo/ReceiveAccount.java class ReceiveAccount (line 13) | public class ReceiveAccount extends Account implements Serializable { method getSendAmount (line 16) | public BigDecimal getSendAmount() { method setSendAmount (line 20) | public void setSendAmount(BigDecimal sendAmount) { FILE: src/main/java/com/we3j/demo/controller/TestController.java class TestController (line 20) | @RestController method batchUpdateLabelGPS (line 31) | @RequestMapping(value = "/account", method = RequestMethod.POST) FILE: src/main/java/com/we3j/demo/service/etherscan_api/Endpoint.java class Endpoint (line 8) | public class Endpoint { FILE: src/main/java/com/we3j/demo/service/etherscan_api/key/ApiKey.java class ApiKey (line 9) | public class ApiKey { FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/Sort.java type Sort (line 8) | public enum Sort { method Sort (line 13) | Sort(String sort) { FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/accounts/AccountAPI.java type AccountAPI (line 15) | @RetrofitClient(baseUrl = "${base.url}") method getSingleAddressBalance (line 26) | @GET("api") method getMultipleAddressBalance (line 29) | @GET("api") method getListNormalTransactionByAddress (line 36) | @GET("api") method getListInternalTransactionByAddress (line 42) | @GET("api") method getListInternalTransactionByHash (line 45) | @GET("api") method getListInternalTransactionByBlockRange (line 48) | @GET("api") method getContractTransactionByAddress (line 51) | @GET("api") method getNFTTransactionByAddress (line 54) | @GET("api") method getListMinedByAddress (line 57) | @GET("api") method getHistoricalBalanceByBlockNoAddress (line 60) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/blocks/BlockOrder.java type BlockOrder (line 8) | public enum BlockOrder { method BlockOrder (line 13) | BlockOrder(String key) { FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/blocks/BlocksAPI.java type BlocksAPI (line 14) | @RetrofitClient(baseUrl = "${base.url}") method getBlockAndUncleRewardsByBlockNo (line 16) | @GET("api") method getEstimatedBlockCountdownTimeByBlockNo (line 19) | @GET("api") method getBlockNumberByTimestamp (line 25) | @GET("api") method getDailyAverageBlockSize (line 32) | @GET("api") method getDailyBlockCountAndRewards (line 39) | @GET("api") method getDailyBlockRewards (line 46) | @GET("api") method getDailyAverageBlockTime (line 53) | @GET("api") method getDailyUncleBlockCountAndRewards (line 60) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/contracts/ContractAPI.java type ContractAPI (line 13) | @RetrofitClient(baseUrl = "${base.url}") method getContractABI (line 15) | @GET("api") method getContractSourceCode (line 18) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/gas_tracker/GasTackerAPI.java type GasTackerAPI (line 14) | @RetrofitClient(baseUrl = "${base.url}") method getEstimationConfirmationTime (line 16) | @GET("api") method getGasOracle (line 19) | @GET("api") method getDailyAverageGasLimit (line 22) | @GET("api") method getDailyTotalGasUsed (line 25) | @GET("api") method getDailyAverageGasPrice (line 28) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/logs/logAPI.java type logAPI (line 13) | @RetrofitClient(baseUrl = "${base.url}") method getSampleLog (line 17) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/stats/StatsAPI.java type StatsAPI (line 14) | @RetrofitClient(baseUrl = "${base.url}") method getTotalSupplyEther (line 17) | @GET("api") method getTotalSupplyEther2 (line 20) | @GET("api") method getEtherLastPrice (line 23) | @GET("api") method getEtherNodesSize (line 26) | @GET("api") method getTotalNodesCount (line 29) | @GET("api") method getDailyTxnFee (line 32) | @GET("api") method getDailyNewAddressCount (line 35) | @GET("api") method getDailyNetUtilization (line 38) | @GET("api") method getDailyAverageHashRate (line 41) | @GET("api") method getDailyTxCount (line 44) | @GET("api") method getDailyAverageNetDifficulty (line 47) | @GET("api") method getEtherDailyPrice (line 50) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/tokens/TokensAPI.java type TokensAPI (line 13) | @RetrofitClient(baseUrl = "${base.url}") method getTokenTotalSupplyByContractAddress (line 16) | @GET("api") method getTokenAccountBalanceForTokenContractAddress (line 19) | @GET("api") method getHistoricalTokenTotalSupplyByContractAddressAndBlockNo (line 22) | @GET("api") method getHistoricalTokenAccountBalanceByContractAddressAndBlockNo (line 25) | @GET("api") method getTokenInfoByContractAddress (line 28) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/params/transactions/TransactionsAPI.java type TransactionsAPI (line 13) | @RetrofitClient(baseUrl = "${base.url}") method checkContractExecutionStatus (line 16) | @GET("api") method checkTransactionReceiptStatus (line 19) | @GET("api") FILE: src/main/java/com/we3j/demo/service/etherscan_api/request/Method.java type Method (line 8) | public enum Method { FILE: src/main/java/com/we3j/demo/service/etherscan_api/response/ApiResponse.java class ApiResponse (line 10) | public class ApiResponse implements Serializable { method getStatus (line 15) | public String getStatus() { method setStatus (line 19) | public void setStatus(String status) { method getMessage (line 23) | public String getMessage() { method setMessage (line 27) | public void setMessage(String message) { method getResult (line 31) | public T getResult() { method setResult (line 35) | public void setResult(T result) { method toString (line 39) | @Override FILE: src/main/java/com/we3j/demo/sol/TokenERC20.java class TokenERC20 (line 39) | public class TokenERC20 extends Contract { method TokenERC20 (line 81) | protected TokenERC20(String contractAddress, Web3j web3j, Credentials ... method TokenERC20 (line 85) | protected TokenERC20(String contractAddress, Web3j web3j, TransactionM... method name (line 89) | public RemoteCall name() { method approve (line 97) | public RemoteCall approve(String _spender, BigInte... method totalSupply (line 106) | public RemoteCall totalSupply() { method transferFrom (line 114) | public RemoteCall transferFrom(String _from, Strin... method decimals (line 124) | public RemoteCall decimals() { method burn (line 132) | public RemoteCall burn(BigInteger _value) { method balanceOf (line 140) | public RemoteCall balanceOf(String param0) { method burnFrom (line 148) | public RemoteCall burnFrom(String _from, BigIntege... method symbol (line 157) | public RemoteCall symbol() { method transfer (line 165) | public RemoteCall transfer(String _to, BigInteger ... method approveAndCall (line 174) | public RemoteCall approveAndCall(String _spender, ... method allowance (line 184) | public RemoteCall allowance(String param0, String param1) { method deploy (line 193) | public static RemoteCall deploy(Web3j web3j, Credentials c... method deploy (line 200) | public static RemoteCall deploy(Web3j web3j, TransactionMa... method getTransferEvents (line 207) | public List getTransferEvents(TransactionReceip... method transferEventObservable (line 221) | public Observable transferEventObservable(EthFi... method transferEventObservable (line 236) | public Observable transferEventObservable(Defau... method getBurnEvents (line 242) | public List getBurnEvents(TransactionReceipt transa... method burnEventObservable (line 255) | public Observable burnEventObservable(EthFilter fil... method burnEventObservable (line 269) | public Observable burnEventObservable(DefaultBlockP... method load (line 275) | public static TokenERC20 load(String contractAddress, Web3j web3j, Cre... method load (line 279) | public static TokenERC20 load(String contractAddress, Web3j web3j, Tra... class TransferEventResponse (line 283) | public static class TransferEventResponse { class BurnEventResponse (line 293) | public static class BurnEventResponse { FILE: src/main/java/com/we3j/demo/sol/TokenERC71.java class TokenERC71 (line 8) | public class TokenERC71 { FILE: src/main/java/com/we3j/demo/test/ContractDemo.java class ContractDemo (line 37) | public class ContractDemo { method main (line 43) | public static void main(String[] args) { method run (line 47) | private void run() { method connectETHClient (line 61) | private void connectETHClient() throws IOException { method loadWalletByPrivateKey (line 73) | private void loadWalletByPrivateKey(String inputPrivateKey) { method createContract (line 96) | public void createContract(String from) throws InterruptedException, E... method createContract (line 113) | public void createContract(String from, BigInteger ethAmount) throws I... method getTransactionGasLimit (line 128) | public static BigInteger getTransactionGasLimit(Web3j web3j, org.web3j... method getBalance (line 141) | public static BigDecimal getBalance(Web3j web3j, String address) { method getContractAddress (line 152) | private String getContractAddress(String transactionHash) throws IOExc... method listenContract (line 182) | private void listenContract(String contractAddress) { FILE: src/main/java/com/we3j/demo/test/WalletDemo.java class WalletDemo (line 40) | @Service method main (line 50) | public static void main(String[] args) throws Exception { method run1 (line 55) | private void run1() throws Exception { method connectETHClient (line 163) | private void connectETHClient() throws IOException { method creatAccount (line 176) | private void creatAccount() throws NoSuchAlgorithmException, NoSuchPro... method loadWallet (line 208) | private void loadWallet(String password, String walletFilePath) throws... method loadWalletByPrimaryKeyPassword (line 224) | private void loadWalletByPrimaryKeyPassword(String password, String mn... method loadWalletByPrivateKey (line 240) | private void loadWalletByPrivateKey(String inputPrivateKey) { method transto (line 255) | private void transto() throws Exception { method sign (line 275) | private String sign(String message) throws Exception { method getBlanceOf (line 290) | private void getBlanceOf() throws IOException { method initAdmin (line 310) | private Admin initAdmin() { method getService (line 315) | private HttpService getService() { FILE: src/main/java/com/we3j/demo/test/mona/BuildInviteCodeRequest.java class BuildInviteCodeRequest (line 11) | public class BuildInviteCodeRequest { method buildInviteParam (line 13) | public static Map buildInviteParam(String address, Str... method buildHead (line 24) | public static Map buildHead(String accept FILE: src/main/java/com/we3j/demo/test/mona/Constants.java class Constants (line 6) | public class Constants{ FILE: src/main/java/com/we3j/demo/test/mona/RandomUtil.java class RandomUtil (line 8) | public class RandomUtil { method randomNumDigest (line 11) | public static String randomNumDigest() { FILE: src/main/java/com/we3j/demo/test/mona/RequestUtil.java class RequestUtil (line 16) | public class RequestUtil { method requestGet (line 20) | public static String requestGet(String url) { method requestPost (line 37) | public static String requestPost(String url, Map reque... FILE: src/main/java/com/we3j/demo/utils/AccountUtil.java class AccountUtil (line 20) | public class AccountUtil { method unlockAccount (line 23) | public static boolean unlockAccount(String address, String passphrase)... method lockAccount (line 30) | public static boolean lockAccount(String address) throws IOException { FILE: src/main/java/com/we3j/demo/utils/CloseUtils.java class CloseUtils (line 14) | public class CloseUtils { method CloseUtils (line 16) | private CloseUtils() { method closeIO (line 25) | public static void closeIO(Closeable... closeables) { method closeIOQuietly (line 43) | public static void closeIOQuietly(Closeable... closeables) { FILE: src/main/java/com/we3j/demo/utils/Environment.java class Environment (line 11) | public class Environment { FILE: src/main/java/com/we3j/demo/utils/FileUtil.java class FileUtil (line 39) | public class FileUtil { method deleteFolderFile (line 49) | public static void deleteFolderFile(String filePath, boolean deleteThi... method writeFileFromString (line 82) | public static boolean writeFileFromString(File file, String content, b... method writeFileFromLineString (line 98) | public static boolean writeFileFromLineString(File file, String conten... method writeFileFromIS (line 124) | public static boolean writeFileFromIS(File file, InputStream is, boole... method writeFileFromByte (line 153) | public static boolean writeFileFromByte(File file, byte[] data, boolea... method createOrExistsFile (line 175) | public static boolean createOrExistsFile(String filePath) { method createOrExistsFile (line 185) | public static boolean createOrExistsFile(File file) { method getFileByPath (line 204) | public static File getFileByPath(String filePath) { method createOrExistsDir (line 214) | public static boolean createOrExistsDir(File file) { method readFile2String (line 226) | public static String readFile2String(File file, String charsetName) { method readFileNull2String (line 257) | public static String readFileNull2String(File file, String charsetName) { method deleteDir (line 287) | public static boolean deleteDir(String dirPath) { method deleteDirBeforeDays (line 298) | public static boolean deleteDirBeforeDays(String dirPath, long days) { method deleteDir (line 302) | private static boolean deleteDir(File dir, long days) { method deleteDir (line 327) | public static boolean deleteDir(File dir) { method deleteFile (line 353) | public static boolean deleteFile(String srcFilePath) { method deleteFile (line 363) | public static boolean deleteFile(File file) { method deleteFilesInDir (line 373) | public static boolean deleteFilesInDir(String dirPath) { method deleteFilesInDir (line 383) | public static boolean deleteFilesInDir(File dir) { method deleteLogFileMyself (line 410) | public static void deleteLogFileMyself(String path, int day, String pd... method getLogFileAcrossDay (line 453) | public static List getLogFileAcrossDay(String rootPath, int day) { method getLogFileAcrossDay (line 488) | public static List getLogFileAcrossDay(String rootPath, List getLogFilesWithOutExist(String rootPath, List... method getFileCreateTime (line 545) | public static Long getFileCreateTime(String filePath) { method findFileByStartEndTime (line 558) | public static ArrayList findFileByStartEndTime(String dir, long ... method findFilePathByStartEndTime (line 574) | public static ArrayList findFilePathByStartEndTime(String dir,... method getFilesByCreateTime (line 593) | public static List getFilesByCreateTime(String filePath, int day) { FILE: src/main/java/com/we3j/demo/utils/NormalUtil.java class NormalUtil (line 23) | public class NormalUtil { method getBalanceOfString (line 26) | public static String getBalanceOfString(Web3j web3j, String address) t... method getBalanceOf (line 35) | public static BigInteger getBalanceOf(Web3j web3j, String address) thr... method getListBalanceOf (line 44) | public static Map getListBalanceOf(Web3j web3j, St... method getListBalanceOf (line 59) | public static Map getListBalanceOf(Web3j web3j, Li... method getNonce (line 81) | public static BigInteger getNonce(Web3j web3j, String from) throws Exe... method requestCurrentGasPrice (line 99) | public static BigInteger requestCurrentGasPrice(Web3j web3j) throws IO... FILE: src/main/java/com/we3j/demo/utils/RSAEncrypt.java class RSAEncrypt (line 13) | public class RSAEncrypt { method main (line 15) | public static void main(String[] args) { method bytesToString (line 42) | protected String bytesToString(byte[] bytes) { method encrypt (line 55) | protected byte[] encrypt(RSAPublicKey publicKey, byte[] obj) { method decrypt (line 75) | protected byte[] decrypt(RSAPrivateKey privateKey, byte[] obj) { FILE: src/main/java/com/we3j/demo/utils/ScheduleTask.java class ScheduleTask (line 16) | public class ScheduleTask { method timer (line 26) | @Scheduled(cron = "0/2 * * * * *") method testTasks (line 34) | @Scheduled(cron = "0 05 03 ? * *") FILE: src/main/java/com/we3j/demo/utils/TimeUtil.java class TimeUtil (line 13) | public class TimeUtil { method str2Date (line 42) | public static Date str2Date(String str, String format) { method str2Long (line 61) | public static long str2Long(String str, String format) { method date2Str (line 65) | public static String date2Str(Date date, String formart) { method long2Str (line 70) | public static String long2Str(long millTime, String formart) { method now_mill (line 74) | public static String now_mill() { method now_day (line 78) | public static String now_day() { method now_minute (line 81) | public static String now_minute(){ method now_second (line 85) | public static String now_second() { method monthDay (line 89) | public static String monthDay(Date date) { method passParamsMillTime (line 94) | public static boolean passParamsMillTime(long lastMillTime, long param... method getNextDate (line 98) | public static Date getNextDate(Date date) { method getPreDate (line 106) | public static Date getPreDate(Date date) { method getStartTime (line 114) | public static Date getStartTime(Date date) { method hour12to24 (line 124) | public static String hour12to24(String hh_mm_ss) { method getBetweenDates (line 145) | public static List getBetweenDates(Date start, Date end) { method getBeforeDay (line 160) | public static Date getBeforeDay(Date plusDate, Long cycleDate) { method getDay (line 169) | public static String getDay() { method getDate (line 176) | public static String getDate() { method getDateString (line 183) | public static String getDateString() { method getDateStr (line 189) | public static String getDateStr() { method getDateString (line 196) | public static String getDateString(Date date) { method getDateString (line 202) | public static String getDateString(long time) { method utc2Time (line 211) | public static Date utc2Time(String utcTime) { FILE: src/main/java/com/we3j/demo/wallet/NFTMonitor.java class NFTMonitor (line 31) | public class NFTMonitor { method getInstance (line 36) | public static NFTMonitor getInstance() { method getWeb3j (line 47) | public Web3j getWeb3j() { method setWeb3j (line 51) | public void setWeb3j(Web3j web3j) { method setCredentials (line 55) | public void setCredentials(Credentials credentials) { method subscribeClaim (line 62) | public Subscription subscribeClaim(String contractAddress, final Actio... method unsubscribeClaim (line 83) | public void unsubscribeClaim(Subscription subscription) { method mintNFTByAmount (line 97) | public boolean mintNFTByAmount(Web3j web3j, String contractAddress, i... method mintNFTByAmountAndAddress (line 125) | public boolean mintNFTByAmountAndAddress(Web3j web3j, Credentials cre... FILE: src/main/java/com/we3j/demo/wallet/TokenClient.java class TokenClient (line 34) | public class TokenClient { method getTokenTotalSupply (line 45) | public static BigInteger getTokenTotalSupply(Web3j web3j, String contr... method getAddressBalanceOf (line 77) | public static BigInteger getAddressBalanceOf(Web3j web3j, String contr... method approve (line 115) | public static boolean approve(Web3j web3j, Credentials credentials, St... method allowance (line 163) | public static BigInteger allowance(Web3j web3j, String contractAddress... method transferFrom (line 202) | public static boolean transferFrom(Web3j web3j, method claimNFT (line 248) | public static boolean claimNFT(Web3j web3j, String contractAddress, In... FILE: src/main/java/com/we3j/demo/wallet/TransMonitor.java class TransMonitor (line 31) | public class TransMonitor { method getInstance (line 35) | public static TransMonitor getInstance() { method getWeb3j (line 46) | public Web3j getWeb3j() { method setWeb3j (line 50) | public void setWeb3j(Web3j web3j) { method subscribeBlock (line 54) | public Subscription subscribeBlock(final Action1 onN... method unsubscribeBlock (line 59) | public void unsubscribeBlock(Subscription subscription) { method subscribeHasTrans (line 69) | public Subscription subscribeHasTrans(final Action1