dequanto 0.0.1 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +28 -0
- package/actions/contracts.act.ts +50 -0
- package/actions/logs.act.ts +7 -0
- package/actions/safe.act.ts +7 -0
- package/actions/tokens.act.ts +20 -2
- package/configs/defi.yml +24 -0
- package/configs/dequanto.yml +49 -2
- package/contracts/abi/gnosis/GnosisSafe.json +979 -0
- package/contracts/gen/base/{ERC20Base.ts → ERC20Base/ERC20Base.ts} +136 -90
- package/contracts/gen/eth/WETHBase.ts +35 -35
- package/contracts/gnosis/GnosisSafe.ts +750 -0
- package/contracts/openzeppelin/AccessControl.json +206 -0
- package/contracts/openzeppelin/AccessControl.ts +236 -0
- package/contracts/openzeppelin/AccessControlCrossChain.json +219 -0
- package/contracts/openzeppelin/AccessControlCrossChain.ts +247 -0
- package/contracts/openzeppelin/AccessControlEnumerable.json +249 -0
- package/contracts/openzeppelin/AccessControlEnumerable.ts +258 -0
- package/contracts/openzeppelin/Address.json +1 -0
- package/contracts/openzeppelin/Address.ts +83 -0
- package/contracts/openzeppelin/Arrays.json +1 -0
- package/contracts/openzeppelin/Arrays.ts +83 -0
- package/contracts/openzeppelin/Base64.json +1 -0
- package/contracts/openzeppelin/Base64.ts +83 -0
- package/contracts/openzeppelin/BeaconProxy.json +71 -0
- package/contracts/openzeppelin/BeaconProxy.ts +163 -0
- package/contracts/openzeppelin/BitMaps.json +1 -0
- package/contracts/openzeppelin/BitMaps.ts +83 -0
- package/contracts/openzeppelin/Checkpoints.json +1 -0
- package/contracts/openzeppelin/Checkpoints.ts +83 -0
- package/contracts/openzeppelin/Clones.json +1 -0
- package/contracts/openzeppelin/Clones.ts +83 -0
- package/contracts/openzeppelin/ConditionalEscrow.json +156 -0
- package/contracts/openzeppelin/ConditionalEscrow.ts +236 -0
- package/contracts/openzeppelin/Context.json +1 -0
- package/contracts/openzeppelin/Context.ts +83 -0
- package/contracts/openzeppelin/Counters.json +1 -0
- package/contracts/openzeppelin/Counters.ts +83 -0
- package/contracts/openzeppelin/Create2.json +1 -0
- package/contracts/openzeppelin/Create2.ts +83 -0
- package/contracts/openzeppelin/CrossChainEnabled.json +1 -0
- package/contracts/openzeppelin/CrossChainEnabled.ts +83 -0
- package/contracts/openzeppelin/CrossChainEnabledAMB.json +13 -0
- package/contracts/openzeppelin/CrossChainEnabledAMB.ts +83 -0
- package/contracts/openzeppelin/CrossChainEnabledArbitrumL1.json +1 -0
- package/contracts/openzeppelin/CrossChainEnabledArbitrumL1.ts +83 -0
- package/contracts/openzeppelin/CrossChainEnabledArbitrumL2.json +1 -0
- package/contracts/openzeppelin/CrossChainEnabledArbitrumL2.ts +83 -0
- package/contracts/openzeppelin/CrossChainEnabledOptimism.json +1 -0
- package/contracts/openzeppelin/CrossChainEnabledOptimism.ts +83 -0
- package/contracts/openzeppelin/CrossChainEnabledPolygonChild.json +30 -0
- package/contracts/openzeppelin/CrossChainEnabledPolygonChild.ts +90 -0
- package/contracts/openzeppelin/DoubleEndedQueue.json +12 -0
- package/contracts/openzeppelin/DoubleEndedQueue.ts +83 -0
- package/contracts/openzeppelin/ECDSA.json +1 -0
- package/contracts/openzeppelin/ECDSA.ts +83 -0
- package/contracts/openzeppelin/EIP712.json +1 -0
- package/contracts/openzeppelin/EIP712.ts +83 -0
- package/contracts/openzeppelin/ERC1155.json +325 -0
- package/contracts/openzeppelin/ERC1155.ts +276 -0
- package/contracts/openzeppelin/ERC1155Burnable.json +360 -0
- package/contracts/openzeppelin/ERC1155Burnable.ts +298 -0
- package/contracts/openzeppelin/ERC1155Holder.json +99 -0
- package/contracts/openzeppelin/ERC1155Holder.ts +112 -0
- package/contracts/openzeppelin/ERC1155Pausable.json +353 -0
- package/contracts/openzeppelin/ERC1155Pausable.ts +345 -0
- package/contracts/openzeppelin/ERC1155PresetMinterPauser.json +734 -0
- package/contracts/openzeppelin/ERC1155PresetMinterPauser.ts +608 -0
- package/contracts/openzeppelin/ERC1155Receiver.json +99 -0
- package/contracts/openzeppelin/ERC1155Receiver.ts +112 -0
- package/contracts/openzeppelin/ERC1155Supply.json +352 -0
- package/contracts/openzeppelin/ERC1155Supply.ts +298 -0
- package/contracts/openzeppelin/ERC1155URIStorage.json +314 -0
- package/contracts/openzeppelin/ERC1155URIStorage.ts +276 -0
- package/contracts/openzeppelin/ERC165.json +21 -0
- package/contracts/openzeppelin/ERC165.ts +90 -0
- package/contracts/openzeppelin/ERC165Checker.json +1 -0
- package/contracts/openzeppelin/ERC165Checker.ts +83 -0
- package/contracts/openzeppelin/ERC165Storage.json +21 -0
- package/contracts/openzeppelin/ERC165Storage.ts +90 -0
- package/contracts/openzeppelin/ERC1820Implementer.json +26 -0
- package/contracts/openzeppelin/ERC1820Implementer.ts +90 -0
- package/contracts/openzeppelin/ERC1967Proxy.json +71 -0
- package/contracts/openzeppelin/ERC1967Proxy.ts +163 -0
- package/contracts/openzeppelin/ERC1967Upgrade.json +47 -0
- package/contracts/openzeppelin/ERC1967Upgrade.ts +163 -0
- package/contracts/openzeppelin/ERC20.json +288 -0
- package/contracts/openzeppelin/ERC20.ts +251 -0
- package/contracts/openzeppelin/ERC20Burnable.json +303 -0
- package/contracts/openzeppelin/ERC20Burnable.ts +273 -0
- package/contracts/openzeppelin/ERC20Capped.json +285 -0
- package/contracts/openzeppelin/ERC20Capped.ts +262 -0
- package/contracts/openzeppelin/ERC20FlashMint.json +349 -0
- package/contracts/openzeppelin/ERC20FlashMint.ts +284 -0
- package/contracts/openzeppelin/ERC20Pausable.json +311 -0
- package/contracts/openzeppelin/ERC20Pausable.ts +320 -0
- package/contracts/openzeppelin/ERC20Permit.json +347 -0
- package/contracts/openzeppelin/ERC20Permit.ts +284 -0
- package/contracts/openzeppelin/ERC20PresetFixedSupply.json +329 -0
- package/contracts/openzeppelin/ERC20PresetFixedSupply.ts +273 -0
- package/contracts/openzeppelin/ERC20PresetMinterPauser.json +663 -0
- package/contracts/openzeppelin/ERC20PresetMinterPauser.ts +583 -0
- package/contracts/openzeppelin/ERC20Snapshot.json +328 -0
- package/contracts/openzeppelin/ERC20Snapshot.ts +302 -0
- package/contracts/openzeppelin/ERC20Votes.json +584 -0
- package/contracts/openzeppelin/ERC20Votes.ts +430 -0
- package/contracts/openzeppelin/ERC20VotesComp.json +627 -0
- package/contracts/openzeppelin/ERC20VotesComp.ts +452 -0
- package/contracts/openzeppelin/ERC20Wrapper.json +333 -0
- package/contracts/openzeppelin/ERC20Wrapper.ts +284 -0
- package/contracts/openzeppelin/ERC2771Context.json +21 -0
- package/contracts/openzeppelin/ERC2771Context.ts +90 -0
- package/contracts/openzeppelin/ERC2981.json +50 -0
- package/contracts/openzeppelin/ERC2981.ts +101 -0
- package/contracts/openzeppelin/ERC4626.json +662 -0
- package/contracts/openzeppelin/ERC4626.ts +485 -0
- package/contracts/openzeppelin/ERC721.json +348 -0
- package/contracts/openzeppelin/ERC721.ts +295 -0
- package/contracts/openzeppelin/ERC721Burnable.json +345 -0
- package/contracts/openzeppelin/ERC721Burnable.ts +306 -0
- package/contracts/openzeppelin/ERC721Enumerable.json +388 -0
- package/contracts/openzeppelin/ERC721Enumerable.ts +328 -0
- package/contracts/openzeppelin/ERC721Holder.json +36 -0
- package/contracts/openzeppelin/ERC721Holder.ts +90 -0
- package/contracts/openzeppelin/ERC721Pausable.json +371 -0
- package/contracts/openzeppelin/ERC721Pausable.ts +364 -0
- package/contracts/openzeppelin/ERC721PresetMinterPauserAutoId.json +742 -0
- package/contracts/openzeppelin/ERC721PresetMinterPauserAutoId.ts +638 -0
- package/contracts/openzeppelin/ERC721Royalty.json +361 -0
- package/contracts/openzeppelin/ERC721Royalty.ts +306 -0
- package/contracts/openzeppelin/ERC721URIStorage.json +332 -0
- package/contracts/openzeppelin/ERC721URIStorage.ts +295 -0
- package/contracts/openzeppelin/ERC721Votes.json +546 -0
- package/contracts/openzeppelin/ERC721Votes.ts +441 -0
- package/contracts/openzeppelin/ERC777.json +578 -0
- package/contracts/openzeppelin/ERC777.ts +473 -0
- package/contracts/openzeppelin/ERC777PresetFixedSupply.json +588 -0
- package/contracts/openzeppelin/ERC777PresetFixedSupply.ts +473 -0
- package/contracts/openzeppelin/EnumerableMap.json +1 -0
- package/contracts/openzeppelin/EnumerableMap.ts +83 -0
- package/contracts/openzeppelin/EnumerableSet.json +1 -0
- package/contracts/openzeppelin/EnumerableSet.ts +83 -0
- package/contracts/openzeppelin/Escrow.json +137 -0
- package/contracts/openzeppelin/Escrow.ts +225 -0
- package/contracts/openzeppelin/Governor.json +866 -0
- package/contracts/openzeppelin/Governor.ts +525 -0
- package/contracts/openzeppelin/GovernorCompatibilityBravo.json +1181 -0
- package/contracts/openzeppelin/GovernorCompatibilityBravo.ts +654 -0
- package/contracts/openzeppelin/GovernorCountingSimple.json +895 -0
- package/contracts/openzeppelin/GovernorCountingSimple.ts +536 -0
- package/contracts/openzeppelin/GovernorPreventLateQuorum.json +930 -0
- package/contracts/openzeppelin/GovernorPreventLateQuorum.ts +605 -0
- package/contracts/openzeppelin/GovernorProposalThreshold.json +866 -0
- package/contracts/openzeppelin/GovernorProposalThreshold.ts +525 -0
- package/contracts/openzeppelin/GovernorSettings.json +962 -0
- package/contracts/openzeppelin/GovernorSettings.ts +645 -0
- package/contracts/openzeppelin/GovernorTimelockCompound.json +990 -0
- package/contracts/openzeppelin/GovernorTimelockCompound.ts +638 -0
- package/contracts/openzeppelin/GovernorTimelockControl.json +983 -0
- package/contracts/openzeppelin/GovernorTimelockControl.ts +627 -0
- package/contracts/openzeppelin/GovernorVotes.json +879 -0
- package/contracts/openzeppelin/GovernorVotes.ts +536 -0
- package/contracts/openzeppelin/GovernorVotesComp.json +879 -0
- package/contracts/openzeppelin/GovernorVotesComp.ts +536 -0
- package/contracts/openzeppelin/GovernorVotesQuorumFraction.json +937 -0
- package/contracts/openzeppelin/GovernorVotesQuorumFraction.ts +598 -0
- package/contracts/openzeppelin/IAMB.json +327 -0
- package/contracts/openzeppelin/IAMB.ts +331 -0
- package/contracts/openzeppelin/IAccessControl.json +174 -0
- package/contracts/openzeppelin/IAccessControl.ts +214 -0
- package/contracts/openzeppelin/IAccessControlEnumerable.json +217 -0
- package/contracts/openzeppelin/IAccessControlEnumerable.ts +236 -0
- package/contracts/openzeppelin/IArbSys.json +270 -0
- package/contracts/openzeppelin/IArbSys.ts +233 -0
- package/contracts/openzeppelin/IBeacon.json +15 -0
- package/contracts/openzeppelin/IBeacon.ts +90 -0
- package/contracts/openzeppelin/IBridge.json +296 -0
- package/contracts/openzeppelin/IBridge.ts +287 -0
- package/contracts/openzeppelin/ICompoundTimelock.json +415 -0
- package/contracts/openzeppelin/ICompoundTimelock.ts +389 -0
- package/contracts/openzeppelin/ICrossDomainMessenger.json +101 -0
- package/contracts/openzeppelin/ICrossDomainMessenger.ts +181 -0
- package/contracts/openzeppelin/IERC1155.json +295 -0
- package/contracts/openzeppelin/IERC1155.ts +265 -0
- package/contracts/openzeppelin/IERC1155MetadataURI.json +314 -0
- package/contracts/openzeppelin/IERC1155MetadataURI.ts +276 -0
- package/contracts/openzeppelin/IERC1155Receiver.json +99 -0
- package/contracts/openzeppelin/IERC1155Receiver.ts +112 -0
- package/contracts/openzeppelin/IERC1271.json +26 -0
- package/contracts/openzeppelin/IERC1271.ts +90 -0
- package/contracts/openzeppelin/IERC1363.json +373 -0
- package/contracts/openzeppelin/IERC1363.ts +252 -0
- package/contracts/openzeppelin/IERC1363Receiver.json +36 -0
- package/contracts/openzeppelin/IERC1363Receiver.ts +90 -0
- package/contracts/openzeppelin/IERC1363Spender.json +31 -0
- package/contracts/openzeppelin/IERC1363Spender.ts +90 -0
- package/contracts/openzeppelin/IERC165.json +21 -0
- package/contracts/openzeppelin/IERC165.ts +90 -0
- package/contracts/openzeppelin/IERC1820Implementer.json +26 -0
- package/contracts/openzeppelin/IERC1820Implementer.ts +90 -0
- package/contracts/openzeppelin/IERC1820Registry.json +215 -0
- package/contracts/openzeppelin/IERC1820Registry.ts +218 -0
- package/contracts/openzeppelin/IERC1822Proxiable.json +15 -0
- package/contracts/openzeppelin/IERC1822Proxiable.ts +90 -0
- package/contracts/openzeppelin/IERC20.json +185 -0
- package/contracts/openzeppelin/IERC20.ts +196 -0
- package/contracts/openzeppelin/IERC20Metadata.json +224 -0
- package/contracts/openzeppelin/IERC20Metadata.ts +229 -0
- package/contracts/openzeppelin/IERC20Permit.json +77 -0
- package/contracts/openzeppelin/IERC20Permit.ts +112 -0
- package/contracts/openzeppelin/IERC2612.json +77 -0
- package/contracts/openzeppelin/IERC2612.ts +112 -0
- package/contracts/openzeppelin/IERC2981.json +50 -0
- package/contracts/openzeppelin/IERC2981.ts +101 -0
- package/contracts/openzeppelin/IERC3156FlashBorrower.json +41 -0
- package/contracts/openzeppelin/IERC3156FlashBorrower.ts +90 -0
- package/contracts/openzeppelin/IERC3156FlashLender.json +79 -0
- package/contracts/openzeppelin/IERC3156FlashLender.ts +112 -0
- package/contracts/openzeppelin/IERC4626.json +614 -0
- package/contracts/openzeppelin/IERC4626.ts +463 -0
- package/contracts/openzeppelin/IERC721.json +287 -0
- package/contracts/openzeppelin/IERC721.ts +262 -0
- package/contracts/openzeppelin/IERC721Enumerable.json +343 -0
- package/contracts/openzeppelin/IERC721Enumerable.ts +295 -0
- package/contracts/openzeppelin/IERC721Metadata.json +332 -0
- package/contracts/openzeppelin/IERC721Metadata.ts +295 -0
- package/contracts/openzeppelin/IERC721Receiver.json +36 -0
- package/contracts/openzeppelin/IERC721Receiver.ts +90 -0
- package/contracts/openzeppelin/IERC777.json +393 -0
- package/contracts/openzeppelin/IERC777.ts +360 -0
- package/contracts/openzeppelin/IERC777Recipient.json +40 -0
- package/contracts/openzeppelin/IERC777Recipient.ts +90 -0
- package/contracts/openzeppelin/IERC777Sender.json +40 -0
- package/contracts/openzeppelin/IERC777Sender.ts +90 -0
- package/contracts/openzeppelin/IFxMessageProcessor.json +25 -0
- package/contracts/openzeppelin/IFxMessageProcessor.ts +90 -0
- package/contracts/openzeppelin/IGovernor.json +683 -0
- package/contracts/openzeppelin/IGovernor.ts +448 -0
- package/contracts/openzeppelin/IGovernorCompatibilityBravo.json +913 -0
- package/contracts/openzeppelin/IGovernorCompatibilityBravo.ts +522 -0
- package/contracts/openzeppelin/IGovernorTimelock.json +768 -0
- package/contracts/openzeppelin/IGovernorTimelock.ts +510 -0
- package/contracts/openzeppelin/IInbox.json +377 -0
- package/contracts/openzeppelin/IInbox.ts +273 -0
- package/contracts/openzeppelin/IMessageProvider.json +34 -0
- package/contracts/openzeppelin/IMessageProvider.ts +134 -0
- package/contracts/openzeppelin/IOutbox.json +179 -0
- package/contracts/openzeppelin/IOutbox.ts +218 -0
- package/contracts/openzeppelin/IVotes.json +184 -0
- package/contracts/openzeppelin/IVotes.ts +196 -0
- package/contracts/openzeppelin/Initializable.json +15 -0
- package/contracts/openzeppelin/Initializable.ts +105 -0
- package/contracts/openzeppelin/LibAMB.json +1 -0
- package/contracts/openzeppelin/LibAMB.ts +83 -0
- package/contracts/openzeppelin/LibArbitrumL1.json +1 -0
- package/contracts/openzeppelin/LibArbitrumL1.ts +83 -0
- package/contracts/openzeppelin/LibArbitrumL2.json +15 -0
- package/contracts/openzeppelin/LibArbitrumL2.ts +90 -0
- package/contracts/openzeppelin/LibOptimism.json +1 -0
- package/contracts/openzeppelin/LibOptimism.ts +83 -0
- package/contracts/openzeppelin/Math.json +1 -0
- package/contracts/openzeppelin/Math.ts +83 -0
- package/contracts/openzeppelin/MerkleProof.json +1 -0
- package/contracts/openzeppelin/MerkleProof.ts +83 -0
- package/contracts/openzeppelin/MinimalForwarder.json +143 -0
- package/contracts/openzeppelin/MinimalForwarder.ts +112 -0
- package/contracts/openzeppelin/Multicall.json +21 -0
- package/contracts/openzeppelin/Multicall.ts +90 -0
- package/contracts/openzeppelin/Ownable.json +54 -0
- package/contracts/openzeppelin/Ownable.ts +134 -0
- package/contracts/openzeppelin/Pausable.json +41 -0
- package/contracts/openzeppelin/Pausable.ts +141 -0
- package/contracts/openzeppelin/PaymentSplitter.json +304 -0
- package/contracts/openzeppelin/PaymentSplitter.ts +281 -0
- package/contracts/openzeppelin/Proxy.json +10 -0
- package/contracts/openzeppelin/Proxy.ts +83 -0
- package/contracts/openzeppelin/ProxyAdmin.json +151 -0
- package/contracts/openzeppelin/ProxyAdmin.ts +189 -0
- package/contracts/openzeppelin/PullPayment.json +34 -0
- package/contracts/openzeppelin/PullPayment.ts +101 -0
- package/contracts/openzeppelin/ReentrancyGuard.json +1 -0
- package/contracts/openzeppelin/ReentrancyGuard.ts +83 -0
- package/contracts/openzeppelin/RefundEscrow.json +226 -0
- package/contracts/openzeppelin/RefundEscrow.ts +349 -0
- package/contracts/openzeppelin/SafeCast.json +1 -0
- package/contracts/openzeppelin/SafeCast.ts +83 -0
- package/contracts/openzeppelin/SafeERC20.json +1 -0
- package/contracts/openzeppelin/SafeERC20.ts +83 -0
- package/contracts/openzeppelin/SafeMath.json +1 -0
- package/contracts/openzeppelin/SafeMath.ts +83 -0
- package/contracts/openzeppelin/SignatureChecker.json +1 -0
- package/contracts/openzeppelin/SignatureChecker.ts +83 -0
- package/contracts/openzeppelin/SignedMath.json +1 -0
- package/contracts/openzeppelin/SignedMath.ts +83 -0
- package/contracts/openzeppelin/SignedSafeMath.json +1 -0
- package/contracts/openzeppelin/SignedSafeMath.ts +83 -0
- package/contracts/openzeppelin/StorageSlot.json +1 -0
- package/contracts/openzeppelin/StorageSlot.ts +83 -0
- package/contracts/openzeppelin/Strings.json +1 -0
- package/contracts/openzeppelin/Strings.ts +83 -0
- package/contracts/openzeppelin/TimelockController.json +867 -0
- package/contracts/openzeppelin/TimelockController.ts +583 -0
- package/contracts/openzeppelin/Timers.json +1 -0
- package/contracts/openzeppelin/Timers.ts +83 -0
- package/contracts/openzeppelin/TokenTimelock.json +69 -0
- package/contracts/openzeppelin/TokenTimelock.ts +123 -0
- package/contracts/openzeppelin/TransparentUpgradeableProxy.json +146 -0
- package/contracts/openzeppelin/TransparentUpgradeableProxy.ts +214 -0
- package/contracts/openzeppelin/UUPSUpgradeable.json +91 -0
- package/contracts/openzeppelin/UUPSUpgradeable.ts +192 -0
- package/contracts/openzeppelin/UpgradeableBeacon.json +104 -0
- package/contracts/openzeppelin/UpgradeableBeacon.ts +185 -0
- package/contracts/openzeppelin/VestingWallet.json +193 -0
- package/contracts/openzeppelin/VestingWallet.ts +208 -0
- package/contracts/openzeppelin/Votes.json +216 -0
- package/contracts/openzeppelin/Votes.ts +218 -0
- package/data/evm/eventHashes.json +19314 -0
- package/data/evm/events.json +19314 -0
- package/data/evm/functionHashes.json +121138 -0
- package/data/evm/functions.json +121140 -0
- package/data/tokens/coingecko.json +137409 -0
- package/dist/contracts/gen/base/ERC20Base/ERC20Base.js +94 -0
- package/dist/contracts/gnosis/GnosisSafe.js +357 -0
- package/dist/src/BlockchainExplorer/BlockChainExplorerFactory.js +114 -20
- package/dist/src/BlockchainExplorer/BlockChainExplorerProvider.js +8 -0
- package/dist/src/BlockchainExplorer/Bscscan.js +1 -0
- package/dist/src/BlockchainExplorer/Etherscan.js +14 -4
- package/dist/src/BlockchainExplorer/Evmscan.js +9 -0
- package/dist/src/BlockchainExplorer/Polyscan.js +1 -0
- package/dist/src/ChainAccountProvider.js +89 -0
- package/dist/src/ChainAccountsService.js +20 -2
- package/dist/src/Config.js +76 -0
- package/dist/src/blocks/BlockDateResolver.js +9 -8
- package/dist/src/bridges/hop/HopBridge.js +5 -2
- package/dist/src/chains/PlatformFactory.js +2 -2
- package/dist/src/chains/arbitrum/ArbWeb3Client.js +5 -24
- package/dist/src/chains/arbitrum/TokensServiceArbitrum.js +18 -0
- package/dist/src/chains/boba/BobaWeb3Client.js +5 -33
- package/dist/src/chains/xdai/XDaiWeb3Client.js +6 -30
- package/dist/src/class/SubjectKind.js +9 -0
- package/dist/src/class/SubjectStream.js +104 -0
- package/dist/src/class/Subscription.js +13 -0
- package/dist/src/clients/BscWeb3Client.js +5 -24
- package/dist/src/clients/ClientEventsStream.js +62 -18
- package/dist/src/clients/ClientPool.js +115 -55
- package/dist/src/clients/EthWeb3Client.js +7 -22
- package/dist/src/clients/EvmWeb3Client.js +25 -0
- package/dist/src/clients/HardhatWeb3Client.js +19 -40
- package/dist/src/clients/PolyWeb3Client.js +5 -51
- package/dist/src/clients/Web3Client.js +355 -10
- package/dist/src/clients/Web3ClientFactory.js +15 -0
- package/dist/src/clients/debug/ClientDebugMethods.js +64 -0
- package/dist/src/clients/utils/ClientEndpoints.js +6 -0
- package/dist/src/clients/utils/TxFactory.js +7 -12
- package/dist/src/contracts/Contract.js +2 -1
- package/dist/src/contracts/ContractAbiProvider.js +58 -0
- package/dist/src/contracts/ContractBase.js +161 -26
- package/dist/src/contracts/ContractReader.js +78 -2
- package/dist/src/contracts/ContractStorageReaderBase.js +15 -0
- package/dist/src/contracts/ContractStream.js +21 -8
- package/dist/src/contracts/ContractWriter.js +47 -20
- package/dist/src/contracts/TxContract.js +6 -3
- package/dist/src/contracts/common/ERC20.js +1 -1
- package/dist/src/contracts/utils/AbiDeserializer.js +15 -5
- package/dist/src/contracts/utils/InputDataUtils.js +5 -2
- package/dist/src/env/BigIntSerializer.js +2 -1
- package/dist/src/evm/EVM.js +214 -0
- package/dist/src/evm/OpcodesWalker.js +137 -0
- package/dist/src/evm/Stack.js +57 -0
- package/dist/src/evm/interfaces/IJumps.js +2 -0
- package/dist/src/evm/interfaces/IMemory.js +2 -0
- package/dist/src/evm/interfaces/IOpcode.js +2 -0
- package/dist/src/evm/interfaces/IStorage.js +2 -0
- package/dist/src/evm/opcodes/add.js +50 -0
- package/dist/src/evm/opcodes/addmod.js +19 -0
- package/dist/src/evm/opcodes/address.js +17 -0
- package/dist/src/evm/opcodes/and.js +56 -0
- package/dist/src/evm/opcodes/balance.js +22 -0
- package/dist/src/evm/opcodes/blockhash.js +22 -0
- package/dist/src/evm/opcodes/byte.js +30 -0
- package/dist/src/evm/opcodes/call.js +48 -0
- package/dist/src/evm/opcodes/callcode.js +48 -0
- package/dist/src/evm/opcodes/calldatacopy.js +27 -0
- package/dist/src/evm/opcodes/calldataload.js +33 -0
- package/dist/src/evm/opcodes/calldatasize.js +16 -0
- package/dist/src/evm/opcodes/caller.js +17 -0
- package/dist/src/evm/opcodes/callvalue.js +16 -0
- package/dist/src/evm/opcodes/codecopy.js +31 -0
- package/dist/src/evm/opcodes/codesize.js +16 -0
- package/dist/src/evm/opcodes/coinbase.js +16 -0
- package/dist/src/evm/opcodes/create.js +35 -0
- package/dist/src/evm/opcodes/create2.js +34 -0
- package/dist/src/evm/opcodes/delegatecall.js +44 -0
- package/dist/src/evm/opcodes/difficulty.js +16 -0
- package/dist/src/evm/opcodes/div.js +33 -0
- package/dist/src/evm/opcodes/dup.js +6 -0
- package/dist/src/evm/opcodes/eq.js +69 -0
- package/dist/src/evm/opcodes/exp.js +30 -0
- package/dist/src/evm/opcodes/extcodecopy.js +35 -0
- package/dist/src/evm/opcodes/extcodehash.js +22 -0
- package/dist/src/evm/opcodes/extcodesize.js +22 -0
- package/dist/src/evm/opcodes/gas.js +16 -0
- package/dist/src/evm/opcodes/gaslimit.js +16 -0
- package/dist/src/evm/opcodes/gasprice.js +16 -0
- package/dist/src/evm/opcodes/gt.js +36 -0
- package/dist/src/evm/opcodes/invalid.js +18 -0
- package/dist/src/evm/opcodes/iszero.js +51 -0
- package/dist/src/evm/opcodes/jump.js +66 -0
- package/dist/src/evm/opcodes/jumpdest.js +5 -0
- package/dist/src/evm/opcodes/jumpi.js +298 -0
- package/dist/src/evm/opcodes/log.js +74 -0
- package/dist/src/evm/opcodes/lt.js +36 -0
- package/dist/src/evm/opcodes/mload.js +28 -0
- package/dist/src/evm/opcodes/mod.js +30 -0
- package/dist/src/evm/opcodes/msize.js +16 -0
- package/dist/src/evm/opcodes/mstore.js +30 -0
- package/dist/src/evm/opcodes/mul.js +34 -0
- package/dist/src/evm/opcodes/mulmod.js +19 -0
- package/dist/src/evm/opcodes/not.js +28 -0
- package/dist/src/evm/opcodes/number.js +16 -0
- package/dist/src/evm/opcodes/or.js +30 -0
- package/dist/src/evm/opcodes/origin.js +16 -0
- package/dist/src/evm/opcodes/pc.js +5 -0
- package/dist/src/evm/opcodes/pop.js +5 -0
- package/dist/src/evm/opcodes/push.js +6 -0
- package/dist/src/evm/opcodes/return.js +70 -0
- package/dist/src/evm/opcodes/returndatacopy.js +31 -0
- package/dist/src/evm/opcodes/returndatasize.js +16 -0
- package/dist/src/evm/opcodes/revert.js +57 -0
- package/dist/src/evm/opcodes/sar.js +30 -0
- package/dist/src/evm/opcodes/selfdestruct.js +23 -0
- package/dist/src/evm/opcodes/sha3.js +56 -0
- package/dist/src/evm/opcodes/shl.js +35 -0
- package/dist/src/evm/opcodes/shr.js +30 -0
- package/dist/src/evm/opcodes/signextend.js +19 -0
- package/dist/src/evm/opcodes/sload.js +140 -0
- package/dist/src/evm/opcodes/sstore.js +189 -0
- package/dist/src/evm/opcodes/staticcall.js +44 -0
- package/dist/src/evm/opcodes/stop.js +17 -0
- package/dist/src/evm/opcodes/sub.js +30 -0
- package/dist/src/evm/opcodes/swap.js +6 -0
- package/dist/src/evm/opcodes/timestamp.js +16 -0
- package/dist/src/evm/opcodes/xor.js +30 -0
- package/dist/src/evm/opcodes.js +192 -0
- package/dist/src/evm/tx.class.js +154 -0
- package/dist/src/evm/utils/BigNumber.js +14 -0
- package/dist/src/evm/utils/hex.js +44 -0
- package/dist/src/evm/utils/opcodes.js +217 -0
- package/dist/src/evm/utils/stringify.js +14 -0
- package/dist/src/evm/utils/stringifyEvents.js +38 -0
- package/dist/src/evm/utils/stringifyFunctions.js +70 -0
- package/dist/src/evm/utils/stringifyInstructions.js +44 -0
- package/dist/src/evm/utils/stringifyMappings.js +62 -0
- package/dist/src/evm/utils/stringifyStructs.js +16 -0
- package/dist/src/evm/utils/stringifyVariables.js +33 -0
- package/dist/src/gen/ContractStorageReaderTemplate.js +11 -0
- package/dist/src/gen/Generator.js +37 -16
- package/dist/src/gen/GeneratorFromAbi.js +225 -72
- package/dist/src/gen/GeneratorStorageReader.js +89 -0
- package/dist/src/gen/utils/$gen.js +14 -0
- package/dist/src/gen/utils/Str.js +47 -0
- package/dist/src/hardhat/HardhatProvider.js +177 -0
- package/dist/src/indexer/BlocksTxIndexer.js +19 -7
- package/dist/src/indexer/handlers/BlocksWalker.js +65 -54
- package/dist/src/loggers/LoggerService.js +8 -5
- package/dist/src/models/TAccount.js +2 -0
- package/dist/src/ns/NameService.js +3 -0
- package/dist/src/ns/utils/$ns.js +6 -3
- package/dist/src/safe/$gnosis.js +23 -0
- package/dist/src/safe/GnosisSafeFactory.js +27 -0
- package/dist/src/safe/GnosisSafeHandler.js +361 -0
- package/dist/src/safe/transport/FileServiceTransport.js +92 -0
- package/dist/src/safe/transport/GnosisServiceTransport.js +78 -0
- package/dist/src/safe/transport/ISafeServiceTransport.js +2 -0
- package/dist/src/safe/transport/InMemoryServiceTransport.js +56 -0
- package/dist/src/solidity/SlotsParser.js +594 -0
- package/dist/src/solidity/SlotsStorage.js +158 -0
- package/dist/src/solidity/storage/Accessor.js +126 -0
- package/dist/src/solidity/storage/SlotDynamicArray.js +17 -0
- package/dist/src/solidity/storage/SlotFixedArray.js +28 -0
- package/dist/src/solidity/storage/SlotsStorageHandler.js +10 -0
- package/dist/src/solidity/storage/SlotsStorageTransport.js +126 -0
- package/dist/src/solidity/storage/handlers/SlotDynamicArrayHandler.js +47 -0
- package/dist/src/solidity/storage/handlers/SlotFixedArrayHandler.js +50 -0
- package/dist/src/solidity/storage/handlers/SlotMappingHandler.js +42 -0
- package/dist/src/solidity/storage/handlers/SlotStringHandler.js +109 -0
- package/dist/src/solidity/storage/handlers/SlotStructHandler.js +45 -0
- package/dist/src/solidity/storage/handlers/SlotValueHandler.js +30 -0
- package/dist/src/solidity/utils/$str.js +38 -0
- package/dist/src/solidity/utils/$types.js +22 -0
- package/dist/src/structs/PackedRanges.js +8 -1
- package/dist/src/tokens/TokenDataProvider.js +251 -0
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmPairV2Service.js +3 -1
- package/dist/src/tokens/TokenExchanges/AmmV2ExchangeBase.js +4 -4
- package/dist/src/tokens/TokenExchanges/PancakeswapExchange.js +4 -7
- package/dist/src/tokens/TokenExchanges/SushiswapPolygonExchange.js +4 -5
- package/dist/src/tokens/TokenExchanges/UniswapExchange.js +4 -7
- package/dist/src/tokens/TokenOracles/AmmPriceV2Oracle.js +2 -4
- package/dist/src/tokens/TokenOracles/CoingeckoOracle.js +12 -0
- package/dist/src/tokens/TokenOracles/TokenPriceStore.js +1 -1
- package/dist/src/tokens/TokenProviders/TPChain.js +14 -7
- package/dist/src/tokens/TokenProviders/TPCoingecko.js +117 -0
- package/dist/src/tokens/TokenProviders/TPConfig.js +46 -0
- package/dist/src/tokens/TokenProviders/TPExplorer.js +35 -0
- package/dist/src/tokens/TokenService.js +5 -2
- package/dist/src/tokens/TokenTransferService.js +28 -18
- package/dist/src/tokens/TokensService.js +32 -177
- package/dist/src/tokens/TokensServiceFactory.js +13 -1
- package/dist/src/txs/TxDataBuilder.js +54 -22
- package/dist/src/txs/TxLogger.js +3 -3
- package/dist/src/txs/TxWriter.js +169 -37
- package/dist/src/txs/receipt/TxLogParser.js +11 -1
- package/dist/src/txs/receipt/TxLogsTransfer.js +14 -13
- package/dist/src/txs/receipt/TxTopicProvider.js +10 -6
- package/dist/src/txs/sig-transports/SigFileTransport.js +48 -0
- package/dist/src/utils/$abiParser.js +55 -20
- package/dist/src/utils/$abiType.js +184 -3
- package/dist/src/utils/$abiUtils.js +54 -5
- package/dist/src/utils/$account.js +30 -0
- package/dist/src/utils/$address.js +8 -0
- package/dist/src/utils/$bigint.js +52 -3
- package/dist/src/utils/$block.js +16 -0
- package/dist/src/utils/$bloom.js +42 -0
- package/dist/src/utils/$buffer.js +94 -0
- package/dist/src/utils/$cli.js +20 -0
- package/dist/src/utils/$color.js +171 -0
- package/dist/src/utils/$config.js +65 -5
- package/dist/src/utils/$const.js +4 -0
- package/dist/src/utils/$contract.js +20 -2
- package/dist/src/utils/$crypto.js +25 -0
- package/dist/src/utils/$csv.js +17 -27
- package/dist/src/utils/$date.js +129 -25
- package/dist/src/utils/$gas.js +15 -0
- package/dist/src/utils/$hex.js +77 -0
- package/dist/src/utils/$is.js +24 -21
- package/dist/src/utils/$logger.js +56 -3
- package/dist/src/utils/$machine.js +77 -0
- package/dist/src/utils/$number.js +24 -1
- package/dist/src/utils/$path.js +17 -0
- package/dist/src/utils/$promise.js +81 -0
- package/dist/src/utils/$require.js +15 -1
- package/dist/src/utils/$secret.js +29 -0
- package/dist/src/utils/$sign.js +96 -14
- package/dist/src/utils/$signRaw.js +48 -0
- package/dist/src/utils/$signSerializer.js +5 -4
- package/dist/src/utils/$txData.js +19 -0
- package/hardhat.config.js +21 -1
- package/package.json +28 -14
- package/readme.md +21 -4
- package/src/BlockchainExplorer/BlockChainExplorerFactory.ts +149 -39
- package/src/BlockchainExplorer/BlockChainExplorerProvider.ts +10 -0
- package/src/BlockchainExplorer/Bscscan.ts +1 -0
- package/src/BlockchainExplorer/Etherscan.ts +17 -5
- package/src/BlockchainExplorer/Evmscan.ts +8 -0
- package/src/BlockchainExplorer/IBlockChainExplorer.ts +3 -2
- package/src/BlockchainExplorer/Polyscan.ts +1 -0
- package/src/ChainAccountProvider.ts +84 -0
- package/src/ChainAccountsService.ts +21 -2
- package/src/Config.ts +85 -0
- package/src/blocks/BlockDateResolver.ts +10 -12
- package/src/bridges/hop/HopBridge.ts +9 -2
- package/src/bridges/hop/contracts/polygon/Dai_l2AmmWrapperContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Dai_l2BridgeContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Dai_l2SaddleSwapContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Eth_l2AmmWrapperContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Eth_l2BridgeContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Eth_l2SaddleSwapContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Matic_l2AmmWrapperContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Matic_l2BridgeContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Matic_l2SaddleSwapContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Usdc_l2AmmWrapperContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Usdc_l2BridgeContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Usdc_l2SaddleSwapContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Usdt_l2AmmWrapperContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Usdt_l2BridgeContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Usdt_l2SaddleSwapContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Wbtc_l2AmmWrapperContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Wbtc_l2BridgeContract.ts +35 -35
- package/src/bridges/hop/contracts/polygon/Wbtc_l2SaddleSwapContract.ts +35 -35
- package/src/bridges/models/IBridge.ts +1 -1
- package/src/chains/PlatformFactory.ts +3 -2
- package/src/chains/arbitrum/ArbWeb3Client.ts +7 -22
- package/src/chains/arbitrum/TokensServiceArbitrum.ts +19 -0
- package/src/chains/boba/BobaWeb3Client.ts +5 -33
- package/src/chains/xdai/XDaiWeb3Client.ts +6 -32
- package/src/class/SubjectKind.ts +5 -0
- package/src/class/SubjectStream.ts +111 -0
- package/src/class/Subscription.ts +7 -0
- package/src/clients/BscWeb3Client.ts +5 -22
- package/src/clients/ClientEventsStream.ts +86 -19
- package/src/clients/ClientPool.ts +145 -61
- package/src/clients/EthWeb3Client.ts +8 -21
- package/src/clients/EvmWeb3Client.ts +26 -0
- package/src/clients/HardhatWeb3Client.ts +17 -39
- package/src/clients/PolyWeb3Client.ts +5 -54
- package/src/clients/Web3Client.ts +430 -32
- package/src/clients/Web3ClientFactory.ts +17 -1
- package/src/clients/debug/ClientDebugMethods.ts +75 -0
- package/src/clients/interfaces/IWeb3Client.ts +33 -5
- package/src/clients/interfaces/IWeb3EndpointOptions.ts +6 -0
- package/src/clients/utils/ClientEndpoints.ts +6 -0
- package/src/clients/utils/TxFactory.ts +13 -13
- package/src/contracts/Contract.ts +3 -2
- package/src/contracts/ContractAbiProvider.ts +68 -0
- package/src/contracts/ContractBase.ts +205 -36
- package/src/contracts/ContractReader.ts +116 -3
- package/src/contracts/ContractStorageReaderBase.ts +26 -0
- package/src/contracts/ContractStream.ts +24 -6
- package/src/contracts/ContractWriter.ts +58 -28
- package/src/contracts/TxContract.ts +7 -4
- package/src/contracts/common/ERC20.ts +1 -1
- package/src/contracts/utils/AbiDeserializer.ts +16 -7
- package/src/contracts/utils/InputDataUtils.ts +8 -6
- package/src/env/BigIntSerializer.ts +3 -1
- package/src/evm/EVM.ts +246 -0
- package/src/evm/OpcodesWalker.ts +149 -0
- package/src/evm/Stack.ts +58 -0
- package/src/evm/interfaces/IJumps.ts +3 -0
- package/src/evm/interfaces/IMemory.ts +3 -0
- package/src/evm/interfaces/IOpcode.ts +11 -0
- package/src/evm/interfaces/IStorage.ts +3 -0
- package/src/evm/opcodes/add.ts +49 -0
- package/src/evm/opcodes/addmod.ts +19 -0
- package/src/evm/opcodes/address.ts +22 -0
- package/src/evm/opcodes/and.ts +58 -0
- package/src/evm/opcodes/balance.ts +25 -0
- package/src/evm/opcodes/blockhash.ts +25 -0
- package/src/evm/opcodes/byte.ts +34 -0
- package/src/evm/opcodes/call.ts +69 -0
- package/src/evm/opcodes/callcode.ts +69 -0
- package/src/evm/opcodes/calldatacopy.ts +36 -0
- package/src/evm/opcodes/calldataload.ts +40 -0
- package/src/evm/opcodes/calldatasize.ts +21 -0
- package/src/evm/opcodes/caller.ts +22 -0
- package/src/evm/opcodes/callvalue.ts +21 -0
- package/src/evm/opcodes/codecopy.ts +37 -0
- package/src/evm/opcodes/codesize.ts +21 -0
- package/src/evm/opcodes/coinbase.ts +21 -0
- package/src/evm/opcodes/create.ts +42 -0
- package/src/evm/opcodes/create2.ts +41 -0
- package/src/evm/opcodes/delegatecall.ts +63 -0
- package/src/evm/opcodes/difficulty.ts +21 -0
- package/src/evm/opcodes/div.ts +35 -0
- package/src/evm/opcodes/dup.ts +7 -0
- package/src/evm/opcodes/eq.ts +92 -0
- package/src/evm/opcodes/exp.ts +34 -0
- package/src/evm/opcodes/extcodecopy.ts +42 -0
- package/src/evm/opcodes/extcodehash.ts +25 -0
- package/src/evm/opcodes/extcodesize.ts +25 -0
- package/src/evm/opcodes/gas.ts +21 -0
- package/src/evm/opcodes/gaslimit.ts +21 -0
- package/src/evm/opcodes/gasprice.ts +21 -0
- package/src/evm/opcodes/gt.ts +39 -0
- package/src/evm/opcodes/invalid.ts +24 -0
- package/src/evm/opcodes/iszero.ts +48 -0
- package/src/evm/opcodes/jump.ts +66 -0
- package/src/evm/opcodes/jumpdest.ts +6 -0
- package/src/evm/opcodes/jumpi.ts +367 -0
- package/src/evm/opcodes/log.ts +89 -0
- package/src/evm/opcodes/lt.ts +39 -0
- package/src/evm/opcodes/mload.ts +30 -0
- package/src/evm/opcodes/mod.ts +33 -0
- package/src/evm/opcodes/msize.ts +21 -0
- package/src/evm/opcodes/mstore.ts +33 -0
- package/src/evm/opcodes/mul.ts +38 -0
- package/src/evm/opcodes/mulmod.ts +19 -0
- package/src/evm/opcodes/not.ts +30 -0
- package/src/evm/opcodes/number.ts +21 -0
- package/src/evm/opcodes/or.ts +33 -0
- package/src/evm/opcodes/origin.ts +21 -0
- package/src/evm/opcodes/pc.ts +7 -0
- package/src/evm/opcodes/pop.ts +6 -0
- package/src/evm/opcodes/push.ts +8 -0
- package/src/evm/opcodes/return.ts +78 -0
- package/src/evm/opcodes/returndatacopy.ts +37 -0
- package/src/evm/opcodes/returndatasize.ts +21 -0
- package/src/evm/opcodes/revert.ts +64 -0
- package/src/evm/opcodes/sar.ts +33 -0
- package/src/evm/opcodes/selfdestruct.ts +26 -0
- package/src/evm/opcodes/sha3.ts +63 -0
- package/src/evm/opcodes/shl.ts +42 -0
- package/src/evm/opcodes/shr.ts +33 -0
- package/src/evm/opcodes/signextend.ts +25 -0
- package/src/evm/opcodes/sload.ts +190 -0
- package/src/evm/opcodes/sstore.ts +259 -0
- package/src/evm/opcodes/staticcall.ts +63 -0
- package/src/evm/opcodes/stop.ts +22 -0
- package/src/evm/opcodes/sub.ts +33 -0
- package/src/evm/opcodes/swap.ts +7 -0
- package/src/evm/opcodes/timestamp.ts +21 -0
- package/src/evm/opcodes/xor.ts +33 -0
- package/src/evm/opcodes.ts +207 -0
- package/src/evm/tx.class.ts +137 -0
- package/src/evm/utils/BigNumber.ts +9 -0
- package/src/evm/utils/hex.ts +37 -0
- package/src/evm/utils/opcodes.ts +213 -0
- package/src/evm/utils/stringify.ts +12 -0
- package/src/evm/utils/stringifyEvents.ts +37 -0
- package/src/evm/utils/stringifyFunctions.ts +41 -0
- package/src/evm/utils/stringifyInstructions.ts +38 -0
- package/src/evm/utils/stringifyMappings.ts +65 -0
- package/src/evm/utils/stringifyStructs.ts +16 -0
- package/src/evm/utils/stringifyVariables.ts +32 -0
- package/src/gen/ContractStorageReaderTemplate.ts +18 -0
- package/src/gen/ContractTemplate.ts +41 -7
- package/src/gen/Generator.ts +50 -19
- package/src/gen/GeneratorFromAbi.ts +239 -67
- package/src/gen/GeneratorStorageReader.ts +113 -0
- package/src/gen/utils/$gen.ts +11 -0
- package/src/gen/utils/Str.ts +40 -0
- package/src/handlers/TokenHandler.ts +1 -1
- package/src/hardhat/HardhatProvider.ts +207 -0
- package/src/indexer/BlocksTxIndexer.ts +36 -10
- package/src/indexer/handlers/BlocksWalker.ts +81 -62
- package/src/indexer/handlers/TxQueueLoader.ts +7 -7
- package/src/json/JsonObjectStore.ts +1 -1
- package/src/loggers/LoggerService.ts +9 -5
- package/src/loggers/TxLoggerService.ts +1 -1
- package/src/models/IToken.ts +9 -0
- package/src/models/TAccount.ts +30 -0
- package/src/models/TBufferLike.ts +2 -2
- package/src/models/TPlatform.ts +1 -1
- package/src/ns/NameService.ts +3 -0
- package/src/ns/utils/$ns.ts +3 -4
- package/src/safe/$gnosis.ts +20 -0
- package/src/safe/GnosisSafeFactory.ts +40 -0
- package/src/safe/GnosisSafeHandler.ts +432 -0
- package/src/safe/transport/FileServiceTransport.ts +115 -0
- package/src/safe/transport/GnosisServiceTransport.ts +83 -0
- package/src/safe/transport/ISafeServiceTransport.ts +26 -0
- package/src/safe/transport/InMemoryServiceTransport.ts +79 -0
- package/src/solidity/SlotsParser.ts +650 -0
- package/src/solidity/SlotsStorage.ts +177 -0
- package/src/solidity/storage/Accessor.spec.ts +45 -0
- package/src/solidity/storage/Accessor.ts +136 -0
- package/src/solidity/storage/SlotDynamicArray.ts +46 -0
- package/src/solidity/storage/SlotFixedArray.ts +31 -0
- package/src/solidity/storage/SlotsStorageHandler.ts +17 -0
- package/src/solidity/storage/SlotsStorageTransport.ts +152 -0
- package/src/solidity/storage/handlers/SlotDynamicArrayHandler.ts +52 -0
- package/src/solidity/storage/handlers/SlotFixedArrayHandler.ts +52 -0
- package/src/solidity/storage/handlers/SlotMappingHandler.ts +52 -0
- package/src/solidity/storage/handlers/SlotStringHandler.ts +130 -0
- package/src/solidity/storage/handlers/SlotStructHandler.ts +46 -0
- package/src/solidity/storage/handlers/SlotValueHandler.ts +36 -0
- package/src/solidity/utils/$str.ts +36 -0
- package/src/solidity/utils/$types.ts +16 -0
- package/src/structs/PackedRanges.ts +9 -3
- package/src/tokens/TokenDataProvider.ts +271 -0
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmPairV2Service.ts +3 -1
- package/src/tokens/TokenExchanges/AmmV2ExchangeBase.ts +4 -3
- package/src/tokens/TokenExchanges/OneInchExchange.ts +1 -1
- package/src/tokens/TokenExchanges/PancakeswapExchange.ts +5 -10
- package/src/tokens/TokenExchanges/SushiswapPolygonExchange.ts +8 -5
- package/src/tokens/TokenExchanges/UniswapExchange.ts +6 -9
- package/src/tokens/TokenOracles/AmmPriceV2Oracle.ts +5 -5
- package/src/tokens/TokenOracles/CoingeckoOracle.ts +13 -0
- package/src/tokens/TokenOracles/TokenPriceStore.ts +1 -1
- package/src/tokens/TokenPriceService.ts +0 -1
- package/src/tokens/TokenProviders/ITokenProvider.ts +1 -1
- package/src/tokens/TokenProviders/TPChain.ts +20 -8
- package/src/tokens/TokenProviders/TPCoingecko.ts +121 -0
- package/src/tokens/TokenProviders/TPConfig.ts +53 -0
- package/src/tokens/TokenProviders/TPExplorer.ts +41 -0
- package/src/tokens/TokenService.ts +6 -3
- package/src/tokens/TokenSwapService.ts +1 -1
- package/src/tokens/TokenTransferService.ts +40 -24
- package/src/tokens/TokensService.ts +34 -179
- package/src/tokens/TokensServiceFactory.ts +13 -1
- package/src/tokens/defi/ISwapService.ts +1 -1
- package/src/tokens/defi/paraswap/Paraswap.ts +2 -1
- package/src/txs/ITxConfig.ts +1 -1
- package/src/txs/TxDataBuilder.ts +78 -34
- package/src/txs/TxLogger.ts +4 -4
- package/src/txs/TxWriter.ts +245 -48
- package/src/txs/conditional/GasWatcherTx.ts +0 -1
- package/src/txs/receipt/ITxLogItem.ts +8 -5
- package/src/txs/receipt/TxLogParser.ts +13 -2
- package/src/txs/receipt/TxLogsTransfer.ts +15 -15
- package/src/txs/receipt/TxTopicInMemoryProvider.ts +1 -1
- package/src/txs/receipt/TxTopicProvider.ts +7 -7
- package/src/txs/sig-transports/SigFileTransport.ts +52 -0
- package/src/utils/$abiParser.spec.ts +90 -0
- package/src/utils/$abiParser.ts +60 -25
- package/src/utils/$abiType.ts +195 -5
- package/src/utils/$abiUtils.ts +57 -6
- package/src/utils/$account.ts +30 -0
- package/src/utils/$address.ts +5 -0
- package/src/utils/$bigint.ts +56 -3
- package/src/utils/$block.ts +14 -1
- package/src/utils/$bloom.ts +43 -0
- package/src/utils/$buffer.ts +114 -0
- package/src/utils/$cli.ts +16 -0
- package/src/utils/$color.ts +211 -0
- package/src/utils/$config.ts +70 -7
- package/src/utils/$const.ts +1 -0
- package/src/utils/$contract.ts +21 -3
- package/src/utils/$crypto.ts +33 -0
- package/src/utils/$csv.ts +23 -7
- package/src/utils/$date.ts +194 -40
- package/src/utils/$gas.ts +17 -0
- package/src/utils/$hex.ts +72 -0
- package/src/utils/$is.ts +24 -22
- package/src/utils/$logger.ts +60 -2
- package/src/utils/$machine.ts +85 -0
- package/src/utils/$number.ts +24 -1
- package/src/utils/$path.ts +17 -1
- package/src/utils/$promise.ts +101 -0
- package/src/utils/$require.ts +15 -1
- package/src/utils/$secret.ts +27 -0
- package/src/utils/$sign.ts +115 -16
- package/src/utils/$signRaw.ts +50 -0
- package/src/utils/$signSerializer.ts +8 -6
- package/src/utils/$txData.ts +16 -0
- package/src/utils/$wallet.ts +1 -1
- package/test/Batch.spec.ts +89 -0
- package/test/BlockChainExplorer.spec.ts +33 -0
- package/test/ChainAccount.spec.ts +1 -1
- package/test/client.spec.ts +10 -11
- package/test/config.js +8 -0
- package/test/config.spec.ts +31 -0
- package/test/ecrecover.spec.ts +49 -0
- package/test/fixtures/contracts/Counter.sol +25 -0
- package/test/fixtures/contracts/Ecrecover.sol +33 -0
- package/test/fixtures/contracts/Foo.sol +32 -0
- package/test/fixtures/contracts/Foo.ts +78 -0
- package/test/fixtures/contracts/FreeToken.sol +263 -0
- package/test/fixtures/explorer/0xfbD2aa7efA2B46Ce3c58D7ab0D92C176c71499C0.html +2788 -0
- package/test/fixtures/gnosis/GnosisSafe.sol +422 -0
- package/test/fixtures/gnosis/GnosisSafeL2.sol +86 -0
- package/test/fixtures/gnosis/accessors/SimulateTxAccessor.sol +52 -0
- package/test/fixtures/gnosis/base/Executor.sol +27 -0
- package/test/fixtures/gnosis/base/FallbackManager.sol +53 -0
- package/test/fixtures/gnosis/base/GuardManager.sol +62 -0
- package/test/fixtures/gnosis/base/ModuleManager.sol +133 -0
- package/test/fixtures/gnosis/base/OwnerManager.sol +149 -0
- package/test/fixtures/gnosis/common/Enum.sol +8 -0
- package/test/fixtures/gnosis/common/EtherPaymentFallback.sol +13 -0
- package/test/fixtures/gnosis/common/SecuredTokenTransfer.sol +35 -0
- package/test/fixtures/gnosis/common/SelfAuthorized.sol +16 -0
- package/test/fixtures/gnosis/common/SignatureDecoder.sol +36 -0
- package/test/fixtures/gnosis/common/Singleton.sol +11 -0
- package/test/fixtures/gnosis/common/StorageAccessible.sol +47 -0
- package/test/fixtures/gnosis/external/GnosisSafeMath.sol +54 -0
- package/test/fixtures/gnosis/interfaces/ERC1155TokenReceiver.sol +49 -0
- package/test/fixtures/gnosis/interfaces/ERC721TokenReceiver.sol +24 -0
- package/test/fixtures/gnosis/interfaces/ERC777TokensRecipient.sol +13 -0
- package/test/fixtures/gnosis/interfaces/IERC165.sol +15 -0
- package/test/fixtures/gnosis/interfaces/ISignatureValidator.sol +20 -0
- package/test/fixtures/gnosis/interfaces/ViewStorageAccessible.sol +11 -0
- package/test/fixtures/gnosis/libraries/CreateCall.sol +30 -0
- package/test/fixtures/gnosis/libraries/GnosisSafeStorage.sol +21 -0
- package/test/fixtures/gnosis/libraries/MultiSend.sol +66 -0
- package/test/fixtures/gnosis/libraries/MultiSendCallOnly.sol +61 -0
- package/test/fixtures/gnosis/libraries/SignMessageLib.sol +34 -0
- package/test/fixtures/gnosis/proxies/GnosisSafeProxy.sol +44 -0
- package/test/fixtures/gnosis/proxies/GnosisSafeProxyFactory.sol +107 -0
- package/test/fixtures/gnosis/proxies/IProxyCreationCallback.sol +12 -0
- package/test/fixtures/scan/WETH.sol +1533 -0
- package/test/fixtures/slots/FooStorage.sol +8 -0
- package/test/fixtures/slots/FooStorageBase.sol +6 -0
- package/test/fixtures/slots/Vault.sol +85 -0
- package/test/generate/class.spec.ts +144 -6
- package/test/generate/evm.spec.ts +64 -0
- package/test/generate/openzeppelin.spec.ts +18 -0
- package/test/generate/slotreader.spec.ts +34 -0
- package/test/hardhat/TestNode.ts +37 -9
- package/test/hardhat/deploy.spec.ts +22 -0
- package/test/indexer/BlocksWalker.spec.ts +51 -0
- package/test/ns.spec.ts +4 -0
- package/test/receipt.spec.ts +1 -4
- package/test/safe/tx.act.ts +194 -0
- package/test/solidity/SlotsParser.spec.ts +186 -0
- package/test/solidity/SlotsReader.spec.ts +168 -0
- package/test/solidity/Storage.spec.ts +328 -0
- package/test/structs/PackedRanges.spec.ts +56 -0
- package/test/subscriptions.spec.ts +127 -0
- package/test/token.spec.ts +11 -0
- package/test/utils/abi-types.spec.ts +31 -0
- package/test/utils/abi-utils.spec.ts +23 -0
- package/test/utils/bigint.spec.ts +0 -1
- package/test/utils/date.spec.ts +3 -2
- package/test/utils/logbloom.spec.ts +17 -0
- package/test/utils/number.spec.ts +14 -3
- package/test/utils/sign.spec.ts +43 -7
- package/src/ChainAccounts.ts +0 -72
- package/src/structs/PackedRanges.spec.ts +0 -38
package/hardhat.config.js
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
|
+
require("@nomiclabs/hardhat-web3");
|
|
2
|
+
require("@nomiclabs/hardhat-ethers");
|
|
3
|
+
require("@0xweb/hardhat");
|
|
4
|
+
|
|
1
5
|
/**
|
|
2
6
|
* @type import('hardhat/config').HardhatUserConfig
|
|
3
7
|
*/
|
|
4
8
|
module.exports = {
|
|
5
|
-
|
|
9
|
+
solidity: {
|
|
10
|
+
version: "0.8.2",
|
|
11
|
+
settings: {
|
|
12
|
+
optimizer: {
|
|
13
|
+
enabled: true,
|
|
14
|
+
runs: 200
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
networks: {
|
|
19
|
+
hardhat: {
|
|
20
|
+
chainId: 1337
|
|
21
|
+
},
|
|
22
|
+
localhost: {
|
|
23
|
+
chainId: 1337
|
|
24
|
+
}
|
|
25
|
+
}
|
|
6
26
|
};
|
package/package.json
CHANGED
|
@@ -1,30 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dequanto",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"scripts": {
|
|
5
|
-
"hardhat": "hardhat node",
|
|
6
|
-
"build": "tsc -p tsconfig-src.json"
|
|
5
|
+
"hardhat": "node --openssl-legacy-provider ./node_modules/hardhat/internal/cli/cli.js node --hostname 127.0.0.1 --verbose",
|
|
6
|
+
"build": "tsc -p tsconfig-src.json",
|
|
7
|
+
"test": "atma --openssl-legacy-provider test --config='settings.base=./'",
|
|
8
|
+
"contracts": "atma act ./actions/contracts.act.ts"
|
|
7
9
|
},
|
|
8
10
|
"devDependencies": {
|
|
9
|
-
"
|
|
10
|
-
"hardhat": "^2.
|
|
11
|
-
"
|
|
11
|
+
"@0xweb/hardhat": "^0.1.15",
|
|
12
|
+
"@nomiclabs/hardhat-ethers": "^2.0.5",
|
|
13
|
+
"@nomiclabs/hardhat-web3": "^2.0.0",
|
|
14
|
+
"@openzeppelin/contracts": "^4.7.0",
|
|
15
|
+
"@types/sinon": "^10.0.13",
|
|
16
|
+
"atma-utest": "^0.21.30",
|
|
17
|
+
"evm": "^0.2.0",
|
|
18
|
+
"hardhat": "^2.12.6",
|
|
19
|
+
"shellbee": "^0.5.16",
|
|
20
|
+
"ts-nameof": "^5.0.0"
|
|
12
21
|
},
|
|
13
22
|
"dependencies": {
|
|
14
|
-
"@
|
|
15
|
-
"@
|
|
23
|
+
"@gnosis.pm/safe-core-sdk": "^2.1.0",
|
|
24
|
+
"@gnosis.pm/safe-ethers-lib": "^1.1.0",
|
|
25
|
+
"@gnosis.pm/safe-service-client": "^1.1.2",
|
|
26
|
+
"@gnosis.pm/safe-web3-lib": "^1.1.0",
|
|
27
|
+
"@solidity-parser/parser": "^0.14.5",
|
|
16
28
|
"a-di": "^1.0.25",
|
|
17
|
-
"alot": "^0.
|
|
18
|
-
"
|
|
19
|
-
"atma
|
|
29
|
+
"alot": "^0.3.3",
|
|
30
|
+
"appcfg": "^0.4.64",
|
|
31
|
+
"atma": "^0.15.17",
|
|
32
|
+
"atma-io": "^1.2.67",
|
|
33
|
+
"atma-loader-ts": "^1.1.18",
|
|
20
34
|
"atma-utils": "^0.2.51",
|
|
21
35
|
"axios": "^0.21.1",
|
|
22
36
|
"bcrypt": "^5.0.1",
|
|
23
37
|
"ethers": "^5.5.1",
|
|
24
|
-
"everlog": "^1.0.
|
|
25
|
-
"
|
|
38
|
+
"everlog": "^1.0.10",
|
|
39
|
+
"includejs": "^0.16.9",
|
|
40
|
+
"memd": "^0.3.12",
|
|
26
41
|
"papaparse": "^5.3.1",
|
|
27
|
-
"ts-nameof": "^5.0.0",
|
|
28
42
|
"web3": "^1.6.0",
|
|
29
43
|
"web3-core": "^1.6.0",
|
|
30
44
|
"web3-core-subscriptions": "^1.6.0"
|
package/readme.md
CHANGED
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
# dequanto
|
|
2
2
|
|
|
3
|
+
[](https://docs.0xweb.org/dequanto)
|
|
4
|
+
[](https://circleci.com/gh/0xweb-org/dequanto)
|
|
5
|
+
|
|
3
6
|
|
|
4
7
|
Here we share our library to work with Ethereum Virtual Machine RPC Nodes: Ethereum, Polygon, BSC, Arbitrum, etc. We use web3 and ethers to provide new Features and to simplify the API.
|
|
5
8
|
|
|
6
9
|
1. RPC Client Pool
|
|
7
10
|
2. Transaction Builder
|
|
8
11
|
3. Generated TypeScript classes for contracts
|
|
9
|
-
4. Etherscan&Co clients
|
|
12
|
+
4. Etherscan & Co clients
|
|
10
13
|
5. Tokens provider - get token data by symbol, address, platform.
|
|
11
14
|
6. Tokens service - transfer and swap
|
|
12
15
|
7. Transaction **Indexers** - listens to blocks and parse new transactions to simplify further processing
|
|
13
16
|
8. Native **`BigInt`** types and various utility methods
|
|
17
|
+
9. OpenZeppelin contracts
|
|
14
18
|
|
|
15
19
|
|
|
16
|
-
###
|
|
20
|
+
### **`Source-Code`** Distribution
|
|
17
21
|
|
|
18
22
|
Not as a library, but as the source code. Clone or fork it and use it as a **submodule**. Means:
|
|
19
|
-
a) you can `import` any `class`, `namespace` and `utility`
|
|
23
|
+
a) you can `import` any `class`, `namespace` and `utility` method.
|
|
20
24
|
b) you can easily extend and modify any `class`, `namespace` and `utility` method.
|
|
21
25
|
c) you get the documentation direct from the code. _We don't have much time yet to document all the parts_
|
|
22
26
|
|
|
@@ -25,7 +29,8 @@ And path prefix (alias) to your `tsconfig.json`
|
|
|
25
29
|
{
|
|
26
30
|
"compilerOptions": {
|
|
27
31
|
"paths": {
|
|
28
|
-
"@dequanto/*": [ "your-sub-module-folder/src/*" ]
|
|
32
|
+
"@dequanto/*": [ "your-sub-module-folder/src/*" ],
|
|
33
|
+
"@dequanto-contract/*": [ "your-sub-module-folder/contract/*" ]
|
|
29
34
|
}
|
|
30
35
|
}
|
|
31
36
|
}
|
|
@@ -74,3 +79,15 @@ Start listening the blockchain with less code
|
|
|
74
79
|
## 8. Utils
|
|
75
80
|
|
|
76
81
|
Lots of Utility methods. BigInt are the first-class citizens in the code.
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### 9. OpenZeppelin contracts
|
|
85
|
+
|
|
86
|
+
We prebuild generic OpenZeppelin contracts
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
import { ERC20 } from '@dequanto-contracts/openzeppelin/ERC20
|
|
90
|
+
|
|
91
|
+
let erc20 = new ERC20(`0x...`);
|
|
92
|
+
let balance = await erc20.balanceOf('0x...');
|
|
93
|
+
```
|
|
@@ -3,30 +3,49 @@ import memd from 'memd';
|
|
|
3
3
|
import axios from 'axios'
|
|
4
4
|
import { IBlockChainExplorer, IBlockChainTransferEvent } from './IBlockChainExplorer';
|
|
5
5
|
import { Transaction } from 'web3-core';
|
|
6
|
-
import { AbiItem } from 'web3-utils';
|
|
6
|
+
import { type AbiItem } from 'web3-utils';
|
|
7
7
|
import { IContractDetails } from '@dequanto/models/IContractDetails';
|
|
8
8
|
import { Web3Client } from '@dequanto/clients/Web3Client';
|
|
9
9
|
import { TAddress } from '@dequanto/models/TAddress';
|
|
10
10
|
import { $logger } from '@dequanto/utils/$logger';
|
|
11
11
|
import { $promise } from '@dequanto/utils/$promise';
|
|
12
|
+
import { TPlatform } from '@dequanto/models/TPlatform';
|
|
13
|
+
import { $address } from '@dequanto/utils/$address';
|
|
14
|
+
import { $require } from '@dequanto/utils/$require';
|
|
15
|
+
import { Web3ClientFactory } from '@dequanto/clients/Web3ClientFactory';
|
|
16
|
+
import { $config } from '@dequanto/utils/$config';
|
|
17
|
+
|
|
18
|
+
export interface IBlockChainExplorerParams {
|
|
19
|
+
|
|
20
|
+
platform?: string
|
|
21
|
+
ABI_CACHE?: string
|
|
22
|
+
CONTRACTS?: IContractDetails[]
|
|
23
|
+
getWeb3?: (platform?: TPlatform) => Web3Client
|
|
24
|
+
getConfig?: (platform?: TPlatform) => { key: string, host: string, www: string }
|
|
25
|
+
}
|
|
12
26
|
|
|
13
27
|
export namespace BlockChainExplorerFactory {
|
|
14
28
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
29
|
+
|
|
30
|
+
type TxFilter = {
|
|
31
|
+
fromBlockNumber?: number,
|
|
32
|
+
page?: number,
|
|
33
|
+
size?: number,
|
|
34
|
+
sort?: 'asc' | 'desc'
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function create (opts: IBlockChainExplorerParams) {
|
|
21
38
|
|
|
22
39
|
const client = new Client();
|
|
23
40
|
|
|
41
|
+
opts = ensureDefaults(opts);
|
|
42
|
+
|
|
24
43
|
return class implements IBlockChainExplorer {
|
|
25
44
|
|
|
26
45
|
localDb: IContractDetails[] = opts.CONTRACTS
|
|
27
|
-
config = opts.getConfig()
|
|
46
|
+
config = opts.getConfig(this.platform)
|
|
28
47
|
|
|
29
|
-
constructor () {
|
|
48
|
+
constructor (public platform?: TPlatform) {
|
|
30
49
|
this.getContractAbi = memd.fn.memoize(this.getContractAbi, {
|
|
31
50
|
trackRef: true,
|
|
32
51
|
persistance: new memd.FsTransport({
|
|
@@ -44,10 +63,9 @@ export namespace BlockChainExplorerFactory {
|
|
|
44
63
|
async getContractMeta (name: string)
|
|
45
64
|
async getContractMeta (address: string)
|
|
46
65
|
async getContractMeta (q: string): Promise<IContractDetails> {
|
|
47
|
-
q = q.toLowerCase();
|
|
48
66
|
|
|
67
|
+
q = q.toLowerCase();
|
|
49
68
|
let info = this.localDb.find(x => x.address.toLowerCase() === q || x.name?.toLowerCase() === q);
|
|
50
|
-
|
|
51
69
|
return info;
|
|
52
70
|
}
|
|
53
71
|
|
|
@@ -58,19 +76,27 @@ export namespace BlockChainExplorerFactory {
|
|
|
58
76
|
}
|
|
59
77
|
|
|
60
78
|
let url = `${this.config.host}/api?module=contract&action=getabi&address=${address}&apikey=${this.config.key}`;
|
|
61
|
-
let abi: string
|
|
79
|
+
let abi: string;
|
|
80
|
+
|
|
81
|
+
try {
|
|
82
|
+
abi = await client.get(url);
|
|
83
|
+
} catch (err) {
|
|
84
|
+
let addressByByteCode = await this.getSimilarContract(address);
|
|
85
|
+
if (addressByByteCode != null) {
|
|
86
|
+
$logger.log(`Found similar byte code address: ${addressByByteCode}`);
|
|
87
|
+
return this.getContractAbi(addressByByteCode);
|
|
88
|
+
}
|
|
89
|
+
throw err;
|
|
90
|
+
}
|
|
62
91
|
|
|
63
92
|
let abiJson = JSON.parse(abi);
|
|
64
93
|
if (params?.implementation) {
|
|
65
94
|
if (/0x.{64}/.test(params.implementation)) {
|
|
66
|
-
let web3 = opts.getWeb3();
|
|
95
|
+
let web3 = opts.getWeb3(this.platform);
|
|
67
96
|
|
|
68
|
-
let stat = await web3.getNodeInfos();
|
|
69
|
-
|
|
70
|
-
//-let x = (BigInt($contract.keccak256("eip1967.proxy.implementation")) - 1n).toString(16);
|
|
71
97
|
let uin256Hex = await web3.getStorageAt(
|
|
72
|
-
|
|
73
|
-
|
|
98
|
+
'0x5a58505a96d1dbf8df91cb21b54419fc36e93fde',
|
|
99
|
+
`0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
|
|
74
100
|
);
|
|
75
101
|
let hex = uin256Hex.replace(/0x0+/, '0x');
|
|
76
102
|
return this.getContractAbi(hex)
|
|
@@ -78,17 +104,19 @@ export namespace BlockChainExplorerFactory {
|
|
|
78
104
|
throw new Error(`Implement ${params.implementation} support`);
|
|
79
105
|
}
|
|
80
106
|
if (isOpenZeppelinProxy(abiJson)) {
|
|
81
|
-
let web3 = opts.getWeb3();
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
107
|
+
let web3 = opts.getWeb3(this.platform);
|
|
108
|
+
// (BigInt($contract.keccak256("eip1967.proxy.implementation")) - 1n).toString(16);
|
|
109
|
+
let uint256Hex = await web3.getStorageAt(address,`0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`);
|
|
110
|
+
if ($address.isEmpty(uint256Hex)) {
|
|
111
|
+
// keccak-256 hash of "org.zeppelinos.proxy.implementation"
|
|
112
|
+
uint256Hex = await web3.getStorageAt(address, `0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3`);
|
|
113
|
+
}
|
|
114
|
+
let hex = uint256Hex.replace(/0x0+/, '0x');
|
|
87
115
|
return this.getContractAbi(hex)
|
|
88
116
|
}
|
|
89
117
|
|
|
90
118
|
if (hasImplementationSlot(abiJson)) {
|
|
91
|
-
let web3 = opts.getWeb3();
|
|
119
|
+
let web3 = opts.getWeb3(this.platform);
|
|
92
120
|
let uin256Hex = await web3.readContract({
|
|
93
121
|
address: address,
|
|
94
122
|
abi: abiJson,
|
|
@@ -99,7 +127,7 @@ export namespace BlockChainExplorerFactory {
|
|
|
99
127
|
return this.getContractAbi(hex);
|
|
100
128
|
}
|
|
101
129
|
if (hasTargetSlot(abiJson)) {
|
|
102
|
-
let web3 = opts.getWeb3();
|
|
130
|
+
let web3 = opts.getWeb3(this.platform);
|
|
103
131
|
let uin256Hex = await web3.readContract({
|
|
104
132
|
address: address,
|
|
105
133
|
abi: abiJson,
|
|
@@ -122,15 +150,15 @@ export namespace BlockChainExplorerFactory {
|
|
|
122
150
|
return Array.isArray(result) ? result[0] : result;
|
|
123
151
|
}
|
|
124
152
|
|
|
125
|
-
async getTransactions (addr: TAddress, params?:
|
|
153
|
+
async getTransactions (addr: TAddress, params?: TxFilter): Promise<Transaction[]> {
|
|
126
154
|
return this.loadTxs('txlist', addr, params);
|
|
127
155
|
}
|
|
128
|
-
async getTransactionsAll (addr: TAddress): Promise<Transaction[]> {
|
|
129
|
-
return this.loadTxsAll('txlist', addr);
|
|
156
|
+
async getTransactionsAll (addr: TAddress, params?: TxFilter): Promise<Transaction[]> {
|
|
157
|
+
return this.loadTxsAll('txlist', addr, params);
|
|
130
158
|
}
|
|
131
159
|
|
|
132
160
|
|
|
133
|
-
async getInternalTransactions (addr: TAddress, params?:
|
|
161
|
+
async getInternalTransactions (addr: TAddress, params?: TxFilter): Promise<Transaction[]> {
|
|
134
162
|
return this.loadTxs('txlistinternal', addr, params);
|
|
135
163
|
}
|
|
136
164
|
async getInternalTransactionsAll (addr: TAddress): Promise<Transaction[]> {
|
|
@@ -159,6 +187,26 @@ export namespace BlockChainExplorerFactory {
|
|
|
159
187
|
return events;
|
|
160
188
|
}
|
|
161
189
|
|
|
190
|
+
async getSimilarContract(address: TAddress) {
|
|
191
|
+
let url = `${this.config.www}/address/${address}#code`;
|
|
192
|
+
let html = await client.getHtml(url);
|
|
193
|
+
let rgx = /This contract matches/ig;
|
|
194
|
+
let match = rgx.exec(html);
|
|
195
|
+
if (match == null) {
|
|
196
|
+
return null;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
let rgxAddress = /0x[a-f\d]{40}/g;
|
|
200
|
+
|
|
201
|
+
rgxAddress.lastIndex = match.index;
|
|
202
|
+
|
|
203
|
+
let matchAddress = rgxAddress.exec(html);
|
|
204
|
+
if (matchAddress == null) {
|
|
205
|
+
return null;
|
|
206
|
+
}
|
|
207
|
+
return matchAddress[0];
|
|
208
|
+
}
|
|
209
|
+
|
|
162
210
|
|
|
163
211
|
async loadTxs(type: 'tokentx' | 'txlistinternal' | 'txlist', address: TAddress, params?: {
|
|
164
212
|
fromBlockNumber?: number,
|
|
@@ -180,12 +228,12 @@ export namespace BlockChainExplorerFactory {
|
|
|
180
228
|
return txs;
|
|
181
229
|
}
|
|
182
230
|
|
|
183
|
-
async loadTxsAll (type: 'tokentx' | 'txlistinternal' | 'txlist', address: TAddress): Promise<Transaction[]> {
|
|
231
|
+
async loadTxsAll (type: 'tokentx' | 'txlistinternal' | 'txlist', address: TAddress, params?: TxFilter): Promise<Transaction[]> {
|
|
184
232
|
|
|
185
233
|
let page = 1;
|
|
186
234
|
let size = 1000;
|
|
187
235
|
let out = [] as Transaction[];
|
|
188
|
-
let fromBlockNumber =
|
|
236
|
+
let fromBlockNumber = params?.fromBlockNumber;
|
|
189
237
|
while(true) {
|
|
190
238
|
let arr = await this.loadTxs(type, address, { fromBlockNumber, sort: 'asc' });
|
|
191
239
|
out.push(...arr);
|
|
@@ -206,22 +254,75 @@ export namespace BlockChainExplorerFactory {
|
|
|
206
254
|
function isOpenZeppelinProxy(abi: AbiItem[]) {
|
|
207
255
|
let $interface = ['upgradeTo', 'implementation'];
|
|
208
256
|
return $interface.every(name => {
|
|
209
|
-
return abi
|
|
210
|
-
})
|
|
257
|
+
return hasMethod(abi, name);
|
|
258
|
+
});
|
|
211
259
|
}
|
|
212
260
|
function hasImplementationSlot (abi: AbiItem[]) {
|
|
213
|
-
let $
|
|
214
|
-
|
|
215
|
-
return abi
|
|
216
|
-
})
|
|
261
|
+
let $required = [ 'implementation' ];
|
|
262
|
+
let hasRequired = $required.every(name => {
|
|
263
|
+
return hasMethod(abi, name);
|
|
264
|
+
});
|
|
265
|
+
if (hasRequired === false) {
|
|
266
|
+
return false;
|
|
267
|
+
}
|
|
268
|
+
let $some = ['proxyOwner', 'proxyType'];
|
|
269
|
+
let hasOneOf = $some.some(name => {
|
|
270
|
+
return hasMethod(abi, name);
|
|
271
|
+
});
|
|
272
|
+
if (hasOneOf === false) {
|
|
273
|
+
return false;
|
|
274
|
+
}
|
|
275
|
+
return true;
|
|
217
276
|
}
|
|
218
277
|
function hasTargetSlot (abi: AbiItem[]) {
|
|
219
278
|
let $interface = ['upgrade', 'getTarget'];
|
|
220
279
|
return $interface.every(name => {
|
|
221
|
-
return abi
|
|
280
|
+
return hasMethod(abi, name);
|
|
222
281
|
})
|
|
223
282
|
}
|
|
283
|
+
function hasMethod (abi: AbiItem[], name: string) {
|
|
284
|
+
return abi.some(item => item.type === 'function' && item.name === name);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
function ensureDefaults (opts: IBlockChainExplorerParams) {
|
|
288
|
+
opts ??= {};
|
|
289
|
+
|
|
290
|
+
let hasNull = opts.ABI_CACHE == null
|
|
291
|
+
|| opts.CONTRACTS == null
|
|
292
|
+
|| opts.getConfig == null
|
|
293
|
+
|| opts.getWeb3 == null;
|
|
224
294
|
|
|
295
|
+
if (hasNull === false) {
|
|
296
|
+
return opts;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
let platform = opts.platform;
|
|
300
|
+
$require.notNull(platform, `Generic Blockchain Explorer Config should contain platform name`);
|
|
301
|
+
|
|
302
|
+
opts.ABI_CACHE ??= `./cache/${platform}/abis.json`
|
|
303
|
+
opts.CONTRACTS ??= [];
|
|
304
|
+
opts.getWeb3 ??= (_) => {
|
|
305
|
+
return Web3ClientFactory.get(platform);
|
|
306
|
+
};
|
|
307
|
+
opts.getConfig ??= () => {
|
|
308
|
+
let config = $config.get(`blockchainExplorer.${platform}`);
|
|
309
|
+
|
|
310
|
+
let mainnet = /(?<mainnet>\w+):/.exec(platform)?.groups?.mainnet;
|
|
311
|
+
if (mainnet != null) {
|
|
312
|
+
let mainnetConfig = $config.get(`blockchainExplorer.${mainnet}`);
|
|
313
|
+
config = {
|
|
314
|
+
...(mainnetConfig ?? {}),
|
|
315
|
+
...(config ?? {})
|
|
316
|
+
};
|
|
317
|
+
}
|
|
318
|
+
return {
|
|
319
|
+
key: config?.key,
|
|
320
|
+
host: config?.host,
|
|
321
|
+
www: config?.www,
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
return opts;
|
|
325
|
+
}
|
|
225
326
|
|
|
226
327
|
|
|
227
328
|
class Client {
|
|
@@ -231,6 +332,15 @@ class Client {
|
|
|
231
332
|
return this.getInner(url)
|
|
232
333
|
}
|
|
233
334
|
|
|
335
|
+
@memd.deco.queued({ throttle: 1000 / 5 })
|
|
336
|
+
async getHtml (url: string) {
|
|
337
|
+
let resp = await axios.get(url);
|
|
338
|
+
if (resp.status !== 200) {
|
|
339
|
+
throw new Error(`${url} not loaded with status ${resp.status}.`);
|
|
340
|
+
}
|
|
341
|
+
return resp.data;
|
|
342
|
+
}
|
|
343
|
+
|
|
234
344
|
async getPaged (url: string) {
|
|
235
345
|
let arr = [];
|
|
236
346
|
let page = 1;
|
|
@@ -5,6 +5,9 @@ import { Bscscan } from './Bscscan';
|
|
|
5
5
|
import { Etherscan } from './Etherscan';
|
|
6
6
|
import { Polyscan } from './Polyscan';
|
|
7
7
|
import { XDaiscan } from '@dequanto/chains/xdai/XDaiscan';
|
|
8
|
+
import { $config } from '@dequanto/utils/$config';
|
|
9
|
+
import { BlockChainExplorerFactory } from './BlockChainExplorerFactory';
|
|
10
|
+
import { Evmscan } from './Evmscan';
|
|
8
11
|
|
|
9
12
|
export namespace BlockChainExplorerProvider {
|
|
10
13
|
export function get (platform: TPlatform) {
|
|
@@ -19,8 +22,15 @@ export namespace BlockChainExplorerProvider {
|
|
|
19
22
|
return di.resolve(Arbiscan);
|
|
20
23
|
case 'xdai':
|
|
21
24
|
return di.resolve(XDaiscan);
|
|
25
|
+
case 'hardhat':
|
|
26
|
+
return null;
|
|
22
27
|
default:
|
|
28
|
+
let cfg = $config.get(`blockchainExplorer.${platform}`);
|
|
29
|
+
if (cfg != null) {
|
|
30
|
+
return Evmscan({ platform });
|
|
31
|
+
}
|
|
23
32
|
throw new Error(`Unsupported platform ${platform} for block chain explorer`);
|
|
24
33
|
}
|
|
25
34
|
}
|
|
26
35
|
}
|
|
36
|
+
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import di from 'a-di';
|
|
3
2
|
import { $config } from '@dequanto/utils/$config';
|
|
4
3
|
import { EthWeb3Client } from '@dequanto/clients/EthWeb3Client';
|
|
5
|
-
import
|
|
4
|
+
import { TPlatform } from '@dequanto/models/TPlatform';
|
|
5
|
+
import { BlockChainExplorerFactory } from './BlockChainExplorerFactory';
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
const contracts = $config.get('contracts.eth', [])
|
|
@@ -12,11 +12,23 @@ export class Etherscan extends BlockChainExplorerFactory.create({
|
|
|
12
12
|
getWeb3 () {
|
|
13
13
|
return di.resolve(EthWeb3Client)
|
|
14
14
|
},
|
|
15
|
-
getConfig () {
|
|
16
|
-
|
|
15
|
+
getConfig (platform: TPlatform) {
|
|
16
|
+
platform ??= 'eth';
|
|
17
|
+
|
|
18
|
+
let config = $config.get(`blockchainExplorer.${platform}`);
|
|
19
|
+
|
|
20
|
+
let mainnet = /(?<mainnet>\w+):/.exec(platform)?.groups?.mainnet;
|
|
21
|
+
if (mainnet != null) {
|
|
22
|
+
let mainnetConfig = $config.get(`blockchainExplorer.${mainnet}`);
|
|
23
|
+
config = {
|
|
24
|
+
...(mainnetConfig ?? {}),
|
|
25
|
+
...(config ?? {})
|
|
26
|
+
};
|
|
27
|
+
}
|
|
17
28
|
return {
|
|
18
29
|
key: config?.key,
|
|
19
30
|
host: config?.host,
|
|
31
|
+
www: config?.www,
|
|
20
32
|
};
|
|
21
33
|
}
|
|
22
34
|
}) {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TPlatform } from '@dequanto/models/TPlatform';
|
|
2
|
+
import { BlockChainExplorerFactory } from './BlockChainExplorerFactory';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export function Evmscan (options: { platform: TPlatform }) {
|
|
6
|
+
const ClientConstructor = BlockChainExplorerFactory.create(options);
|
|
7
|
+
return new ClientConstructor();
|
|
8
|
+
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { TAddress } from '@dequanto/models/TAddress';
|
|
2
2
|
import { IContractDetails } from '@dequanto/models/IContractDetails';
|
|
3
|
-
import { Transaction } from 'web3-core';
|
|
4
3
|
import { IAbiProvider } from './IAbiProvider';
|
|
4
|
+
import { type Transaction } from 'web3-core';
|
|
5
|
+
|
|
5
6
|
|
|
6
7
|
export interface IBlockChainExplorer extends IAbiProvider {
|
|
7
8
|
localDb: IContractDetails[]
|
|
8
9
|
getContractMeta(q: string): Promise<IContractDetails>;
|
|
9
|
-
getContractAbi (address: TAddress, opts?: { implementation
|
|
10
|
+
getContractAbi (address: TAddress, opts?: { implementation?: string }): Promise<{ abi: string, implementation: TAddress }>
|
|
10
11
|
getContractSource (address: string): Promise<{
|
|
11
12
|
SourceCode: string
|
|
12
13
|
ContractName: string
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import memd from 'memd';
|
|
2
|
+
import { TAddress } from './models/TAddress'
|
|
3
|
+
import { TPlatform } from './models/TPlatform'
|
|
4
|
+
import { $config } from './utils/$config'
|
|
5
|
+
import { Wallet } from 'ethers';
|
|
6
|
+
import { $address } from './utils/$address';
|
|
7
|
+
import { $crypto } from './utils/$crypto';
|
|
8
|
+
import { $buffer } from './utils/$buffer';
|
|
9
|
+
import { ChainAccount, IAccount, SafeAccount } from './models/TAccount';
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
export namespace ChainAccountProvider {
|
|
13
|
+
export function get (platform: TPlatform, name: string): IAccount {
|
|
14
|
+
let accounts = AccountsConfigProvider.get();
|
|
15
|
+
let acc: ChainAccount = accounts?.[platform]?.[name];
|
|
16
|
+
if (acc == null) {
|
|
17
|
+
throw new Error(`Account not resolved by name: ${name} in ${platform}`);
|
|
18
|
+
}
|
|
19
|
+
acc.name = name;
|
|
20
|
+
acc.platform = platform;
|
|
21
|
+
return acc;
|
|
22
|
+
}
|
|
23
|
+
export function tryGet (mix: string | TAddress, platform?): IAccount {
|
|
24
|
+
let all = this.getAll();
|
|
25
|
+
|
|
26
|
+
let accounts = all.filter(x => ($address.eq(mix, x.address) || x.name == mix));
|
|
27
|
+
if (accounts.length === 0) {
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
let acc = accounts[0];
|
|
31
|
+
return {
|
|
32
|
+
... acc,
|
|
33
|
+
platform: platform ?? acc.platform
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
export function getAll (): IAccount[] {
|
|
37
|
+
return AccountsConfigProvider.get();
|
|
38
|
+
}
|
|
39
|
+
export function getAddressFromKey (key: string) {
|
|
40
|
+
const bytes = $buffer.fromHex(key);
|
|
41
|
+
const wallet = new Wallet(bytes);
|
|
42
|
+
return wallet.address;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function generate (opts?: { name?: string, platform?: TPlatform }): ChainAccount {
|
|
46
|
+
const bytes = $crypto.randomBytes(32);
|
|
47
|
+
const wallet = new Wallet(bytes);
|
|
48
|
+
return {
|
|
49
|
+
...(opts ?? {}),
|
|
50
|
+
address: wallet.address,
|
|
51
|
+
key: wallet.privateKey,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
class AccountsConfigProvider {
|
|
56
|
+
@memd.deco.memoize()
|
|
57
|
+
static get (): IAccount[] {
|
|
58
|
+
|
|
59
|
+
type TDictionary = {
|
|
60
|
+
[platform: string]: {
|
|
61
|
+
[name: string]: ChainAccount | SafeAccount
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
let accounts: TDictionary | (ChainAccount | SafeAccount)[] = $config.get('accounts');
|
|
66
|
+
if (accounts == null) {
|
|
67
|
+
return [];
|
|
68
|
+
}
|
|
69
|
+
if (Array.isArray(accounts)) {
|
|
70
|
+
return accounts;
|
|
71
|
+
}
|
|
72
|
+
let out = [];
|
|
73
|
+
for (let platform in accounts) {
|
|
74
|
+
for (let name in accounts[platform]) {
|
|
75
|
+
let account = accounts[platform][name];
|
|
76
|
+
account.name = name;
|
|
77
|
+
account.platform = platform as TPlatform;
|
|
78
|
+
out.push(account);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return out;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|