dequanto 0.0.1 → 0.1.3
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 +51 -0
- package/.github/workflows/npm-publish.yml +32 -0
- package/.vscode/settings.json +42 -11
- package/actions/chains.act.ts +136 -0
- package/actions/contracts.act.ts +178 -0
- package/actions/gen.act.ts +38 -38
- package/actions/logs.act.ts +7 -0
- package/actions/rpc.act.ts +918 -0
- package/actions/safe.act.ts +7 -0
- package/actions/tokens.act.ts +41 -12
- package/configs/defi.yml +28 -0
- package/configs/dequanto.yml +377 -51
- package/data/cex/eth.csv +356 -356
- package/data/chainlink/feeds.json +3674 -0
- package/data/chains/chains.json +972 -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/rpc/coregeth.json +1786 -0
- package/data/rpc/eth.json +5873 -0
- package/data/rpc/flashbots.json +662 -0
- package/data/rpc/metamask.json +3673 -0
- package/data/rpc/overrides.json +104 -0
- package/data/tokens/1inch.json +11107 -4733
- package/data/tokens/arbitrum.json +1 -1
- package/data/tokens/coingecko.json +118642 -0
- package/data/tokens/sushi.json +6067 -48632
- package/exports/core.lib.ts +103 -0
- package/hardhat.config.js +41 -1
- package/importmap.json +27 -0
- package/package-bundler.json +181 -0
- package/package.json +121 -49
- package/readme.md +22 -4
- package/src/ChainAccountService.ts +216 -0
- package/src/abi/$abiCoder.ts +62 -0
- package/src/abi/$rlp.ts +126 -0
- package/src/abi/Logger.ts +24 -0
- package/src/abi/_version.ts +1 -0
- package/src/abi/abi-coder-packed.ts +90 -0
- package/src/abi/abi-coder.ts +163 -0
- package/src/abi/coders/abstract-coder.ts +455 -0
- package/src/abi/coders/address.ts +39 -0
- package/src/abi/coders/anonymous.ts +29 -0
- package/src/abi/coders/array.ts +190 -0
- package/src/abi/coders/boolean.ts +25 -0
- package/src/abi/coders/bytes.ts +41 -0
- package/src/abi/coders/fixed-bytes.ts +36 -0
- package/src/abi/coders/null.ts +28 -0
- package/src/abi/coders/number.ts +59 -0
- package/src/abi/coders/string.ts +23 -0
- package/src/abi/coders/tuple.ts +61 -0
- package/src/abi/fragments.ts +1632 -0
- package/src/blocks/BlockDateResolver.ts +159 -149
- package/src/bridges/BridgeFactory.ts +16 -16
- package/src/bridges/hop/HopAddresses.ts +1 -1
- package/src/bridges/hop/HopBridge.ts +437 -430
- package/src/bridges/hop/contracts/gen.act.ts +51 -50
- package/src/bridges/models/IBridge.ts +44 -43
- package/src/chains/PlatformFactory.ts +46 -45
- package/src/chains/arbitrum/ArbTokenProvider.ts +39 -39
- package/src/chains/arbitrum/ArbWeb3Client.ts +21 -39
- package/src/chains/arbitrum/Arbiscan.ts +21 -24
- package/src/chains/arbitrum/TokensServiceArbitrum.ts +19 -0
- package/src/chains/boba/BobaWeb3Client.ts +21 -49
- package/src/chains/boba/Bobascan.ts +22 -25
- package/src/chains/xdai/XDaiWeb3Client.ts +56 -82
- package/src/chains/xdai/XDaiscan.ts +21 -24
- package/src/class/PackedRanges.ts +213 -0
- package/src/class/PromiseEvent.ts +21 -0
- package/src/class/SubjectKind.ts +5 -0
- package/src/class/SubjectStream.ts +137 -0
- package/src/class/Subscription.ts +7 -0
- package/src/clients/BscWeb3Client.ts +21 -38
- package/src/clients/ClientEventsStream.ts +95 -33
- package/src/clients/ClientPool.ts +616 -207
- package/src/clients/ClientPoolStats.ts +70 -64
- package/src/clients/EthWeb3Client.ts +23 -36
- package/src/clients/EvmWeb3Client.ts +26 -0
- package/src/clients/PolyWeb3Client.ts +42 -91
- package/src/clients/Web3BatchRequests.ts +119 -0
- package/src/clients/Web3Client.ts +700 -134
- package/src/clients/Web3ClientFactory.ts +31 -1
- package/src/clients/compatibility/Web3.ts +186 -0
- package/src/clients/debug/ClientDebugMethods.ts +100 -0
- package/src/clients/handlers/RateLimitGuard.ts +353 -0
- package/src/clients/interfaces/IWeb3Client.ts +63 -14
- package/src/clients/interfaces/IWeb3ClientStatus.ts +21 -23
- package/src/clients/interfaces/IWeb3EndpointOptions.ts +16 -9
- package/src/clients/model/ClientStatus.ts +6 -5
- package/src/clients/model/PromiEventWrap.ts +62 -61
- package/src/clients/model/SubscriptionWrap.ts +53 -53
- package/src/clients/utils/$web3Abi.ts +29 -0
- package/src/clients/utils/ClientEndpoints.ts +32 -26
- package/src/clients/utils/ClientErrorUtil.ts +29 -26
- package/src/clients/utils/TxFactory.ts +5 -17
- package/src/config/AConfigBase.ts +35 -0
- package/src/config/Config.ts +45 -0
- package/src/config/ConfigProvider.ts +4 -0
- package/src/config/ConfigProviderBrowser.ts +21 -0
- package/src/config/ConfigProviderIsoPlatform.ts +90 -0
- package/src/config/dequanto.d.ts +5 -0
- package/src/config/interface/IConfigData.ts +63 -0
- package/src/contracts/BscContract.ts +28 -28
- package/src/contracts/Contract.ts +120 -126
- package/src/contracts/ContractAbiProvider.ts +69 -0
- package/src/contracts/ContractBase.ts +496 -60
- package/src/contracts/ContractClassFactory.ts +114 -0
- package/src/contracts/ContractCreationResolver.ts +85 -0
- package/src/contracts/ContractProvider.ts +55 -55
- package/src/contracts/ContractReader.ts +339 -87
- package/src/contracts/ContractStorageReaderBase.ts +29 -0
- package/src/contracts/ContractStream.ts +34 -18
- package/src/contracts/ContractWriter.ts +139 -97
- package/src/contracts/EthContract.ts +29 -29
- package/src/contracts/TxContract.ts +39 -43
- package/src/contracts/deploy/ContractDeployer.ts +155 -0
- package/src/contracts/deploy/ContractDeployment.ts +53 -0
- package/src/contracts/deploy/ContractSource.ts +3 -0
- package/src/contracts/deploy/Deployments.ts +672 -0
- package/src/contracts/deploy/proxy/$proxyDeploy.ts +302 -0
- package/src/contracts/deploy/proxy/ProxyDeployment.ts +401 -0
- package/src/contracts/deploy/storage/DeploymentsStorage.ts +368 -0
- package/src/contracts/utils/AbiDeserializer.ts +111 -98
- package/src/contracts/utils/ContractBaseUtils.ts +105 -0
- package/src/contracts/utils/ConvertUtils.ts +16 -16
- package/src/contracts/utils/InputDataUtils.ts +32 -93
- package/src/contracts/utils/TypeUtils.ts +21 -21
- package/src/contracts/wrappers/FnRequestWrapper.ts +15 -0
- package/src/contracts/wrappers/FnSignedWrapper.ts +42 -0
- package/src/env/BigIntSerializer.ts +19 -18
- package/src/erc4337/Erc4337Factory.ts +54 -0
- package/src/erc4337/Erc4337Service.ts +219 -0
- package/src/erc4337/Erc4337TxWriter.ts +169 -0
- package/src/erc4337/models/Erc4337Abi.ts +7 -0
- package/src/erc4337/models/IErc4337Info.ts +8 -0
- package/src/erc4337/models/UserOperation.ts +18 -0
- package/src/erc4337/utils/$erc4337.ts +31 -0
- package/src/evm/EvmBytecode.ts +298 -0
- package/src/evm/OpcodesInfo.ts +211 -0
- package/src/evm/OpcodesWalker.ts +156 -0
- package/src/evm/Stack.ts +58 -0
- package/src/evm/functions/$opcodes.ts +122 -0
- package/src/evm/functions/opcodes.spec.ts +47 -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/utils/$bytecode.ts +76 -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/explorer/BlockChainExplorerFactory.ts +644 -0
- package/src/explorer/BlockChainExplorerProvider.ts +57 -0
- package/src/explorer/BlockChainExplorerStorage.ts +124 -0
- package/src/explorer/BlockNumberCache.ts +47 -0
- package/src/explorer/Bscscan.ts +24 -0
- package/src/explorer/ContractVerifier.ts +289 -0
- package/src/explorer/ContractVerifierHtml.ts +207 -0
- package/src/explorer/Etherscan.ts +37 -0
- package/src/explorer/Evmscan.ts +8 -0
- package/src/explorer/IAbiProvider.ts +5 -0
- package/src/explorer/IBlockChainExplorer.ts +69 -0
- package/src/explorer/Polyscan.ts +24 -0
- package/src/explorer/verifiers/FsHtmlVerifier.ts +195 -0
- package/src/explorer/verifiers/IVerifier.ts +14 -0
- package/src/flashbots/FlashbotWeb3Client.ts +24 -0
- package/src/flashbots/FlashbotsProvider.ts +163 -0
- package/src/gen/Ast.ts +12 -12
- package/src/gen/ContractStorageReaderTemplate.ts +18 -0
- package/src/gen/ContractTemplate.ts +134 -36
- package/src/gen/Generator.ts +414 -227
- package/src/gen/GeneratorFromAbi.ts +451 -128
- package/src/gen/GeneratorStorageReader.ts +114 -0
- package/src/gen/utils/$gen.ts +11 -0
- package/src/gen/utils/Str.ts +40 -0
- package/src/handlers/TokenHandler.ts +77 -78
- package/src/hardhat/HardhatProvider.ts +469 -0
- package/src/hardhat/HardhatWeb3Client.ts +66 -0
- package/src/indexer/BlocksTxIndexer.ts +116 -69
- package/src/indexer/EventsIndexer.ts +379 -0
- package/src/indexer/PendingTxIndexer.ts +123 -124
- package/src/indexer/handlers/BlocksWalker.ts +420 -390
- package/src/indexer/handlers/TxQueueLoader.ts +144 -143
- package/src/indexer/storage/FsEventsIndexerStore.ts +182 -0
- package/src/indexer/storage/FsEventsMetaStore.ts +65 -0
- package/src/indexer/storage/FsEventsStoreUtils.ts +43 -0
- package/src/indexer/storage/interfaces.ts +25 -0
- package/src/json/JsonArrayMultiStore.ts +219 -0
- package/src/json/JsonArrayStore.ts +193 -310
- package/src/json/JsonObjectStore.ts +78 -239
- package/src/json/JsonStoreFs.ts +187 -0
- package/src/loggers/ILogger.ts +6 -3
- package/src/loggers/LoggerService.ts +83 -39
- package/src/loggers/TxLoggerService.ts +144 -146
- package/src/models/IContractDetails.ts +10 -8
- package/src/models/IToken.ts +35 -11
- package/src/models/ITokenGlob.ts +14 -14
- package/src/models/ITransactionDetails.ts +10 -11
- package/src/models/TAccount.ts +53 -0
- package/src/models/TAddress.ts +2 -1
- package/src/models/TBufferLike.ts +2 -2
- package/src/models/TError.ts +4 -0
- package/src/models/TEth.ts +223 -0
- package/src/models/THex.ts +1 -1
- package/src/models/TPlatform.ts +16 -1
- package/src/models/TResult.ts +6 -6
- package/src/models/TTx.ts +42 -0
- package/src/ns/NameService.ts +54 -21
- package/src/ns/providers/ANsProvider.ts +110 -0
- package/src/ns/providers/EnsProvider.ts +109 -45
- package/src/ns/providers/INsProvider.ts +31 -6
- package/src/ns/providers/SpaceIdProvider.ts +17 -0
- package/src/ns/providers/UDProvider.ts +77 -49
- package/src/ns/utils/$ns.ts +27 -15
- package/src/prebuilt/1inch/OneInchRouterContract/OneInchRouterContract.ts +313 -0
- package/src/prebuilt/amm/AmmFactoryV2Contract/AmmFactoryV2Contract.ts +298 -0
- package/src/prebuilt/amm/AmmMasterChefV2Contract/AmmMasterChefV2Contract.ts +642 -0
- package/src/prebuilt/amm/AmmPairV2Contract/AmmPairV2Contract.ts +700 -0
- package/src/prebuilt/amm/AmmPairV3Contract/AmmPairV3Contract.ts +686 -0
- package/src/prebuilt/amm/AmmRouterV2Contract/AmmRouterV2Contract.ts +404 -0
- package/src/prebuilt/amm/AmmVaultV2Contract/AmmVaultV2Contract.ts +818 -0
- package/src/prebuilt/ens/EnsBaseRegistrar/EnsBaseRegistrar.ts +711 -0
- package/src/prebuilt/ens/EnsDnsRegistrar/EnsDnsRegistrar.ts +333 -0
- package/src/prebuilt/ens/EnsEthRegistrarController/EnsEthRegistrarController.ts +477 -0
- package/src/prebuilt/ens/EnsNameWrapper/EnsNameWrapper.ts +1003 -0
- package/src/prebuilt/ens/EnsPublicResolver/EnsPublicResolver.ts +873 -0
- package/src/prebuilt/ens/EnsRegistry/EnsRegistry.ts +415 -0
- package/src/prebuilt/ens/EnsReverseRegistrar/EnsReverseRegistrar.ts +407 -0
- package/src/prebuilt/erc4337/EntryPoint/EntryPoint.ts +640 -0
- package/src/prebuilt/erc4337/SimpleAccount/SimpleAccount.ts +501 -0
- package/src/prebuilt/erc4337/SimpleAccountFactory/SimpleAccountFactory.ts +184 -0
- package/src/prebuilt/openzeppelin/AccessControl.json +206 -0
- package/src/prebuilt/openzeppelin/AccessControl.ts +257 -0
- package/src/prebuilt/openzeppelin/AccessControlCrossChain.json +219 -0
- package/src/prebuilt/openzeppelin/AccessControlCrossChain.ts +266 -0
- package/src/prebuilt/openzeppelin/AccessControlDefaultAdminRules.json +391 -0
- package/src/prebuilt/openzeppelin/AccessControlDefaultAdminRules.ts +450 -0
- package/src/prebuilt/openzeppelin/AccessControlEnumerable.json +249 -0
- package/src/prebuilt/openzeppelin/AccessControlEnumerable.ts +275 -0
- package/src/prebuilt/openzeppelin/ConditionalEscrow.json +156 -0
- package/src/prebuilt/openzeppelin/ConditionalEscrow.ts +259 -0
- package/src/prebuilt/openzeppelin/CrossChainEnabledPolygonChild.json +30 -0
- package/src/prebuilt/openzeppelin/CrossChainEnabledPolygonChild.ts +150 -0
- package/src/prebuilt/openzeppelin/EIP712.json +67 -0
- package/src/prebuilt/openzeppelin/EIP712.ts +170 -0
- package/src/prebuilt/openzeppelin/ERC1155.json +325 -0
- package/src/prebuilt/openzeppelin/ERC1155.ts +291 -0
- package/src/prebuilt/openzeppelin/ERC1155Burnable.json +360 -0
- package/src/prebuilt/openzeppelin/ERC1155Burnable.ts +309 -0
- package/src/prebuilt/openzeppelin/ERC1155Holder.json +99 -0
- package/src/prebuilt/openzeppelin/ERC1155Holder.ts +163 -0
- package/src/prebuilt/openzeppelin/ERC1155Pausable.json +353 -0
- package/src/prebuilt/openzeppelin/ERC1155Pausable.ts +338 -0
- package/src/prebuilt/openzeppelin/ERC1155PresetMinterPauser.json +734 -0
- package/src/prebuilt/openzeppelin/ERC1155PresetMinterPauser.ts +567 -0
- package/src/prebuilt/openzeppelin/ERC1155Receiver.json +99 -0
- package/src/prebuilt/openzeppelin/ERC1155Receiver.ts +163 -0
- package/src/prebuilt/openzeppelin/ERC1155Supply.json +352 -0
- package/src/prebuilt/openzeppelin/ERC1155Supply.ts +305 -0
- package/src/prebuilt/openzeppelin/ERC1155URIStorage.json +314 -0
- package/src/prebuilt/openzeppelin/ERC1155URIStorage.ts +287 -0
- package/src/prebuilt/openzeppelin/ERC165.json +21 -0
- package/src/prebuilt/openzeppelin/ERC165.ts +143 -0
- package/src/prebuilt/openzeppelin/ERC165Storage.json +21 -0
- package/src/prebuilt/openzeppelin/ERC165Storage.ts +143 -0
- package/src/prebuilt/openzeppelin/ERC1820Implementer.json +26 -0
- package/src/prebuilt/openzeppelin/ERC1820Implementer.ts +143 -0
- package/src/prebuilt/openzeppelin/ERC20.json +288 -0
- package/src/prebuilt/openzeppelin/ERC20.ts +280 -0
- package/src/prebuilt/openzeppelin/ERC20Burnable.json +303 -0
- package/src/prebuilt/openzeppelin/ERC20Burnable.ts +298 -0
- package/src/prebuilt/openzeppelin/ERC20Capped.json +285 -0
- package/src/prebuilt/openzeppelin/ERC20Capped.ts +285 -0
- package/src/prebuilt/openzeppelin/ERC20FlashMint.json +349 -0
- package/src/prebuilt/openzeppelin/ERC20FlashMint.ts +305 -0
- package/src/prebuilt/openzeppelin/ERC20Pausable.json +311 -0
- package/src/prebuilt/openzeppelin/ERC20Pausable.ts +327 -0
- package/src/prebuilt/openzeppelin/ERC20Permit.json +412 -0
- package/src/prebuilt/openzeppelin/ERC20Permit.ts +348 -0
- package/src/prebuilt/openzeppelin/ERC20PresetFixedSupply.json +329 -0
- package/src/prebuilt/openzeppelin/ERC20PresetFixedSupply.ts +302 -0
- package/src/prebuilt/openzeppelin/ERC20PresetMinterPauser.json +663 -0
- package/src/prebuilt/openzeppelin/ERC20PresetMinterPauser.ts +554 -0
- package/src/prebuilt/openzeppelin/ERC20Snapshot.json +328 -0
- package/src/prebuilt/openzeppelin/ERC20Snapshot.ts +315 -0
- package/src/prebuilt/openzeppelin/ERC20Votes.json +675 -0
- package/src/prebuilt/openzeppelin/ERC20Votes.ts +484 -0
- package/src/prebuilt/openzeppelin/ERC20VotesComp.json +718 -0
- package/src/prebuilt/openzeppelin/ERC20VotesComp.ts +502 -0
- package/src/prebuilt/openzeppelin/ERC20Wrapper.json +333 -0
- package/src/prebuilt/openzeppelin/ERC20Wrapper.ts +307 -0
- package/src/prebuilt/openzeppelin/ERC2771Context.json +21 -0
- package/src/prebuilt/openzeppelin/ERC2771Context.ts +143 -0
- package/src/prebuilt/openzeppelin/ERC2981.json +50 -0
- package/src/prebuilt/openzeppelin/ERC2981.ts +152 -0
- package/src/prebuilt/openzeppelin/ERC4626.json +662 -0
- package/src/prebuilt/openzeppelin/ERC4626.ts +470 -0
- package/src/prebuilt/openzeppelin/ERC721.json +348 -0
- package/src/prebuilt/openzeppelin/ERC721.ts +314 -0
- package/src/prebuilt/openzeppelin/ERC721Burnable.json +345 -0
- package/src/prebuilt/openzeppelin/ERC721Burnable.ts +321 -0
- package/src/prebuilt/openzeppelin/ERC721Consecutive.json +363 -0
- package/src/prebuilt/openzeppelin/ERC721Consecutive.ts +331 -0
- package/src/prebuilt/openzeppelin/ERC721Enumerable.json +388 -0
- package/src/prebuilt/openzeppelin/ERC721Enumerable.ts +337 -0
- package/src/prebuilt/openzeppelin/ERC721Holder.json +36 -0
- package/src/prebuilt/openzeppelin/ERC721Holder.ts +143 -0
- package/src/prebuilt/openzeppelin/ERC721Pausable.json +371 -0
- package/src/prebuilt/openzeppelin/ERC721Pausable.ts +361 -0
- package/src/prebuilt/openzeppelin/ERC721PresetMinterPauserAutoId.json +742 -0
- package/src/prebuilt/openzeppelin/ERC721PresetMinterPauserAutoId.ts +595 -0
- package/src/prebuilt/openzeppelin/ERC721Royalty.json +361 -0
- package/src/prebuilt/openzeppelin/ERC721Royalty.ts +319 -0
- package/src/prebuilt/openzeppelin/ERC721URIStorage.json +364 -0
- package/src/prebuilt/openzeppelin/ERC721URIStorage.ts +352 -0
- package/src/prebuilt/openzeppelin/ERC721Votes.json +637 -0
- package/src/prebuilt/openzeppelin/ERC721Votes.ts +489 -0
- package/src/prebuilt/openzeppelin/ERC721Wrapper.json +427 -0
- package/src/prebuilt/openzeppelin/ERC721Wrapper.ts +352 -0
- package/src/prebuilt/openzeppelin/ERC777.json +578 -0
- package/src/prebuilt/openzeppelin/ERC777.ts +456 -0
- package/src/prebuilt/openzeppelin/ERC777PresetFixedSupply.json +588 -0
- package/src/prebuilt/openzeppelin/ERC777PresetFixedSupply.ts +456 -0
- package/src/prebuilt/openzeppelin/Escrow.json +137 -0
- package/src/prebuilt/openzeppelin/Escrow.ts +250 -0
- package/src/prebuilt/openzeppelin/Governor.json +1010 -0
- package/src/prebuilt/openzeppelin/Governor.ts +590 -0
- package/src/prebuilt/openzeppelin/GovernorCompatibilityBravo.json +1325 -0
- package/src/prebuilt/openzeppelin/GovernorCompatibilityBravo.ts +700 -0
- package/src/prebuilt/openzeppelin/GovernorCountingSimple.json +1039 -0
- package/src/prebuilt/openzeppelin/GovernorCountingSimple.ts +599 -0
- package/src/prebuilt/openzeppelin/GovernorPreventLateQuorum.json +1074 -0
- package/src/prebuilt/openzeppelin/GovernorPreventLateQuorum.ts +652 -0
- package/src/prebuilt/openzeppelin/GovernorProposalThreshold.json +1010 -0
- package/src/prebuilt/openzeppelin/GovernorProposalThreshold.ts +590 -0
- package/src/prebuilt/openzeppelin/GovernorSettings.json +1106 -0
- package/src/prebuilt/openzeppelin/GovernorSettings.ts +686 -0
- package/src/prebuilt/openzeppelin/GovernorTimelockCompound.json +1134 -0
- package/src/prebuilt/openzeppelin/GovernorTimelockCompound.ts +683 -0
- package/src/prebuilt/openzeppelin/GovernorTimelockControl.json +1127 -0
- package/src/prebuilt/openzeppelin/GovernorTimelockControl.ts +672 -0
- package/src/prebuilt/openzeppelin/GovernorVotes.json +1023 -0
- package/src/prebuilt/openzeppelin/GovernorVotes.ts +599 -0
- package/src/prebuilt/openzeppelin/GovernorVotesComp.json +1023 -0
- package/src/prebuilt/openzeppelin/GovernorVotesComp.ts +599 -0
- package/src/prebuilt/openzeppelin/GovernorVotesQuorumFraction.json +1100 -0
- package/src/prebuilt/openzeppelin/GovernorVotesQuorumFraction.ts +653 -0
- package/src/prebuilt/openzeppelin/IAMB.json +327 -0
- package/src/prebuilt/openzeppelin/IAMB.ts +330 -0
- package/src/prebuilt/openzeppelin/IAccessControl.json +174 -0
- package/src/prebuilt/openzeppelin/IAccessControl.ts +239 -0
- package/src/prebuilt/openzeppelin/IAccessControlDefaultAdminRules.json +346 -0
- package/src/prebuilt/openzeppelin/IAccessControlDefaultAdminRules.ts +423 -0
- package/src/prebuilt/openzeppelin/IAccessControlEnumerable.json +217 -0
- package/src/prebuilt/openzeppelin/IAccessControlEnumerable.ts +257 -0
- package/src/prebuilt/openzeppelin/IArbSys.json +355 -0
- package/src/prebuilt/openzeppelin/IArbSys.ts +300 -0
- package/src/prebuilt/openzeppelin/IBeacon.json +15 -0
- package/src/prebuilt/openzeppelin/IBeacon.ts +143 -0
- package/src/prebuilt/openzeppelin/IBridge.json +529 -0
- package/src/prebuilt/openzeppelin/IBridge.ts +430 -0
- package/src/prebuilt/openzeppelin/ICompoundTimelock.json +415 -0
- package/src/prebuilt/openzeppelin/ICompoundTimelock.ts +380 -0
- package/src/prebuilt/openzeppelin/ICrossDomainMessenger.json +101 -0
- package/src/prebuilt/openzeppelin/ICrossDomainMessenger.ts +208 -0
- package/src/prebuilt/openzeppelin/IERC1155.json +295 -0
- package/src/prebuilt/openzeppelin/IERC1155.ts +278 -0
- package/src/prebuilt/openzeppelin/IERC1155MetadataURI.json +314 -0
- package/src/prebuilt/openzeppelin/IERC1155MetadataURI.ts +287 -0
- package/src/prebuilt/openzeppelin/IERC1155Receiver.json +99 -0
- package/src/prebuilt/openzeppelin/IERC1155Receiver.ts +163 -0
- package/src/prebuilt/openzeppelin/IERC1271.json +26 -0
- package/src/prebuilt/openzeppelin/IERC1271.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC1363.json +373 -0
- package/src/prebuilt/openzeppelin/IERC1363.ts +287 -0
- package/src/prebuilt/openzeppelin/IERC1363Receiver.json +36 -0
- package/src/prebuilt/openzeppelin/IERC1363Receiver.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC1363Spender.json +31 -0
- package/src/prebuilt/openzeppelin/IERC1363Spender.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC165.json +21 -0
- package/src/prebuilt/openzeppelin/IERC165.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC1820Implementer.json +26 -0
- package/src/prebuilt/openzeppelin/IERC1820Implementer.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC1820Registry.json +215 -0
- package/src/prebuilt/openzeppelin/IERC1820Registry.ts +245 -0
- package/src/prebuilt/openzeppelin/IERC1822Proxiable.json +15 -0
- package/src/prebuilt/openzeppelin/IERC1822Proxiable.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC20.json +185 -0
- package/src/prebuilt/openzeppelin/IERC20.ts +227 -0
- package/src/prebuilt/openzeppelin/IERC20Metadata.json +224 -0
- package/src/prebuilt/openzeppelin/IERC20Metadata.ts +254 -0
- package/src/prebuilt/openzeppelin/IERC20Permit.json +77 -0
- package/src/prebuilt/openzeppelin/IERC20Permit.ts +161 -0
- package/src/prebuilt/openzeppelin/IERC2612.json +77 -0
- package/src/prebuilt/openzeppelin/IERC2612.ts +161 -0
- package/src/prebuilt/openzeppelin/IERC2981.json +50 -0
- package/src/prebuilt/openzeppelin/IERC2981.ts +152 -0
- package/src/prebuilt/openzeppelin/IERC3156FlashBorrower.json +41 -0
- package/src/prebuilt/openzeppelin/IERC3156FlashBorrower.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC3156FlashLender.json +79 -0
- package/src/prebuilt/openzeppelin/IERC3156FlashLender.ts +161 -0
- package/src/prebuilt/openzeppelin/IERC4626.json +614 -0
- package/src/prebuilt/openzeppelin/IERC4626.ts +448 -0
- package/src/prebuilt/openzeppelin/IERC4906.json +319 -0
- package/src/prebuilt/openzeppelin/IERC4906.ts +325 -0
- package/src/prebuilt/openzeppelin/IERC5267.json +51 -0
- package/src/prebuilt/openzeppelin/IERC5267.ts +157 -0
- package/src/prebuilt/openzeppelin/IERC5313.json +15 -0
- package/src/prebuilt/openzeppelin/IERC5313.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC5805.json +210 -0
- package/src/prebuilt/openzeppelin/IERC5805.ts +243 -0
- package/src/prebuilt/openzeppelin/IERC6372.json +28 -0
- package/src/prebuilt/openzeppelin/IERC6372.ts +152 -0
- package/src/prebuilt/openzeppelin/IERC721.json +287 -0
- package/src/prebuilt/openzeppelin/IERC721.ts +283 -0
- package/src/prebuilt/openzeppelin/IERC721Enumerable.json +343 -0
- package/src/prebuilt/openzeppelin/IERC721Enumerable.ts +310 -0
- package/src/prebuilt/openzeppelin/IERC721Metadata.json +332 -0
- package/src/prebuilt/openzeppelin/IERC721Metadata.ts +310 -0
- package/src/prebuilt/openzeppelin/IERC721Receiver.json +36 -0
- package/src/prebuilt/openzeppelin/IERC721Receiver.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC777.json +393 -0
- package/src/prebuilt/openzeppelin/IERC777.ts +359 -0
- package/src/prebuilt/openzeppelin/IERC777Recipient.json +40 -0
- package/src/prebuilt/openzeppelin/IERC777Recipient.ts +143 -0
- package/src/prebuilt/openzeppelin/IERC777Sender.json +40 -0
- package/src/prebuilt/openzeppelin/IERC777Sender.ts +143 -0
- package/src/prebuilt/openzeppelin/IFxMessageProcessor.json +25 -0
- package/src/prebuilt/openzeppelin/IFxMessageProcessor.ts +143 -0
- package/src/prebuilt/openzeppelin/IGovernor.json +762 -0
- package/src/prebuilt/openzeppelin/IGovernor.ts +471 -0
- package/src/prebuilt/openzeppelin/IGovernorCompatibilityBravo.json +992 -0
- package/src/prebuilt/openzeppelin/IGovernorCompatibilityBravo.ts +536 -0
- package/src/prebuilt/openzeppelin/IGovernorTimelock.json +847 -0
- package/src/prebuilt/openzeppelin/IGovernorTimelock.ts +521 -0
- package/src/prebuilt/openzeppelin/IInbox.json +444 -0
- package/src/prebuilt/openzeppelin/IInbox.ts +337 -0
- package/src/prebuilt/openzeppelin/IOutbox.json +410 -0
- package/src/prebuilt/openzeppelin/IOutbox.ts +317 -0
- package/src/prebuilt/openzeppelin/ITransparentUpgradeableProxy.json +117 -0
- package/src/prebuilt/openzeppelin/ITransparentUpgradeableProxy.ts +239 -0
- package/src/prebuilt/openzeppelin/IVotes.json +184 -0
- package/src/prebuilt/openzeppelin/IVotes.ts +225 -0
- package/src/prebuilt/openzeppelin/LibArbitrumL2.json +15 -0
- package/src/prebuilt/openzeppelin/LibArbitrumL2.ts +143 -0
- package/src/prebuilt/openzeppelin/MinimalForwarder.json +208 -0
- package/src/prebuilt/openzeppelin/MinimalForwarder.ts +201 -0
- package/src/prebuilt/openzeppelin/Multicall.json +21 -0
- package/src/prebuilt/openzeppelin/Multicall.ts +143 -0
- package/src/prebuilt/openzeppelin/Ownable.json +54 -0
- package/src/prebuilt/openzeppelin/Ownable.ts +177 -0
- package/src/prebuilt/openzeppelin/Ownable2Step.json +93 -0
- package/src/prebuilt/openzeppelin/Ownable2Step.ts +218 -0
- package/src/prebuilt/openzeppelin/Pausable.json +41 -0
- package/src/prebuilt/openzeppelin/Pausable.ts +178 -0
- package/src/prebuilt/openzeppelin/PaymentSplitter.json +304 -0
- package/src/prebuilt/openzeppelin/PaymentSplitter.ts +296 -0
- package/src/prebuilt/openzeppelin/ProxyAdmin.json +151 -0
- package/src/prebuilt/openzeppelin/ProxyAdmin.ts +228 -0
- package/src/prebuilt/openzeppelin/PullPayment.json +34 -0
- package/src/prebuilt/openzeppelin/PullPayment.ts +152 -0
- package/src/prebuilt/openzeppelin/RefundEscrow.json +226 -0
- package/src/prebuilt/openzeppelin/RefundEscrow.ts +356 -0
- package/src/prebuilt/openzeppelin/TimelockController.json +891 -0
- package/src/prebuilt/openzeppelin/TimelockController.ts +573 -0
- package/src/prebuilt/openzeppelin/TokenTimelock.json +69 -0
- package/src/prebuilt/openzeppelin/TokenTimelock.ts +174 -0
- package/src/prebuilt/openzeppelin/UUPSUpgradeable.json +91 -0
- package/src/prebuilt/openzeppelin/UUPSUpgradeable.ts +219 -0
- package/src/prebuilt/openzeppelin/UpgradeableBeacon.json +104 -0
- package/src/prebuilt/openzeppelin/UpgradeableBeacon.ts +222 -0
- package/src/prebuilt/openzeppelin/VestingWallet.json +225 -0
- package/src/prebuilt/openzeppelin/VestingWallet.ts +254 -0
- package/src/prebuilt/openzeppelin/Votes.json +307 -0
- package/src/prebuilt/openzeppelin/Votes.ts +304 -0
- package/src/prebuilt/openzeppelin/compiled/TransparentUpgradeableProxy/TransparentUpgradeableProxy.ts +214 -0
- package/src/prebuilt/safe/CreateCall.ts +168 -0
- package/src/prebuilt/safe/GnosisSafe.ts +683 -0
- package/src/prebuilt/safe/MultiSend.ts +147 -0
- package/src/prebuilt/safe/Safe.ts +742 -0
- package/src/prebuilt/safe/SafeL2.ts +780 -0
- package/src/prebuilt/safe/SafeProxyFactory.ts +197 -0
- package/src/prebuilt/weth/WETH/WETH.ts +390 -0
- package/src/rpc/$rpc.ts +124 -0
- package/src/rpc/Rpc.ts +3010 -0
- package/src/rpc/RpcBase.ts +154 -0
- package/src/rpc/RpcContract.ts +179 -0
- package/src/rpc/RpcError.ts +41 -0
- package/src/rpc/RpcFunction.ts +42 -0
- package/src/rpc/RpcHandler.ts +3 -0
- package/src/rpc/RpcModelMiddleware.ts +110 -0
- package/src/rpc/RpcSubscription.ts +46 -0
- package/src/rpc/transports/HttpTransport.ts +54 -0
- package/src/rpc/transports/ITransport.ts +87 -0
- package/src/rpc/transports/MessageBasedTransport.ts +133 -0
- package/src/rpc/transports/RpcTransport.ts +66 -0
- package/src/rpc/transports/WsTransport.ts +87 -0
- package/src/rpc/transports/WsTransportIsomorphic.ts +26 -0
- package/src/rpc/transports/compatibility/EIP1193Transport.ts +38 -0
- package/src/rpc/transports/compatibility/Web3Transport.ts +35 -0
- package/src/safe/$gnosis.ts +7 -0
- package/src/safe/GnosisSafeFactory.ts +104 -0
- package/src/safe/GnosisSafeHandler.ts +472 -0
- package/src/safe/GnosisSafeService.ts +86 -0
- package/src/safe/SafeTx.ts +93 -0
- package/src/safe/abi/GnosisSafe.json +979 -0
- package/src/safe/abi/v1_4_1/CreateCall.json +68 -0
- package/src/safe/abi/v1_4_1/MultiSend.json +20 -0
- package/src/safe/abi/v1_4_1/Safe.json +999 -0
- package/src/safe/abi/v1_4_1/SafeL2.json +1104 -0
- package/src/safe/abi/v1_4_1/SafeProxyFactory.json +139 -0
- package/src/safe/transport/FileServiceTransport.ts +109 -0
- package/src/safe/transport/ISafeServiceTransport.ts +20 -0
- package/src/safe/transport/InMemoryServiceTransport.ts +84 -0
- package/src/safe/transport/SafeServiceTransport.ts +148 -0
- package/src/safe/types/SafeServiceTypes.ts +326 -0
- package/src/services/TimelockService.ts +666 -0
- package/src/solidity/SlotsDump.ts +245 -0
- package/src/solidity/SlotsParser/Ast.ts +601 -0
- package/src/solidity/SlotsParser/MappingSettersResolver.ts +681 -0
- package/src/solidity/SlotsParser/SourceFile.ts +240 -0
- package/src/solidity/SlotsParser/models.ts +32 -0
- package/src/solidity/SlotsParser.ts +497 -0
- package/src/solidity/SlotsStorage.ts +209 -0
- package/src/solidity/SolidityParser.ts +108 -0
- package/src/solidity/SourceCodeProvider.ts +83 -0
- package/src/solidity/storage/Accessor.spec.ts +45 -0
- package/src/solidity/storage/Accessor.ts +136 -0
- package/src/solidity/storage/MappingKeysLoader.ts +112 -0
- package/src/solidity/storage/SlotDynamicArray.ts +46 -0
- package/src/solidity/storage/SlotFixedArray.ts +31 -0
- package/src/solidity/storage/SlotsStorageHandler.ts +18 -0
- package/src/solidity/storage/SlotsStorageTransport.ts +215 -0
- package/src/solidity/storage/handlers/SlotBytesHandler.ts +135 -0
- package/src/solidity/storage/handlers/SlotDynamicArrayHandler.ts +58 -0
- package/src/solidity/storage/handlers/SlotFixedArrayHandler.ts +58 -0
- package/src/solidity/storage/handlers/SlotMappingHandler.ts +75 -0
- package/src/solidity/storage/handlers/SlotStringHandler.ts +27 -0
- package/src/solidity/storage/handlers/SlotStructHandler.ts +47 -0
- package/src/solidity/storage/handlers/SlotValueConstantHandler.ts +30 -0
- package/src/solidity/storage/handlers/SlotValueHandler.ts +36 -0
- package/src/solidity/storage/handlers/SlotValueImmutableHandler.ts +49 -0
- package/src/solidity/utils/$str.ts +73 -0
- package/src/solidity/utils/$types.ts +61 -0
- package/src/tokens/TokenDataProvider.ts +284 -0
- package/src/tokens/TokenExchangeService.ts +129 -126
- package/src/tokens/TokenExchanges/AmmBase/AmmUtilts.ts +16 -16
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmPairV2Service.ts +228 -208
- package/src/tokens/TokenExchanges/AmmV2ExchangeBase.ts +242 -242
- package/src/tokens/TokenExchanges/AmmV2PriceQuote.ts +433 -0
- package/src/tokens/TokenExchanges/OneInchExchange.ts +114 -111
- package/src/tokens/TokenExchanges/PancakeswapExchange.ts +25 -30
- package/src/tokens/TokenExchanges/SushiswapPolygonExchange.ts +33 -30
- package/src/tokens/TokenExchanges/UniswapV2Exchange.ts +28 -0
- package/src/tokens/TokenOracles/IOracle.ts +36 -0
- package/src/tokens/TokenOracles/TokenPriceStore.ts +130 -129
- package/src/tokens/TokenOracles/amm/AmmV1Oracle.ts +219 -0
- package/src/tokens/TokenOracles/amm/AmmV2Oracle.ts +57 -0
- package/src/tokens/TokenOracles/chainlink/ChainlinkFeedProvider.ts +133 -0
- package/src/tokens/TokenOracles/chainlink/ChainlinkOracle.ts +135 -0
- package/src/tokens/TokenOracles/coingecko/CoingeckoOracle.ts +121 -0
- package/src/tokens/TokenOracles/coingecko/CoingeckoTokenProvider.ts +51 -0
- package/src/tokens/TokenPriceService.ts +273 -276
- package/src/tokens/TokenPriceServiceProvider.ts +36 -36
- package/src/tokens/TokenProviders/ITokenProvider.ts +9 -9
- package/src/tokens/TokenProviders/TPChain.ts +53 -41
- package/src/tokens/TokenProviders/TPCoingecko.ts +177 -0
- package/src/tokens/TokenProviders/TPCoinmarketcap.ts +82 -82
- package/src/tokens/TokenProviders/TPConfig.ts +53 -0
- package/src/tokens/TokenProviders/TPExplorer.ts +41 -0
- package/src/tokens/TokenProviders/TPOneInch.ts +71 -71
- package/src/tokens/TokenProviders/TPSushiswap.ts +88 -96
- package/src/tokens/TokenProviders/TPUniswap.ts +87 -85
- package/src/tokens/TokenService.ts +142 -128
- package/src/tokens/TokenSwapService.ts +44 -47
- package/src/tokens/TokenTransferService.ts +233 -216
- package/src/tokens/TokensService.ts +42 -186
- package/src/tokens/TokensServiceBsc.ts +17 -17
- package/src/tokens/TokensServiceEth.ts +9 -9
- package/src/tokens/TokensServiceFactory.ts +15 -1
- package/src/tokens/TokensServicePolygon.ts +17 -17
- package/src/tokens/TokensServiceXDai.ts +26 -26
- package/src/tokens/defi/ISwapService.ts +12 -12
- package/src/tokens/defi/paraswap/Paraswap.ts +242 -244
- package/src/tokens/utils/TokenUtils.ts +63 -63
- package/src/txs/ITxBuilderOptions.ts +41 -0
- package/src/txs/TxDataBuilder.ts +308 -207
- package/src/txs/TxLogger.ts +120 -121
- package/src/txs/TxNonceManager.ts +86 -0
- package/src/txs/TxProvider.ts +70 -68
- package/src/txs/TxService.ts +20 -19
- package/src/txs/TxWriter.ts +342 -78
- package/src/txs/agents/Erc4337Agent.ts +32 -0
- package/src/txs/agents/SafeAgent.ts +20 -0
- package/src/txs/agents/TxWriterAccountAgents.ts +27 -0
- package/src/txs/conditional/GasWatcherLogger.ts +57 -57
- package/src/txs/conditional/GasWatcherService.ts +116 -117
- package/src/txs/conditional/GasWatcherStore.ts +41 -40
- package/src/txs/conditional/GasWatcherTx.ts +142 -143
- package/src/txs/receipt/ITxLogItem.ts +31 -25
- package/src/txs/receipt/TxLogParser.ts +56 -29
- package/src/txs/receipt/TxLogsTransfer.ts +61 -61
- package/src/txs/receipt/TxTopicInMemoryProvider.ts +45 -45
- package/src/txs/receipt/TxTopicProvider.ts +29 -29
- package/src/txs/sig-transports/SigFileTransport.ts +49 -0
- package/src/types/TAbi.ts +32 -0
- package/src/utils/$abiParser.ts +245 -179
- package/src/utils/$abiType.ts +277 -85
- package/src/utils/$abiUtils.ts +332 -38
- package/src/utils/$account.ts +48 -0
- package/src/utils/$address.ts +71 -37
- package/src/utils/$array.ts +113 -57
- package/src/utils/$base.ts +67 -0
- package/src/utils/$bigfloat.ts +562 -0
- package/src/utils/$bigint.ts +238 -127
- package/src/utils/$block.ts +20 -7
- package/src/utils/$bloom.ts +43 -0
- package/src/utils/$buffer.ts +196 -0
- package/src/utils/$cache.ts +7 -0
- package/src/utils/$class.ts +8 -8
- package/src/utils/$cli.ts +42 -0
- package/src/utils/$color.ts +213 -0
- package/src/utils/$config.ts +80 -17
- package/src/utils/$const.ts +1 -0
- package/src/utils/$contract.ts +309 -67
- package/src/utils/$crypto.ts +223 -0
- package/src/utils/$csv.ts +70 -54
- package/src/utils/$date.ts +697 -473
- package/src/utils/$error.ts +16 -0
- package/src/utils/$fn.ts +134 -134
- package/src/utils/$gas.ts +26 -0
- package/src/utils/$hex.ts +133 -0
- package/src/utils/$http.ts +219 -0
- package/src/utils/$is.ts +73 -37
- package/src/utils/$logger.ts +216 -10
- package/src/utils/$machine.ts +85 -0
- package/src/utils/$number.ts +135 -89
- package/src/utils/$object.ts +95 -95
- package/src/utils/$path.ts +76 -32
- package/src/utils/$perf.ts +20 -0
- package/src/utils/$platform.ts +5 -0
- package/src/utils/$promise.ts +154 -7
- package/src/utils/$regexp.ts +16 -0
- package/src/utils/$require.ts +212 -118
- package/src/utils/$secret.ts +27 -0
- package/src/utils/$semver.ts +27 -0
- package/src/utils/$sig.ts +722 -0
- package/src/utils/$sign.ts +136 -36
- package/src/utils/$signRaw.ts +50 -0
- package/src/utils/$signRawNative.ts +105 -0
- package/src/utils/$signSerializer.ts +27 -21
- package/src/utils/$txData.ts +23 -0
- package/src/utils/$wallet.ts +3 -10
- package/src/utils/types.ts +58 -29
- package/src/wallets/Wallet.ts +33 -33
- package/src/wallets/WalletBsc.ts +13 -13
- package/src/wallets/WalletService.ts +43 -43
- package/test/Batch.spec.ts +89 -0
- package/test/BlockChainExplorer.spec.ts +24 -0
- package/test/ChainAccount.spec.ts +52 -9
- package/test/Fixtures.ts +36 -0
- package/test/Web3Client.spec.ts +81 -0
- package/test/browser/block.spec.ts +9 -0
- package/test/client/block.spec.ts +19 -0
- package/test/config.js +68 -0
- package/test/config.spec.ts +31 -0
- package/test/config.yml +4 -0
- package/test/contracts/ContractCreationResolver.spec.ts +26 -0
- package/test/ecrecover.spec.ts +63 -0
- package/test/erc2612/PermitToken.sol +10 -0
- package/test/erc4337/erc4337.spec.ts +407 -0
- package/test/fixtures/DaiTokenContract.ts +13 -13
- package/test/fixtures/abi/deployments.json +105 -0
- package/test/fixtures/abi/encode.json +23798 -0
- package/test/fixtures/abi/encodePacked.json +34586 -0
- package/test/fixtures/artifacts/AnyERC20/AnyERC20.json +340 -0
- package/test/fixtures/artifacts/AnyERC20/AnyERC20.sol +15 -0
- package/test/fixtures/contracts/AlphaKlimaSimple.sol +36 -0
- package/test/fixtures/contracts/Counter.sol +25 -0
- package/test/fixtures/contracts/Ecrecover.sol +33 -0
- package/test/fixtures/contracts/Foo.sol +49 -0
- package/test/fixtures/contracts/FooErc20.sol +7 -0
- package/test/fixtures/contracts/FooNestedModel.sol +6 -0
- package/test/fixtures/contracts/FreeToken.sol +263 -0
- package/test/fixtures/deployments/DeploymentsFoo.sol +14 -0
- package/test/fixtures/deployments/DeploymentsFooV2.sol +11 -0
- package/test/fixtures/deployments/DeploymentsFooV3.sol +12 -0
- package/test/fixtures/erc4337/core/BaseAccount.sol +107 -0
- package/test/fixtures/erc4337/core/BasePaymaster.sol +112 -0
- package/test/fixtures/erc4337/core/EntryPoint.sol +631 -0
- package/test/fixtures/erc4337/core/Helpers.sol +81 -0
- package/test/fixtures/erc4337/core/NonceManager.sol +40 -0
- package/test/fixtures/erc4337/core/SenderCreator.sol +28 -0
- package/test/fixtures/erc4337/core/StakeManager.sol +124 -0
- package/test/fixtures/erc4337/interfaces/IAccount.sol +34 -0
- package/test/fixtures/erc4337/interfaces/IAggregator.sol +36 -0
- package/test/fixtures/erc4337/interfaces/IEntryPoint.sol +205 -0
- package/test/fixtures/erc4337/interfaces/INonceManager.sol +27 -0
- package/test/fixtures/erc4337/interfaces/IPaymaster.sol +51 -0
- package/test/fixtures/erc4337/interfaces/IStakeManager.sol +104 -0
- package/test/fixtures/erc4337/interfaces/UserOperation.sol +91 -0
- package/test/fixtures/erc4337/samples/DepositPaymaster.sol +167 -0
- package/test/fixtures/erc4337/samples/IOracle.sol +11 -0
- package/test/fixtures/erc4337/samples/SimpleAccount.sol +138 -0
- package/test/fixtures/erc4337/samples/SimpleAccountFactory.sol +52 -0
- package/test/fixtures/erc4337/samples/TokenPaymaster.sol +113 -0
- package/test/fixtures/erc4337/samples/VerifyingPaymaster.sol +104 -0
- package/test/fixtures/erc4337/samples/bls/BLSAccount.sol +64 -0
- package/test/fixtures/erc4337/samples/bls/BLSAccountFactory.sol +61 -0
- package/test/fixtures/erc4337/samples/bls/BLSHelper.sol +232 -0
- package/test/fixtures/erc4337/samples/bls/BLSSignatureAggregator.sol +164 -0
- package/test/fixtures/erc4337/samples/bls/IBLSAccount.sol +16 -0
- package/test/fixtures/erc4337/samples/bls/lib/BLSOpen.sol +64 -0
- package/test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/BLS.sol +440 -0
- package/test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/BNPairingPrecompileCostEstimator.sol +108 -0
- package/test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/ModExp.sol +652 -0
- package/test/fixtures/erc4337/samples/callback/TokenCallbackHandler.sol +61 -0
- package/test/fixtures/erc4337/utils/Exec.sol +70 -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/mapping-setters/GTC.sol +611 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/Address.sol +189 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/FullMath.sol +124 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC165.sol +24 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC20.sol +77 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC20Minimal.sol +52 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC721.sol +129 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC721Enumerable.sol +29 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC721Metadata.sol +27 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC721Permit.sol +32 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IERC721Receiver.sol +21 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IMulticall.sol +13 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/INonfungiblePositionManager.sol +180 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IPeripheryImmutableState.sol +12 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IPeripheryPayments.sol +28 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IPoolInitializer.sol +22 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3Factory.sol +78 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3Pool.sol +24 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3PoolActions.sol +103 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3PoolDerivedState.sol +40 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3PoolEvents.sol +121 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3PoolImmutables.sol +35 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3PoolOwnerActions.sol +23 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3PoolState.sol +116 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IUniswapV3Staker.sol +183 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/IncentiveId.sol +14 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/Math.sol +31 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/Multicall.sol +28 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/NFTPositionInfo.sol +47 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/PoolAddress.sol +48 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/RewardMath.sol +42 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/TransferHelper.sol +60 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/TransferHelperExtended.sol +39 -0
- package/test/fixtures/mapping-setters/UniswapV3Staker/UniswapV3Staker.sol +350 -0
- package/test/fixtures/openzeppelin/Proxy.sol +11 -0
- package/test/fixtures/openzeppelin/ProxyAdmin.sol +11 -0
- package/test/fixtures/openzeppelin/beacon/BeaconProxy.sol +11 -0
- package/test/fixtures/openzeppelin/beacon/UpgradeableBeacon.sol +11 -0
- package/test/fixtures/parser/AlphaKlima.sol +36 -0
- package/test/fixtures/parser/CToken/CErc20.sol +228 -0
- package/test/fixtures/parser/CToken/CErc20Delegate.sol +44 -0
- package/test/fixtures/parser/CToken/CErc20Delegator.sol +476 -0
- package/test/fixtures/parser/CToken/CToken.sol +1156 -0
- package/test/fixtures/parser/CToken/CTokenInterfaces.sol +293 -0
- package/test/fixtures/parser/CToken/ComptrollerInterface.sol +72 -0
- package/test/fixtures/parser/CToken/EIP20Interface.sol +63 -0
- package/test/fixtures/parser/CToken/EIP20NonStandardInterface.sol +71 -0
- package/test/fixtures/parser/CToken/ErrorReporter.sol +127 -0
- package/test/fixtures/parser/CToken/ExponentialNoError.sol +171 -0
- package/test/fixtures/parser/CToken/InterestRateModel.sol +30 -0
- package/test/fixtures/parser/DAI.sol +194 -0
- package/test/fixtures/parser/PriceOracle.sol +1964 -0
- package/test/fixtures/parser/SAFE/Context.sol +24 -0
- package/test/fixtures/parser/SAFE/ERC20.sol +383 -0
- package/test/fixtures/parser/SAFE/IERC20.sol +82 -0
- package/test/fixtures/parser/SAFE/IERC20Metadata.sol +28 -0
- package/test/fixtures/parser/SAFE/Ownable.sol +76 -0
- package/test/fixtures/parser/SAFE/Pausable.sol +91 -0
- package/test/fixtures/parser/SAFE/SafeToken.sol +48 -0
- package/test/fixtures/parser/SAFE/TokenRescuer.sol +29 -0
- package/test/fixtures/parser/SomeERC20/Context.sol +24 -0
- package/test/fixtures/parser/SomeERC20/ERC20.sol +389 -0
- package/test/fixtures/parser/SomeERC20/IERC20.sol +82 -0
- package/test/fixtures/parser/SomeERC20/IERC20Metadata.sol +28 -0
- package/test/fixtures/parser/SomeERC20/Ownable.sol +83 -0
- package/test/fixtures/parser/SomeERC20/SomeToken.sol +210 -0
- package/test/fixtures/parser/TetherToken.sol +447 -0
- package/test/fixtures/parser/USDC.sol +2231 -0
- package/test/fixtures/parser/v04/ENJToken.sol +493 -0
- package/test/fixtures/parser/v04/MultiSigWallet.sol +371 -0
- package/test/fixtures/receipts/swap.json +93 -93
- 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/flashbots/flashbots.spec.ts +79 -0
- package/test/generate/class.spec.ts +293 -5
- package/test/generate/evm.spec.ts +71 -0
- package/test/generate/gen.spec.ts +69 -0
- package/test/generate/openzeppelin.spec.ts +22 -0
- package/test/generate/slotreader.spec.ts +34 -0
- package/test/hardhat/TestNode.ts +76 -61
- package/test/hardhat/compile.spec.ts +22 -0
- package/test/hardhat/deploy.spec.ts +579 -0
- package/test/hardhat/deployments/deployments.spec.ts +233 -0
- package/test/hardhat/deployments/proxy-layout.spec.ts +296 -0
- package/test/hardhat/forked.spec.ts +56 -0
- package/test/hardhat/gas.spec.ts +40 -0
- package/test/hardhat/permit.ts +33 -0
- package/test/hardhat/revert.spec.ts +30 -0
- package/test/indexer/BlocksWalker.spec.ts +51 -0
- package/test/indexer/EventsIndexer.spec.ts +170 -0
- package/test/json/JsonStore.spec.ts +170 -0
- package/test/node/block.spec.ts +11 -0
- package/test/ns.spec.ts +67 -30
- package/test/perf/calldata.spec.ts +93 -0
- package/test/receipt.spec.ts +52 -27
- package/test/rpc/rpc.spec.ts +353 -0
- package/test/rpc/rpcUtil.spec.ts +31 -0
- package/test/safe/safe.spec.ts +352 -0
- package/test/services/timelock.spec.ts +97 -0
- package/test/solidity/AbiExtractor.spec.ts +468 -0
- package/test/solidity/MappingSettersResolver.spec.ts +516 -0
- package/test/solidity/SlotsDump.spec.ts +154 -0
- package/test/solidity/SlotsParser.spec.ts +536 -0
- package/test/solidity/SlotsReader.spec.ts +388 -0
- package/test/solidity/Storage.spec.ts +404 -0
- package/test/structs/PackedRanges.spec.ts +56 -0
- package/test/subscriptions.spec.ts +127 -0
- package/test/token.spec.ts +17 -0
- package/test/tokens/oracles.spec.ts +51 -0
- package/test/utils/abi-parser-args.spec.ts +143 -0
- package/test/utils/abi-parser.spec.ts +141 -117
- package/test/utils/abi-types.spec.ts +31 -0
- package/test/utils/abi-utils.spec.ts +23 -0
- package/test/utils/abi.spec.ts +178 -0
- package/test/utils/address.spec.ts +66 -0
- package/test/utils/bigfloat/div.spec.ts +1919 -0
- package/test/utils/bigfloat/mod.spec.ts +1745 -0
- package/test/utils/bigfloat/mul.spec.ts +2085 -0
- package/test/utils/bigfloat/round.spec.ts +174 -0
- package/test/utils/bigfloat/sqrt.spec.ts +420 -0
- package/test/utils/bigint.spec.ts +39 -40
- package/test/utils/bytecode.spec.ts +107 -0
- package/test/utils/crypto.spec.ts +37 -0
- package/test/utils/date.spec.ts +9 -8
- package/test/utils/fn.spec.ts +39 -39
- package/test/utils/logbloom.spec.ts +17 -0
- package/test/utils/number.spec.ts +52 -41
- package/test/utils/rlp.spec.ts +142 -0
- package/test/utils/sign.spec.ts +327 -22
- package/tools/build-dts.ts +111 -0
- package/tools/copy-dts.ts +48 -0
- package/tsconfig-build.json +24 -24
- package/tsconfig-src.json +44 -36
- package/tsconfig.esm.json +12 -0
- package/tsconfig.json +34 -27
- package/tsconfig.umd.json +28 -0
- package/typings/globals/axios/index.d.ts +6 -6
- package/typings.json +6 -6
- package/contracts/abi/erc20.abi.json +0 -222
- package/contracts/gen/amm/AmmFactoryV2ContractBase.ts +0 -66
- package/contracts/gen/amm/AmmMasterChefV2ContractBase.ts +0 -158
- package/contracts/gen/amm/AmmPairContractV2Base.ts +0 -158
- package/contracts/gen/amm/AmmPairContractV3Base.ts +0 -125
- package/contracts/gen/amm/AmmRouterV2ContractBase.ts +0 -124
- package/contracts/gen/amm/AmmVaultV2ContractBase.ts +0 -214
- package/contracts/gen/base/ERC20Base.ts +0 -90
- package/contracts/gen/bsc/OneInchRouterV3Base.ts +0 -57
- package/contracts/gen/eth/WETHBase/WETHBase.sol +0 -756
- package/contracts/gen/eth/WETHBase.ts +0 -136
- package/contracts/gen/polygon/ERC20PolygonBase.ts +0 -305
- package/contracts/gen/polygon/WormholeBridgeContractBase/Address.sol +0 -216
- package/contracts/gen/polygon/WormholeBridgeContractBase/BeaconProxy.sol +0 -61
- package/contracts/gen/polygon/WormholeBridgeContractBase/Bridge.sol +0 -437
- package/contracts/gen/polygon/WormholeBridgeContractBase/BridgeGetters.sol +0 -70
- package/contracts/gen/polygon/WormholeBridgeContractBase/BridgeGovernance.sol +0 -142
- package/contracts/gen/polygon/WormholeBridgeContractBase/BridgeImplementation.sol +0 -34
- package/contracts/gen/polygon/WormholeBridgeContractBase/BridgeSetters.sol +0 -57
- package/contracts/gen/polygon/WormholeBridgeContractBase/BridgeState.sol +0 -52
- package/contracts/gen/polygon/WormholeBridgeContractBase/BridgeStructs.sol +0 -66
- package/contracts/gen/polygon/WormholeBridgeContractBase/BytesLib.sol +0 -510
- package/contracts/gen/polygon/WormholeBridgeContractBase/Context.sol +0 -23
- package/contracts/gen/polygon/WormholeBridgeContractBase/ERC1967Proxy.sol +0 -32
- package/contracts/gen/polygon/WormholeBridgeContractBase/ERC1967Upgrade.sol +0 -193
- package/contracts/gen/polygon/WormholeBridgeContractBase/IBeacon.sol +0 -15
- package/contracts/gen/polygon/WormholeBridgeContractBase/IERC20.sol +0 -81
- package/contracts/gen/polygon/WormholeBridgeContractBase/IWormhole.sol +0 -42
- package/contracts/gen/polygon/WormholeBridgeContractBase/Ownable.sol +0 -71
- package/contracts/gen/polygon/WormholeBridgeContractBase/Proxy.sol +0 -85
- package/contracts/gen/polygon/WormholeBridgeContractBase/SafeERC20.sol +0 -98
- package/contracts/gen/polygon/WormholeBridgeContractBase/StorageSlot.sol +0 -83
- package/contracts/gen/polygon/WormholeBridgeContractBase/Structs.sol +0 -40
- package/contracts/gen/polygon/WormholeBridgeContractBase/Token.sol +0 -12
- package/contracts/gen/polygon/WormholeBridgeContractBase/TokenBridge.sol +0 -15
- package/contracts/gen/polygon/WormholeBridgeContractBase/TokenImplementation.sol +0 -177
- package/contracts/gen/polygon/WormholeBridgeContractBase/TokenState.sol +0 -31
- package/contracts/gen/polygon/WormholeBridgeContractBase.ts +0 -231
- package/contracts/gen/xdai/WXDaiTokenContractBase.ts +0 -136
- package/dist/contracts/gen/amm/AmmFactoryV2ContractBase.js +0 -53
- package/dist/contracts/gen/amm/AmmMasterChefV2ContractBase.js +0 -122
- package/dist/contracts/gen/amm/AmmPairContractV2Base.js +0 -122
- package/dist/contracts/gen/amm/AmmPairContractV3Base.js +0 -98
- package/dist/contracts/gen/amm/AmmRouterV2ContractBase.js +0 -95
- package/dist/contracts/gen/amm/AmmVaultV2ContractBase.js +0 -164
- package/dist/contracts/gen/base/ERC20Base.js +0 -64
- package/dist/contracts/gen/bsc/OneInchRouterV3Base.js +0 -47
- package/dist/contracts/gen/eth/WETHBase.js +0 -96
- package/dist/contracts/gen/polygon/ERC20PolygonBase.js +0 -233
- package/dist/contracts/gen/polygon/WormholeBridgeContractBase.js +0 -172
- package/dist/contracts/gen/xdai/WXDaiTokenContractBase.js +0 -96
- package/dist/src/BlockchainExplorer/BlockChainExplorerFactory.js +0 -227
- package/dist/src/BlockchainExplorer/BlockChainExplorerProvider.js +0 -32
- package/dist/src/BlockchainExplorer/BlockNumberCache.js +0 -33
- package/dist/src/BlockchainExplorer/Bscscan.js +0 -27
- package/dist/src/BlockchainExplorer/Etherscan.js +0 -27
- package/dist/src/BlockchainExplorer/IAbiProvider.js +0 -2
- package/dist/src/BlockchainExplorer/IBlockChainExplorer.js +0 -2
- package/dist/src/BlockchainExplorer/Polyscan.js +0 -27
- package/dist/src/ChainAccounts.js +0 -69
- package/dist/src/ChainAccountsService.js +0 -75
- package/dist/src/Config.js +0 -7
- package/dist/src/blocks/BlockDateResolver.js +0 -125
- package/dist/src/bridges/BridgeFactory.js +0 -19
- package/dist/src/bridges/hop/HopAddresses.js +0 -520
- package/dist/src/bridges/hop/HopBridge.js +0 -327
- package/dist/src/bridges/hop/contracts/gen.act.js +0 -43
- package/dist/src/bridges/hop/contracts/polygon/Dai_l2AmmWrapperContract.js +0 -52
- package/dist/src/bridges/hop/contracts/polygon/Dai_l2BridgeContract.js +0 -319
- package/dist/src/bridges/hop/contracts/polygon/Dai_l2SaddleSwapContract.js +0 -178
- package/dist/src/bridges/hop/contracts/polygon/Eth_l2AmmWrapperContract.js +0 -52
- package/dist/src/bridges/hop/contracts/polygon/Eth_l2BridgeContract.js +0 -319
- package/dist/src/bridges/hop/contracts/polygon/Eth_l2SaddleSwapContract.js +0 -178
- package/dist/src/bridges/hop/contracts/polygon/Matic_l2AmmWrapperContract.js +0 -52
- package/dist/src/bridges/hop/contracts/polygon/Matic_l2BridgeContract.js +0 -319
- package/dist/src/bridges/hop/contracts/polygon/Matic_l2SaddleSwapContract.js +0 -178
- package/dist/src/bridges/hop/contracts/polygon/Usdc_l2AmmWrapperContract.js +0 -52
- package/dist/src/bridges/hop/contracts/polygon/Usdc_l2BridgeContract.js +0 -319
- package/dist/src/bridges/hop/contracts/polygon/Usdc_l2SaddleSwapContract.js +0 -178
- package/dist/src/bridges/hop/contracts/polygon/Usdt_l2AmmWrapperContract.js +0 -52
- package/dist/src/bridges/hop/contracts/polygon/Usdt_l2BridgeContract.js +0 -319
- package/dist/src/bridges/hop/contracts/polygon/Usdt_l2SaddleSwapContract.js +0 -178
- package/dist/src/bridges/hop/contracts/polygon/Wbtc_l2AmmWrapperContract.js +0 -52
- package/dist/src/bridges/hop/contracts/polygon/Wbtc_l2BridgeContract.js +0 -319
- package/dist/src/bridges/hop/contracts/polygon/Wbtc_l2SaddleSwapContract.js +0 -178
- package/dist/src/bridges/models/IBridge.js +0 -2
- package/dist/src/bridges/wormhole/contracts/WormholeBridgeContract.js +0 -15
- package/dist/src/chains/PlatformFactory.js +0 -42
- package/dist/src/chains/arbitrum/ArbTokenProvider.js +0 -40
- package/dist/src/chains/arbitrum/ArbWeb3Client.js +0 -39
- package/dist/src/chains/arbitrum/Arbiscan.js +0 -27
- package/dist/src/chains/boba/BobaWeb3Client.js +0 -47
- package/dist/src/chains/boba/Bobascan.js +0 -28
- package/dist/src/chains/xdai/XDaiWeb3Client.js +0 -87
- package/dist/src/chains/xdai/XDaiscan.js +0 -27
- package/dist/src/chains/xdai/tokens/WXDaiTokenContract.js +0 -15
- package/dist/src/clients/BscWeb3Client.js +0 -38
- package/dist/src/clients/ClientEventsStream.js +0 -34
- package/dist/src/clients/ClientPool.js +0 -560
- package/dist/src/clients/ClientPoolStats.js +0 -52
- package/dist/src/clients/EthWeb3Client.js +0 -35
- package/dist/src/clients/HardhatWeb3Client.js +0 -56
- package/dist/src/clients/PolyWeb3Client.js +0 -77
- package/dist/src/clients/Web3Client.js +0 -186
- package/dist/src/clients/Web3ClientFactory.js +0 -32
- package/dist/src/clients/interfaces/IWeb3Client.js +0 -2
- package/dist/src/clients/interfaces/IWeb3ClientStatus.js +0 -2
- package/dist/src/clients/interfaces/IWeb3EndpointOptions.js +0 -2
- package/dist/src/clients/model/ClientStatus.js +0 -9
- package/dist/src/clients/model/PromiEventWrap.js +0 -52
- package/dist/src/clients/model/SubscriptionWrap.js +0 -42
- package/dist/src/clients/utils/ClientEndpoints.js +0 -27
- package/dist/src/clients/utils/ClientErrorUtil.js +0 -30
- package/dist/src/clients/utils/TxFactory.js +0 -14
- package/dist/src/contracts/BscContract.js +0 -30
- package/dist/src/contracts/Contract.js +0 -90
- package/dist/src/contracts/ContractBase.js +0 -139
- package/dist/src/contracts/ContractFactory.js +0 -17
- package/dist/src/contracts/ContractProvider.js +0 -40
- package/dist/src/contracts/ContractReader.js +0 -76
- package/dist/src/contracts/ContractStream.js +0 -20
- package/dist/src/contracts/ContractWriter.js +0 -62
- package/dist/src/contracts/EthContract.js +0 -31
- package/dist/src/contracts/TxContract.js +0 -37
- package/dist/src/contracts/common/ERC20.js +0 -14
- package/dist/src/contracts/common/ERC20Polygon.js +0 -14
- package/dist/src/contracts/common/PoolPair.js +0 -23
- package/dist/src/contracts/utils/AbiDeserializer.js +0 -89
- package/dist/src/contracts/utils/ConvertUtils.js +0 -21
- package/dist/src/contracts/utils/InputDataUtils.js +0 -87
- package/dist/src/contracts/utils/TypeUtils.js +0 -24
- package/dist/src/defi/OneInch/OneInchRouter.js +0 -14
- package/dist/src/env/BigIntSerializer.js +0 -19
- package/dist/src/gen/Ast.js +0 -12
- package/dist/src/gen/ContractTemplate.js +0 -27
- package/dist/src/gen/Generator.js +0 -180
- package/dist/src/gen/GeneratorFromAbi.js +0 -361
- package/dist/src/handlers/TokenHandler.js +0 -69
- package/dist/src/indexer/BlocksTxIndexer.js +0 -52
- package/dist/src/indexer/PendingTxIndexer.js +0 -96
- package/dist/src/indexer/handlers/BlocksWalker.js +0 -306
- package/dist/src/indexer/handlers/TxQueueLoader.js +0 -117
- package/dist/src/json/JsonArrayStore.js +0 -296
- package/dist/src/json/JsonObjectStore.js +0 -214
- package/dist/src/json/JsonStore.spec.js +0 -83
- package/dist/src/loggers/ILogger.js +0 -2
- package/dist/src/loggers/LoggerService.js +0 -34
- package/dist/src/loggers/TxLoggerService.js +0 -122
- package/dist/src/models/IContractDetails.js +0 -2
- package/dist/src/models/IToken.js +0 -2
- package/dist/src/models/ITokenGlob.js +0 -6
- package/dist/src/models/ITransactionDetails.js +0 -2
- package/dist/src/models/TAddress.js +0 -2
- package/dist/src/models/TBufferLike.js +0 -2
- package/dist/src/models/THex.js +0 -2
- package/dist/src/models/TPlatform.js +0 -2
- package/dist/src/models/TResult.js +0 -2
- package/dist/src/ns/NameService.js +0 -19
- package/dist/src/ns/providers/EnsProvider.js +0 -41
- package/dist/src/ns/providers/INsProvider.js +0 -2
- package/dist/src/ns/providers/UDProvider.js +0 -39
- package/dist/src/ns/utils/$ns.js +0 -17
- package/dist/src/structs/PackedRanges.js +0 -186
- package/dist/src/structs/PackedRanges.spec.js +0 -30
- package/dist/src/tokens/TokenExchangeService.js +0 -110
- package/dist/src/tokens/TokenExchanges/AmmBase/AmmUtilts.js +0 -17
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmFactoryV2Contract.js +0 -15
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmMasterChefV2Contract.js +0 -15
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmPairV2Contract.js +0 -16
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmPairV2Service.js +0 -144
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmRouterV2Contract.js +0 -15
- package/dist/src/tokens/TokenExchanges/AmmBase/V2/AmmVaultV2Contract.js +0 -15
- package/dist/src/tokens/TokenExchanges/AmmBase/V3/AmmPairV3Contract.js +0 -22
- package/dist/src/tokens/TokenExchanges/AmmV2ExchangeBase.js +0 -194
- package/dist/src/tokens/TokenExchanges/OneInchExchange.js +0 -92
- package/dist/src/tokens/TokenExchanges/PancakeswapExchange.js +0 -28
- package/dist/src/tokens/TokenExchanges/SushiswapPolygonExchange.js +0 -28
- package/dist/src/tokens/TokenExchanges/UniswapExchange.js +0 -28
- package/dist/src/tokens/TokenOracles/AmmPriceV2Oracle.js +0 -319
- package/dist/src/tokens/TokenOracles/TokenPriceStore.js +0 -108
- package/dist/src/tokens/TokenPriceService.js +0 -196
- package/dist/src/tokens/TokenPriceServiceProvider.js +0 -31
- package/dist/src/tokens/TokenProviders/ATokenProvider.js +0 -38
- package/dist/src/tokens/TokenProviders/ITokenProvider.js +0 -2
- package/dist/src/tokens/TokenProviders/TPChain.js +0 -35
- package/dist/src/tokens/TokenProviders/TPCoinmarketcap.js +0 -63
- package/dist/src/tokens/TokenProviders/TPOneInch.js +0 -65
- package/dist/src/tokens/TokenProviders/TPSushiswap.js +0 -89
- package/dist/src/tokens/TokenProviders/TPUniswap.js +0 -84
- package/dist/src/tokens/TokenService.js +0 -115
- package/dist/src/tokens/TokenSwapService.js +0 -37
- package/dist/src/tokens/TokenTransferService.js +0 -189
- package/dist/src/tokens/TokensService.js +0 -236
- package/dist/src/tokens/TokensServiceBsc.js +0 -18
- package/dist/src/tokens/TokensServiceEth.js +0 -15
- package/dist/src/tokens/TokensServiceFactory.js +0 -29
- package/dist/src/tokens/TokensServicePolygon.js +0 -18
- package/dist/src/tokens/TokensServiceXDai.js +0 -24
- package/dist/src/tokens/defi/ISwapService.js +0 -2
- package/dist/src/tokens/defi/paraswap/Paraswap.js +0 -135
- package/dist/src/tokens/erc20/eth/WETH.js +0 -14
- package/dist/src/tokens/utils/TokenUtils.js +0 -66
- package/dist/src/txs/ITxConfig.js +0 -2
- package/dist/src/txs/TxDataBuilder.js +0 -159
- package/dist/src/txs/TxLogger.js +0 -119
- package/dist/src/txs/TxProvider.js +0 -73
- package/dist/src/txs/TxService.js +0 -19
- package/dist/src/txs/TxWriter.js +0 -287
- package/dist/src/txs/conditional/GasWatcherLogger.js +0 -61
- package/dist/src/txs/conditional/GasWatcherService.js +0 -103
- package/dist/src/txs/conditional/GasWatcherStore.js +0 -25
- package/dist/src/txs/conditional/GasWatcherTx.js +0 -126
- package/dist/src/txs/receipt/ITxLogItem.js +0 -2
- package/dist/src/txs/receipt/TxLogParser.js +0 -27
- package/dist/src/txs/receipt/TxLogsTransfer.js +0 -50
- package/dist/src/txs/receipt/TxTopicInMemoryProvider.js +0 -41
- package/dist/src/txs/receipt/TxTopicProvider.js +0 -25
- package/dist/src/utils/$abiParser.js +0 -159
- package/dist/src/utils/$abiType.js +0 -77
- package/dist/src/utils/$abiUtils.js +0 -43
- package/dist/src/utils/$address.js +0 -41
- package/dist/src/utils/$array.js +0 -60
- package/dist/src/utils/$bigint.js +0 -130
- package/dist/src/utils/$block.js +0 -10
- package/dist/src/utils/$class.js +0 -13
- package/dist/src/utils/$config.js +0 -18
- package/dist/src/utils/$contract.js +0 -67
- package/dist/src/utils/$csv.js +0 -79
- package/dist/src/utils/$date.js +0 -496
- package/dist/src/utils/$fn.js +0 -117
- package/dist/src/utils/$is.js +0 -40
- package/dist/src/utils/$logger.js +0 -15
- package/dist/src/utils/$number.js +0 -95
- package/dist/src/utils/$object.js +0 -82
- package/dist/src/utils/$path.js +0 -33
- package/dist/src/utils/$promise.js +0 -13
- package/dist/src/utils/$require.js +0 -127
- package/dist/src/utils/$sign.js +0 -35
- package/dist/src/utils/$signSerializer.js +0 -264
- package/dist/src/utils/$wallet.js +0 -13
- package/dist/src/utils/types.js +0 -2
- package/dist/src/wallets/Wallet.js +0 -26
- package/dist/src/wallets/WalletBsc.js +0 -17
- package/dist/src/wallets/WalletService.js +0 -35
- package/dist/src/www/utils/BlockChainExplorerFormatter.js +0 -15
- package/src/BlockchainExplorer/BlockChainExplorerFactory.ts +0 -273
- package/src/BlockchainExplorer/BlockChainExplorerProvider.ts +0 -26
- package/src/BlockchainExplorer/BlockNumberCache.ts +0 -46
- package/src/BlockchainExplorer/Bscscan.ts +0 -23
- package/src/BlockchainExplorer/Etherscan.ts +0 -25
- package/src/BlockchainExplorer/IAbiProvider.ts +0 -5
- package/src/BlockchainExplorer/IBlockChainExplorer.ts +0 -37
- package/src/BlockchainExplorer/Polyscan.ts +0 -23
- package/src/ChainAccounts.ts +0 -72
- package/src/ChainAccountsService.ts +0 -74
- package/src/Config.ts +0 -34
- package/src/bridges/hop/contracts/polygon/Dai_l2AmmWrapperContract.ts +0 -69
- package/src/bridges/hop/contracts/polygon/Dai_l2BridgeContract.ts +0 -453
- package/src/bridges/hop/contracts/polygon/Dai_l2SaddleSwapContract.ts +0 -264
- package/src/bridges/hop/contracts/polygon/Eth_l2AmmWrapperContract.ts +0 -69
- package/src/bridges/hop/contracts/polygon/Eth_l2BridgeContract.ts +0 -453
- package/src/bridges/hop/contracts/polygon/Eth_l2SaddleSwapContract.ts +0 -264
- package/src/bridges/hop/contracts/polygon/Matic_l2AmmWrapperContract.ts +0 -69
- package/src/bridges/hop/contracts/polygon/Matic_l2BridgeContract.ts +0 -453
- package/src/bridges/hop/contracts/polygon/Matic_l2SaddleSwapContract.ts +0 -264
- package/src/bridges/hop/contracts/polygon/Usdc_l2AmmWrapperContract.ts +0 -69
- package/src/bridges/hop/contracts/polygon/Usdc_l2BridgeContract.ts +0 -453
- package/src/bridges/hop/contracts/polygon/Usdc_l2SaddleSwapContract.ts +0 -264
- package/src/bridges/hop/contracts/polygon/Usdt_l2AmmWrapperContract.ts +0 -69
- package/src/bridges/hop/contracts/polygon/Usdt_l2BridgeContract.ts +0 -453
- package/src/bridges/hop/contracts/polygon/Usdt_l2SaddleSwapContract.ts +0 -264
- package/src/bridges/hop/contracts/polygon/Wbtc_l2AmmWrapperContract.ts +0 -69
- package/src/bridges/hop/contracts/polygon/Wbtc_l2BridgeContract.ts +0 -453
- package/src/bridges/hop/contracts/polygon/Wbtc_l2SaddleSwapContract.ts +0 -264
- package/src/bridges/wormhole/contracts/WormholeBridgeContract.ts +0 -14
- package/src/chains/xdai/tokens/WXDaiTokenContract.json +0 -279
- package/src/chains/xdai/tokens/WXDaiTokenContract.ts +0 -14
- package/src/clients/HardhatWeb3Client.ts +0 -60
- package/src/contracts/ContractFactory.ts +0 -19
- package/src/contracts/common/ERC20.ts +0 -13
- package/src/contracts/common/ERC20Polygon.ts +0 -13
- package/src/contracts/common/PoolPair.ts +0 -22
- package/src/defi/OneInch/OneInchRouter.ts +0 -13
- package/src/json/JsonStore.spec.ts +0 -98
- package/src/structs/PackedRanges.spec.ts +0 -38
- package/src/structs/PackedRanges.ts +0 -207
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmFactoryV2Contract.ts +0 -15
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmMasterChefV2Contract.ts +0 -15
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmPairV2Contract.ts +0 -17
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmRouterV2Contract.ts +0 -15
- package/src/tokens/TokenExchanges/AmmBase/V2/AmmVaultV2Contract.ts +0 -15
- package/src/tokens/TokenExchanges/AmmBase/V3/AmmPairV3Contract.ts +0 -24
- package/src/tokens/TokenExchanges/UniswapExchange.ts +0 -31
- package/src/tokens/TokenOracles/AmmPriceV2Oracle.ts +0 -440
- package/src/tokens/erc20/eth/WETH.ts +0 -13
- package/src/txs/ITxConfig.ts +0 -27
- package/src/www/utils/BlockChainExplorerFormatter.ts +0 -13
- package/test/client.spec.ts +0 -59
|
@@ -0,0 +1,918 @@
|
|
|
1
|
+
import { UAction } from 'atma-utest';
|
|
2
|
+
import { Directory, File } from 'atma-io';
|
|
3
|
+
import alot from 'alot';
|
|
4
|
+
import { TAddress } from '@dequanto/models/TAddress';
|
|
5
|
+
import { $regexp } from '@dequanto/utils/$regexp';
|
|
6
|
+
import { $require } from '@dequanto/utils/$require';
|
|
7
|
+
|
|
8
|
+
UAction.create({
|
|
9
|
+
|
|
10
|
+
async 'download openrpc jsons'() {
|
|
11
|
+
const openRpcPaths = [
|
|
12
|
+
{
|
|
13
|
+
name: 'metamask',
|
|
14
|
+
path: 'https://metamask.github.io/api-specs/latest/openrpc.json'
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
name: 'coregeth',
|
|
18
|
+
path: 'https://raw.githubusercontent.com/etclabscore/ethereum-json-rpc-specification/master/openrpc.json'
|
|
19
|
+
}, {
|
|
20
|
+
name: 'eth',
|
|
21
|
+
path: 'https://raw.githubusercontent.com/maticnetwork/polygon-cli/main/rpctypes/schemas/openrpc.json'
|
|
22
|
+
}
|
|
23
|
+
];
|
|
24
|
+
await alot(openRpcPaths)
|
|
25
|
+
.forEachAsync(async data => {
|
|
26
|
+
let resp = await fetch(data.path);
|
|
27
|
+
let json = await resp.json();
|
|
28
|
+
|
|
29
|
+
await File.writeAsync(`./data/rpc/${data.name}.json`, json);
|
|
30
|
+
})
|
|
31
|
+
.toArrayAsync()
|
|
32
|
+
},
|
|
33
|
+
async '!generate models'() {
|
|
34
|
+
const openRPCs = [
|
|
35
|
+
'metamask',
|
|
36
|
+
'coregeth',
|
|
37
|
+
'eth',
|
|
38
|
+
'flashbots',
|
|
39
|
+
'overrides'
|
|
40
|
+
].map(scope => {
|
|
41
|
+
return {
|
|
42
|
+
scope: scope as IRpcMethod['scope'][0],
|
|
43
|
+
json: `./data/rpc/${scope}.json`
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
const generator = new Generator(openRPCs);
|
|
47
|
+
const code = await generator.generate();
|
|
48
|
+
|
|
49
|
+
await File.writeAsync('./src/rpc/Rpc.ts', code);
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
class Generator {
|
|
55
|
+
|
|
56
|
+
private code: string = '';
|
|
57
|
+
private rpc: IRpc;
|
|
58
|
+
|
|
59
|
+
constructor(public openRPCs: { json: string, scope: IRpcMethod['scope'][0] }[]) {
|
|
60
|
+
let x: TAddress
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
async generate() {
|
|
64
|
+
let rpc = this.rpc = await this.combineRPCs();
|
|
65
|
+
let template = [
|
|
66
|
+
`/** Autogenerated with "atma act ./actions/rpc.act.ts" */`,
|
|
67
|
+
``,
|
|
68
|
+
`import { DataLike } from '@dequanto/utils/types';`,
|
|
69
|
+
`import { TEth } from '@dequanto/models/TEth';`,
|
|
70
|
+
`import { RpcBase } from '@dequanto/rpc/RpcBase';`,
|
|
71
|
+
`import { RpcSubscription, RpcLogFilterOptions } from '@dequanto/rpc/RpcSubscription';`,
|
|
72
|
+
`//import { RpcHandler, RpcTransport } from '@dequanto/rpc/RpcHandler';`,
|
|
73
|
+
|
|
74
|
+
];
|
|
75
|
+
|
|
76
|
+
let methods = [];
|
|
77
|
+
let methodsRequests = [];
|
|
78
|
+
let types = [];
|
|
79
|
+
|
|
80
|
+
rpc.methods.forEach(method => {
|
|
81
|
+
methods.push('')
|
|
82
|
+
methods.push(this.writeMethodComment(method));
|
|
83
|
+
methods.push(this.writeMethodSignature(method) + ' {');
|
|
84
|
+
|
|
85
|
+
let isSubscription = method.name === 'eth_subscribe';
|
|
86
|
+
let baseMethod = isSubscription ? 'subscribe' : 'request';
|
|
87
|
+
|
|
88
|
+
methods.push(...[
|
|
89
|
+
` return this.${baseMethod}({ method: '${method.name}', params: Array.from(arguments) })`,
|
|
90
|
+
`}`,
|
|
91
|
+
]);
|
|
92
|
+
|
|
93
|
+
if (isSubscription === false) {
|
|
94
|
+
methodsRequests.push(...[
|
|
95
|
+
this.writeMethodSignature(method, { isRequest: true }) + ' {',
|
|
96
|
+
` return { method: '${method.name}', params: Array.from(arguments) };`,
|
|
97
|
+
`},`
|
|
98
|
+
]);
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
let schemas = rpc.components.schemas;
|
|
103
|
+
let knownSchemas = SchemaWalker.getUsedTypes(rpc);
|
|
104
|
+
for (let key in schemas) {
|
|
105
|
+
if (key in knownSchemas === false) {
|
|
106
|
+
console.log(`skip`, key);
|
|
107
|
+
continue;
|
|
108
|
+
}
|
|
109
|
+
console.log(`include`, key);
|
|
110
|
+
let schema = schemas[key];
|
|
111
|
+
types.push(``);
|
|
112
|
+
if (schema.title) {
|
|
113
|
+
types.push(`/** ${schema.title} */`);
|
|
114
|
+
}
|
|
115
|
+
types.push(`export type ${key} = ${this.writeSchema(schema)}`)
|
|
116
|
+
types.push(``);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
return [
|
|
120
|
+
...template,
|
|
121
|
+
|
|
122
|
+
`export class Rpc extends RpcBase {`,
|
|
123
|
+
...methods,
|
|
124
|
+
` protected returnSchemas = ${this.writeMethodReturnSchemas(rpc)};`,
|
|
125
|
+
` public req = {`,
|
|
126
|
+
...methodsRequests,
|
|
127
|
+
` }`,
|
|
128
|
+
`}`,
|
|
129
|
+
|
|
130
|
+
`export namespace RpcTypes {`,
|
|
131
|
+
...types,
|
|
132
|
+
`}`
|
|
133
|
+
].join('\n');
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
private async combineRPCs() {
|
|
137
|
+
let jsons = await alot(this.openRPCs).mapAsync(async rpc => {
|
|
138
|
+
return {
|
|
139
|
+
json: await File.readAsync<IRpc>(rpc.json),
|
|
140
|
+
scope: rpc.scope,
|
|
141
|
+
};
|
|
142
|
+
}).toArrayAsync();
|
|
143
|
+
|
|
144
|
+
let combined = <IRpc>{
|
|
145
|
+
methods: [],
|
|
146
|
+
components: {
|
|
147
|
+
schemas: {}
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
jsons.filter(x => x.scope !== 'overrides').forEach(rpc => {
|
|
151
|
+
rpc.json.methods.forEach(method => {
|
|
152
|
+
let current = combined.methods.find(m => m.name === method.name);
|
|
153
|
+
if (current) {
|
|
154
|
+
current.scope.push(rpc.scope);
|
|
155
|
+
return;
|
|
156
|
+
}
|
|
157
|
+
combined.methods.push({
|
|
158
|
+
scope: [rpc.scope],
|
|
159
|
+
...method,
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
let schemasCurrent = combined.components.schemas;
|
|
163
|
+
let schemasSource = rpc.json.components.schemas ?? {};
|
|
164
|
+
|
|
165
|
+
function fromSource(source: typeof schemasSource) {
|
|
166
|
+
for (let key in source) {
|
|
167
|
+
if (key in schemasCurrent) {
|
|
168
|
+
continue;
|
|
169
|
+
}
|
|
170
|
+
schemasCurrent[key] = source[key];
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
fromSource(rpc.json.components.schemas ?? {});
|
|
174
|
+
fromSource(rpc.json.components.contentDescriptors ?? {});
|
|
175
|
+
});
|
|
176
|
+
jsons.filter(x => x.scope === 'overrides').forEach(({ json }) => {
|
|
177
|
+
Object.keys(json.components.schemas).forEach(name => {
|
|
178
|
+
let source = json.components.schemas[name];
|
|
179
|
+
|
|
180
|
+
if (name.startsWith('(')) {
|
|
181
|
+
let rgx = new RegExp(name);
|
|
182
|
+
for (let key in combined.components.schemas) {
|
|
183
|
+
if (rgx.test(key) === false) {
|
|
184
|
+
continue;
|
|
185
|
+
}
|
|
186
|
+
merge(combined.components.schemas[key], source);
|
|
187
|
+
}
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
let target = combined.components.schemas[name];
|
|
192
|
+
$require.notNull(target, `Schema ${name} not found`);
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
if ('allOf' in target || 'oneOf' in target) {
|
|
196
|
+
let arr = (target as ISchema.AllOf).allOf ?? (target as ISchema.OneOf).oneOf;
|
|
197
|
+
let withProps = arr.find(x => 'properties' in x);
|
|
198
|
+
if (withProps === null) {
|
|
199
|
+
throw new Error(`Merge error - allOf/onOf contains no properties field`);
|
|
200
|
+
}
|
|
201
|
+
merge(withProps, source);
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
merge(target, source);
|
|
205
|
+
});
|
|
206
|
+
json.methods.forEach(method => {
|
|
207
|
+
let current = combined.methods.find(m => m.name === method.name);
|
|
208
|
+
if (current == null) {
|
|
209
|
+
combined.methods.push(method);
|
|
210
|
+
return;
|
|
211
|
+
}
|
|
212
|
+
if (method.result != null) {
|
|
213
|
+
current.result = method.result;
|
|
214
|
+
}
|
|
215
|
+
method.params?.forEach((param, i) => {
|
|
216
|
+
let x = method.params[i];
|
|
217
|
+
if (x != null) {
|
|
218
|
+
current.params[i] = x;
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
function merge(target, source) {
|
|
225
|
+
for (let key in source) {
|
|
226
|
+
let sourceValue = source[key];
|
|
227
|
+
let targetValue = target[key];
|
|
228
|
+
if (targetValue == null) {
|
|
229
|
+
target[key] = sourceValue;
|
|
230
|
+
if (key === 'type') {
|
|
231
|
+
delete target.$ref;
|
|
232
|
+
}
|
|
233
|
+
continue;
|
|
234
|
+
}
|
|
235
|
+
if (typeof sourceValue !== 'object') {
|
|
236
|
+
target[key] = sourceValue;
|
|
237
|
+
continue;
|
|
238
|
+
}
|
|
239
|
+
merge(targetValue, sourceValue);
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
});
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
// Normalize
|
|
246
|
+
|
|
247
|
+
combined.methods.forEach(m => {
|
|
248
|
+
m.params.forEach((param, i) => {
|
|
249
|
+
if (param.name == null && '$ref' in param) {
|
|
250
|
+
/** If parameter is simple type reference - extract name and normalize model */
|
|
251
|
+
let ref = param.$ref as string;
|
|
252
|
+
let name = /\w+$/.exec(ref)[0];
|
|
253
|
+
|
|
254
|
+
param = { name, schema: param as ISchema.TSchema };
|
|
255
|
+
m.params[i] = param;
|
|
256
|
+
}
|
|
257
|
+
if (/[A-Z]/.test(param.name)) {
|
|
258
|
+
// normalize param name
|
|
259
|
+
param.name = param.name[0].toLowerCase() + param.name.slice(1);
|
|
260
|
+
}
|
|
261
|
+
if (/\s/.test(param.name)) {
|
|
262
|
+
// normalize param name
|
|
263
|
+
param.name = param.name.replace(/\s+([\w])/g, (match, char) => {
|
|
264
|
+
return char.toUpperCase();
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
})
|
|
268
|
+
});
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
SchemaWalker.visitSchema(combined, schema => {
|
|
272
|
+
if ('anyOf' in schema) {
|
|
273
|
+
(schema as any).oneOf = schema.anyOf;
|
|
274
|
+
delete schema.anyOf;
|
|
275
|
+
}
|
|
276
|
+
if ('oneOf' in schema) {
|
|
277
|
+
schema.type = 'oneOf';
|
|
278
|
+
}
|
|
279
|
+
if ('allOf' in schema) {
|
|
280
|
+
schema.type = 'allOf';
|
|
281
|
+
}
|
|
282
|
+
if (schema.type == null) {
|
|
283
|
+
if ('properties' in schema) {
|
|
284
|
+
schema.type = 'object';
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
if (Array.isArray(schema.type)) {
|
|
288
|
+
let arr = schema.type.filter(x => x !== 'null')
|
|
289
|
+
$require.True(arr.length === 1, `Multiple types: ${schema.type.join(', ')}`);
|
|
290
|
+
schema.type = arr[0];
|
|
291
|
+
}
|
|
292
|
+
if ('$ref' in schema) {
|
|
293
|
+
let type = SchemaWalker.getRefType(schema);
|
|
294
|
+
if (/(uint|integer)/i.test(type)) {
|
|
295
|
+
return { type: 'bigint' };
|
|
296
|
+
}
|
|
297
|
+
if (/^byte$/.test(type)) {
|
|
298
|
+
return { type: 'number' };
|
|
299
|
+
}
|
|
300
|
+
if (/^(bytes|hash)/i.test(type)) {
|
|
301
|
+
return { type: 'TEth.Hex' } as any;
|
|
302
|
+
}
|
|
303
|
+
if (/^address$/.test(type)) {
|
|
304
|
+
return { type: 'TEth.Address' } as any;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
if (/integer/.test(schema.type)) {
|
|
308
|
+
return { type: 'bigint' };
|
|
309
|
+
}
|
|
310
|
+
return schema;
|
|
311
|
+
});
|
|
312
|
+
|
|
313
|
+
SchemaWalker.visitGlobalSchema(combined, (name, schema) => {
|
|
314
|
+
// Upper case all class names
|
|
315
|
+
name = name[0].toUpperCase() + name.slice(1);
|
|
316
|
+
return [name, schema];
|
|
317
|
+
});
|
|
318
|
+
SchemaWalker.visitSchema(combined, (schema) => {
|
|
319
|
+
if ('$ref' in schema) {
|
|
320
|
+
// use simple null for unknown types
|
|
321
|
+
if (/(NotFound|Null)/.test(schema.$ref)) {
|
|
322
|
+
return { type: 'null' }
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
return schema;
|
|
326
|
+
});
|
|
327
|
+
SchemaWalker.visitSchema(combined, (schema) => {
|
|
328
|
+
if ('oneOf' in schema) {
|
|
329
|
+
// Remove NofFound|Null values from oneOf
|
|
330
|
+
schema.oneOf = schema.oneOf.filter(x => x.type !== 'null');
|
|
331
|
+
if (schema.oneOf.length === 1) {
|
|
332
|
+
return schema.oneOf[0];
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
return schema;
|
|
336
|
+
});
|
|
337
|
+
|
|
338
|
+
SchemaWalker.visitSchema(combined, (schema) => {
|
|
339
|
+
if ('$ref' in schema) {
|
|
340
|
+
let type = SchemaWalker.getRefType(schema);
|
|
341
|
+
let property = SchemaWalker.getRefTypeProperty(schema);
|
|
342
|
+
if (property) {
|
|
343
|
+
let Type = combined.components.schemas[type] as ISchema.Object;
|
|
344
|
+
return Type.properties[property];
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
return schema;
|
|
348
|
+
});
|
|
349
|
+
|
|
350
|
+
function unwrapSimpleTypes () {
|
|
351
|
+
SchemaWalker.visitSchema(combined, (schema) => {
|
|
352
|
+
if ('$ref' in schema) {
|
|
353
|
+
let refSchema = SchemaWalker.getRefSchema(combined, schema);
|
|
354
|
+
if (SchemaWalker.isValueType(refSchema)) {
|
|
355
|
+
return refSchema;
|
|
356
|
+
} else if (refSchema.type === 'array') {
|
|
357
|
+
if (SchemaWalker.isValueType(refSchema.items) || '$ref' in refSchema.items) {
|
|
358
|
+
return refSchema;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
return schema;
|
|
363
|
+
});
|
|
364
|
+
}
|
|
365
|
+
unwrapSimpleTypes();
|
|
366
|
+
unwrapSimpleTypes();
|
|
367
|
+
|
|
368
|
+
SchemaWalker.visitSchema(combined, (schema) => {
|
|
369
|
+
if ('oneOf' in schema) {
|
|
370
|
+
// some have duplicate types
|
|
371
|
+
schema.oneOf = alot(schema.oneOf)
|
|
372
|
+
.distinctBy(x => this.writeSchema(x))
|
|
373
|
+
.toArray()
|
|
374
|
+
}
|
|
375
|
+
return schema;
|
|
376
|
+
});
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
SchemaWalker.visitSchema(combined, (schema) => {
|
|
380
|
+
if ('properties' in schema) {
|
|
381
|
+
const props = schema.properties;
|
|
382
|
+
if ('v' in props) {
|
|
383
|
+
props.v.type = 'number';
|
|
384
|
+
}
|
|
385
|
+
if ('r' in props) {
|
|
386
|
+
props.r.type = 'TEth.Hex' as any;
|
|
387
|
+
}
|
|
388
|
+
if ('s' in props) {
|
|
389
|
+
props.s.type = 'TEth.Hex' as any;
|
|
390
|
+
}
|
|
391
|
+
if ('yParity' in props) {
|
|
392
|
+
props.yParity.type = 'number';
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
return schema;
|
|
396
|
+
});
|
|
397
|
+
|
|
398
|
+
return combined;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
private writeMethodSignature(method: IRpcMethod, options?: { isRequest?: boolean }) {
|
|
402
|
+
if (method.name === 'eth_subscribe') {
|
|
403
|
+
return [
|
|
404
|
+
`eth_subscribe(type: 'newHeads'): Promise<RpcSubscription<TEth.Block>>`,
|
|
405
|
+
`eth_subscribe(type: 'logs', options: RpcLogFilterOptions): Promise<RpcSubscription<TEth.Log>>`,
|
|
406
|
+
`eth_subscribe(type: 'newPendingTransactions'): Promise<RpcSubscription<TEth.Tx>>`,
|
|
407
|
+
`eth_subscribe(type: any, options?): Promise<RpcSubscription<any>>`
|
|
408
|
+
].join('\n');
|
|
409
|
+
}
|
|
410
|
+
let isOptional = false;
|
|
411
|
+
let params = method.params.map(param => {
|
|
412
|
+
if (param.schema == null) {
|
|
413
|
+
console.error(`No schema for ${param.name}`, method);
|
|
414
|
+
}
|
|
415
|
+
/** If optional param was already seen previously, make all other also optional */
|
|
416
|
+
isOptional = isOptional || !param.required;
|
|
417
|
+
return `${param.name}${isOptional ? '?' : ''}: ${this.writeSchema(param.schema, '', 'argument')}`
|
|
418
|
+
});
|
|
419
|
+
let str = `${method.name}(${params.join(', ')})`;
|
|
420
|
+
let resultSchema = 'schema' in method.result ? method.result.schema : method.result;
|
|
421
|
+
if (resultSchema == null) {
|
|
422
|
+
console.error(`No schema for result ${method.name}`, method);
|
|
423
|
+
}
|
|
424
|
+
let returns = options?.isRequest
|
|
425
|
+
? ` { method: string, params: any[] }`
|
|
426
|
+
: `Promise<${this.writeSchema(resultSchema)}>`
|
|
427
|
+
return `${str}: ${returns}`
|
|
428
|
+
}
|
|
429
|
+
private writeMethodReturnSchemas(rpc: IRpc) {
|
|
430
|
+
|
|
431
|
+
//let schemasOut = {};
|
|
432
|
+
let methods = rpc.methods.reduce((x, method) => {
|
|
433
|
+
let info = this.jsonReturnsSchema('schema' in method.result ? method.result.schema : method.result, {});
|
|
434
|
+
if (info) {
|
|
435
|
+
x[method.name] = info;
|
|
436
|
+
}
|
|
437
|
+
return x;
|
|
438
|
+
}, {});
|
|
439
|
+
|
|
440
|
+
let schemasOut = SchemaWalker.getUsedTypes(rpc);
|
|
441
|
+
let schemas = Object.keys(schemasOut).reduce((x, schemaName) => {
|
|
442
|
+
let info = this.jsonReturnsSchema(rpc.components.schemas[schemaName] ?? rpc.components.contentDescriptors[schemaName]);
|
|
443
|
+
if (info) {
|
|
444
|
+
x[schemaName] = info;
|
|
445
|
+
}
|
|
446
|
+
return x;
|
|
447
|
+
}, {})
|
|
448
|
+
return JSON.stringify({ methods, schemas }, null, ' ');
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
private writeSchema(schema: ISchema.TSchema, ident = '', location?: 'argument' | 'return'): string {
|
|
452
|
+
if ('$ref' in schema) {
|
|
453
|
+
let str = schema.$ref;
|
|
454
|
+
let type = /(schemas|contentDescriptors)\/(?<type>\w+)(\/|$)/.exec(str)?.groups.type;
|
|
455
|
+
if (type == null) {
|
|
456
|
+
console.error(schema);
|
|
457
|
+
throw Error(`Not valid schema path: ${str}`);
|
|
458
|
+
}
|
|
459
|
+
let result = `RpcTypes.${type}`;
|
|
460
|
+
if (location === 'argument') {
|
|
461
|
+
result = `DataLike<${result}>`;
|
|
462
|
+
}
|
|
463
|
+
let props = /properties\/(?<props>.+)$/.exec(str)?.groups.props;
|
|
464
|
+
if (props) {
|
|
465
|
+
result += props.split('/').map(x => `['${x}']`).join('');
|
|
466
|
+
}
|
|
467
|
+
return result;
|
|
468
|
+
}
|
|
469
|
+
if (schema.type === 'string') {
|
|
470
|
+
if ('enum' in schema) {
|
|
471
|
+
return schema.enum.map(x => `'${x}'`).join(' | ');
|
|
472
|
+
}
|
|
473
|
+
return 'string'
|
|
474
|
+
}
|
|
475
|
+
if (schema.type === 'boolean') {
|
|
476
|
+
return 'boolean';
|
|
477
|
+
}
|
|
478
|
+
if (schema.type === 'null') {
|
|
479
|
+
return 'undefined';
|
|
480
|
+
}
|
|
481
|
+
if (schema.type === 'array') {
|
|
482
|
+
if (schema.items == null) {
|
|
483
|
+
return `any[]`;
|
|
484
|
+
}
|
|
485
|
+
let itemSchema = this.writeSchema(schema.items, ident + ' ');
|
|
486
|
+
if (itemSchema.match(/[|&]/)) {
|
|
487
|
+
// wrap multiple types with parenthesis
|
|
488
|
+
itemSchema = `(${itemSchema})`;
|
|
489
|
+
}
|
|
490
|
+
return `${itemSchema}[]`
|
|
491
|
+
}
|
|
492
|
+
if (schema.type === 'object') {
|
|
493
|
+
let props = schema.properties;
|
|
494
|
+
let str = [
|
|
495
|
+
`{`,
|
|
496
|
+
];
|
|
497
|
+
for (let key in props) {
|
|
498
|
+
let keyWrapped = /^[a-z_]\w*$/i.test(key) ? key : `'${key}'`;
|
|
499
|
+
let prop = props[key];
|
|
500
|
+
if (prop.title) {
|
|
501
|
+
str.push(` /* ${prop.title} */`)
|
|
502
|
+
}
|
|
503
|
+
str.push(` ${keyWrapped}: ${this.writeSchema(prop, ident + ' ')};`);
|
|
504
|
+
}
|
|
505
|
+
if (schema.additionalProperties) {
|
|
506
|
+
let propType = 'any';
|
|
507
|
+
if (typeof schema.additionalProperties === 'object') {
|
|
508
|
+
propType = this.writeSchema(schema.additionalProperties, ident + ' ');
|
|
509
|
+
}
|
|
510
|
+
str.push(` [key: string]: ${propType}`);
|
|
511
|
+
}
|
|
512
|
+
if (str.length === 1) {
|
|
513
|
+
str.push(` [key: string]: any`);
|
|
514
|
+
}
|
|
515
|
+
str.push(`}`);
|
|
516
|
+
return str.map((x, i) => `${i === 0 ? '' : ident}${x}`).join('\n');
|
|
517
|
+
}
|
|
518
|
+
if ('oneOf' in schema) {
|
|
519
|
+
return schema
|
|
520
|
+
.oneOf
|
|
521
|
+
.map(schema => this.writeSchema(schema))
|
|
522
|
+
.join(' | ');
|
|
523
|
+
}
|
|
524
|
+
if ('allOf' in schema) {
|
|
525
|
+
return schema
|
|
526
|
+
.allOf
|
|
527
|
+
.map(schema => this.writeSchema(schema))
|
|
528
|
+
.join(' & ');
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
return schema.type ?? 'any';
|
|
532
|
+
}
|
|
533
|
+
private jsonReturnsSchema(schema: ISchema.TSchema, schemasOut = {}) {
|
|
534
|
+
if ('$ref' in schema) {
|
|
535
|
+
let str = schema.$ref;
|
|
536
|
+
let type = /(schemas|contentDescriptors)\/(?<type>\w+)(\/|$)/.exec(str)?.groups.type;
|
|
537
|
+
if (type == null) {
|
|
538
|
+
console.error(schema);
|
|
539
|
+
throw Error(`Not valid schema path: ${str}`);
|
|
540
|
+
}
|
|
541
|
+
schemasOut[type] = 1;
|
|
542
|
+
return type;
|
|
543
|
+
}
|
|
544
|
+
switch (schema.type) {
|
|
545
|
+
case 'string':
|
|
546
|
+
case 'TAddress':
|
|
547
|
+
case 'THex':
|
|
548
|
+
return 'string';
|
|
549
|
+
}
|
|
550
|
+
if (schema.type === 'number') {
|
|
551
|
+
return 'number';
|
|
552
|
+
}
|
|
553
|
+
if (schema.type === 'boolean') {
|
|
554
|
+
return 'boolean';
|
|
555
|
+
}
|
|
556
|
+
if (schema.type === 'null') {
|
|
557
|
+
return 'undefined';
|
|
558
|
+
}
|
|
559
|
+
if (schema.type === 'integer' || schema.type === 'bigint') {
|
|
560
|
+
return 'bigint'
|
|
561
|
+
}
|
|
562
|
+
if (schema.type === 'array') {
|
|
563
|
+
if (schema.items == null) {
|
|
564
|
+
return { type: 'array' }
|
|
565
|
+
}
|
|
566
|
+
let resultType = this.jsonReturnsSchema(schema.items, schemasOut);
|
|
567
|
+
if (resultType == null) {
|
|
568
|
+
return null;
|
|
569
|
+
}
|
|
570
|
+
return [resultType];
|
|
571
|
+
}
|
|
572
|
+
if (schema.type === 'object') {
|
|
573
|
+
let type = {};
|
|
574
|
+
let props = schema.properties;
|
|
575
|
+
for (let key in props) {
|
|
576
|
+
let propType = this.jsonReturnsSchema(props[key], schemasOut);
|
|
577
|
+
if (propType != null) {
|
|
578
|
+
type[key] = propType;
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
return type;
|
|
582
|
+
}
|
|
583
|
+
switch (schema.type as any) {
|
|
584
|
+
case 'TEth.Hex':
|
|
585
|
+
case 'TEth.Address':
|
|
586
|
+
return 'string'
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
if ('oneOf' in schema || 'allOf' in schema) {
|
|
590
|
+
let key = 'oneOf' in schema? 'oneOf' : 'allOf';
|
|
591
|
+
let arr = SchemaWalker.mergeOneOfAnyOf(schema);
|
|
592
|
+
if (arr.length === 1) {
|
|
593
|
+
return this.jsonReturnsSchema(arr[0], schemasOut);
|
|
594
|
+
}
|
|
595
|
+
return {
|
|
596
|
+
[key]: schema[key].map(schema => this.jsonReturnsSchema(schema, schemasOut))
|
|
597
|
+
};
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
console.error(`unknown`, schema);
|
|
601
|
+
}
|
|
602
|
+
private writeMethodComment(method: IRpcMethod, ident = '') {
|
|
603
|
+
|
|
604
|
+
let str = [
|
|
605
|
+
`/**`,
|
|
606
|
+
` * ${method.summary ?? ''} <${method.scope?.join(' | ')}> `,
|
|
607
|
+
` * ${method.description ?? ''}`
|
|
608
|
+
];
|
|
609
|
+
method.params?.forEach(param => {
|
|
610
|
+
str.push(...[
|
|
611
|
+
` * @param ${param.name} - ${param.description ?? ((param as any).schema?.description) ?? ''}`
|
|
612
|
+
]);
|
|
613
|
+
});
|
|
614
|
+
if ('schema' in method.result) {
|
|
615
|
+
str.push(` * @returns ${method.result.name} - ${method.result.description ?? ''}`);
|
|
616
|
+
}
|
|
617
|
+
str.push(' */');
|
|
618
|
+
|
|
619
|
+
return str.map(x => `${ident}${x}`).join('\n');
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
interface IRpc {
|
|
625
|
+
methods: IRpcMethod[];
|
|
626
|
+
components: {
|
|
627
|
+
schemas: {
|
|
628
|
+
[name: string]: ISchema.TSchema
|
|
629
|
+
}
|
|
630
|
+
contentDescriptors?: {
|
|
631
|
+
[name: string]: ISchema.TSchema
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
interface IRpcMethod {
|
|
637
|
+
scope: ('wallet' | 'geth' | 'overrides')[]
|
|
638
|
+
name: string
|
|
639
|
+
summary: string
|
|
640
|
+
description: string
|
|
641
|
+
params: IRpcParameter[]
|
|
642
|
+
result: ISchema.TSchema | IRpcResult
|
|
643
|
+
}
|
|
644
|
+
interface IRpcParameter {
|
|
645
|
+
name: string
|
|
646
|
+
description?: string
|
|
647
|
+
required?: boolean
|
|
648
|
+
schema: ISchema.TSchema
|
|
649
|
+
}
|
|
650
|
+
interface IRpcResult {
|
|
651
|
+
name: string
|
|
652
|
+
schema: ISchema.TSchema
|
|
653
|
+
description?: string
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
namespace ISchema {
|
|
658
|
+
export type TSchema = Null
|
|
659
|
+
| Any
|
|
660
|
+
| String
|
|
661
|
+
| Value
|
|
662
|
+
| Object
|
|
663
|
+
| Array
|
|
664
|
+
| Boolean
|
|
665
|
+
| Integer
|
|
666
|
+
| Ref
|
|
667
|
+
| OneOf
|
|
668
|
+
| AllOf
|
|
669
|
+
;
|
|
670
|
+
|
|
671
|
+
interface IRpcSchemaBase {
|
|
672
|
+
title?: string
|
|
673
|
+
type: 'any' | 'object' | 'string' | 'array' | 'number' | 'integer' | 'boolean' | 'null' | 'oneOf' | 'allOf' | 'TAddress' | 'THex' | 'bigint'
|
|
674
|
+
description?: string
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
export interface Any extends IRpcSchemaBase {
|
|
678
|
+
type: 'any'
|
|
679
|
+
}
|
|
680
|
+
export interface Null extends IRpcSchemaBase {
|
|
681
|
+
type: 'null'
|
|
682
|
+
}
|
|
683
|
+
export interface Value extends IRpcSchemaBase {
|
|
684
|
+
type: 'bigint' | 'number' | 'TAddress' | 'THex'
|
|
685
|
+
}
|
|
686
|
+
export interface Integer extends IRpcSchemaBase {
|
|
687
|
+
type: 'integer'
|
|
688
|
+
}
|
|
689
|
+
export interface String extends IRpcSchemaBase {
|
|
690
|
+
type: 'string'
|
|
691
|
+
enum?: string[]
|
|
692
|
+
}
|
|
693
|
+
export interface Boolean extends IRpcSchemaBase {
|
|
694
|
+
type: 'boolean'
|
|
695
|
+
}
|
|
696
|
+
export interface Object extends IRpcSchemaBase {
|
|
697
|
+
type: 'object'
|
|
698
|
+
properties?: {
|
|
699
|
+
[property: string]: TSchema
|
|
700
|
+
}
|
|
701
|
+
additionalProperties?: TSchema
|
|
702
|
+
}
|
|
703
|
+
export interface Array extends IRpcSchemaBase {
|
|
704
|
+
type: 'array'
|
|
705
|
+
items?: TSchema
|
|
706
|
+
}
|
|
707
|
+
export interface OneOf extends IRpcSchemaBase {
|
|
708
|
+
type: 'oneOf'
|
|
709
|
+
oneOf: TSchema[]
|
|
710
|
+
}
|
|
711
|
+
export interface AllOf extends IRpcSchemaBase {
|
|
712
|
+
type: 'allOf'
|
|
713
|
+
allOf: TSchema[]
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
export interface Ref {
|
|
717
|
+
title?: string
|
|
718
|
+
type?: ''
|
|
719
|
+
$ref: string // "#/components/schemas/AddEthereumChainParameter"
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
namespace SchemaWalker {
|
|
726
|
+
export function getRefType (schema: ISchema.Ref) {
|
|
727
|
+
return /(schemas|contentDescriptors)\/(?<type>\w+)(\/|$)/.exec(schema.$ref)?.groups.type;
|
|
728
|
+
}
|
|
729
|
+
export function getRefSchema (rpc: IRpc, schema: ISchema.Ref) {
|
|
730
|
+
let name = getRefType(schema);
|
|
731
|
+
let ref = rpc.components.schemas[name];
|
|
732
|
+
$require.notNull(ref, `Could not find schema for ${name}`);
|
|
733
|
+
return ref as ISchema.TSchema;
|
|
734
|
+
}
|
|
735
|
+
export function getRefTypeProperty (schema: ISchema.Ref) {
|
|
736
|
+
return /properties\/(?<props>.+)$/.exec(schema.$ref)?.groups.props;
|
|
737
|
+
}
|
|
738
|
+
export function isValueType (schema: ISchema.TSchema) {
|
|
739
|
+
return schema.type != null
|
|
740
|
+
&& '$ref' in schema === false
|
|
741
|
+
&& 'items' in schema === false
|
|
742
|
+
&& 'properties' in schema === false
|
|
743
|
+
&& 'oneOf' in schema === false
|
|
744
|
+
&& 'allOf' in schema === false
|
|
745
|
+
;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
// export function mapRef(rpc: IRpc, mappings: { [rgx: string]: string }) {
|
|
749
|
+
// let rgx = alot
|
|
750
|
+
// .fromObject(mappings ?? {}).map(x => ({ rgx: new RegExp(x.key, 'i'), type: x.value }))
|
|
751
|
+
// .toArray();
|
|
752
|
+
|
|
753
|
+
// rpc.methods.forEach(method => {
|
|
754
|
+
// method.params = method.params.map(param => {
|
|
755
|
+
// return mapSchemaRef(param, rgx);
|
|
756
|
+
// });
|
|
757
|
+
// method.result = mapSchemaRef(method.result, rgx);
|
|
758
|
+
// });
|
|
759
|
+
|
|
760
|
+
// let schemas = rpc.components.schemas ?? {};
|
|
761
|
+
// Object.keys(schemas).forEach(key => {
|
|
762
|
+
// schemas[key] = mapSchemaRef(schemas[key], rgx);
|
|
763
|
+
// });
|
|
764
|
+
// let descriptors = rpc.components.contentDescriptors ?? {};
|
|
765
|
+
// Object.keys(descriptors).forEach(key => {
|
|
766
|
+
// descriptors[key] = mapSchemaRef(descriptors[key], rgx);
|
|
767
|
+
// });
|
|
768
|
+
// }
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
export function visitGlobalSchema(rpc: IRpc, visitor: (name, schema: ISchema.TSchema) => ([string, ISchema.TSchema] | undefined)) {
|
|
772
|
+
walk(rpc.components.schemas ?? {});
|
|
773
|
+
walk(rpc.components.contentDescriptors ?? {});
|
|
774
|
+
function walk(schemas) {
|
|
775
|
+
Object.keys(schemas).forEach(key => {
|
|
776
|
+
let schema = schemas[key];
|
|
777
|
+
let [newKey, newSchema] = visitor(key, schema) ?? [ key, schema ];
|
|
778
|
+
if (newKey !== key) {
|
|
779
|
+
visitSchema(rpc, (schema) => {
|
|
780
|
+
if ('$ref' in schema && schema.$ref?.endsWith(key)) {
|
|
781
|
+
schema.$ref = schema.$ref.replace(key, newKey);
|
|
782
|
+
}
|
|
783
|
+
return schema;
|
|
784
|
+
});
|
|
785
|
+
delete schemas[key];
|
|
786
|
+
}
|
|
787
|
+
schemas[newKey] = newSchema;
|
|
788
|
+
});
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
export function visitSchema(rpc: IRpc, visitor: (schema: ISchema.TSchema) => (ISchema.TSchema | null), opts?: {
|
|
792
|
+
inMethods?: boolean
|
|
793
|
+
inGlobals?: boolean | string
|
|
794
|
+
}) {
|
|
795
|
+
let inMethods = opts?.inMethods ?? (opts?.inGlobals == null)
|
|
796
|
+
let inGlobals = opts?.inGlobals != null
|
|
797
|
+
? Boolean(opts?.inGlobals)
|
|
798
|
+
: (opts?.inMethods == null)
|
|
799
|
+
let inGlobalsName = typeof opts?.inGlobals ==='string' ? opts.inGlobals : null;
|
|
800
|
+
|
|
801
|
+
if (inMethods) {
|
|
802
|
+
rpc.methods.forEach(method => {
|
|
803
|
+
method.params = method.params.map(param => {
|
|
804
|
+
return walkWrapped(param);
|
|
805
|
+
});
|
|
806
|
+
method.result = walkWrapped(method.result)
|
|
807
|
+
});
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
if (inGlobals) {
|
|
811
|
+
walkGlobal(rpc.components.schemas ?? {});
|
|
812
|
+
walkGlobal(rpc.components.contentDescriptors ?? {});
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
function walkWrapped(mix: IRpcParameter | IRpcResult | ISchema.TSchema) {
|
|
816
|
+
if ('schema' in mix) {
|
|
817
|
+
mix.schema = walkSchema(mix.schema, []);
|
|
818
|
+
return mix;
|
|
819
|
+
}
|
|
820
|
+
return {
|
|
821
|
+
...(mix as any),
|
|
822
|
+
schema: walkSchema(mix as ISchema.TSchema, [])
|
|
823
|
+
};
|
|
824
|
+
}
|
|
825
|
+
function walkGlobal(schemas) {
|
|
826
|
+
Object.keys(schemas).forEach(key => {
|
|
827
|
+
if (inGlobalsName != null && key !== inGlobalsName) {
|
|
828
|
+
return;
|
|
829
|
+
}
|
|
830
|
+
let schema = schemas[key];
|
|
831
|
+
schemas[key] = walkSchema(schema, []);
|
|
832
|
+
});
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
function walkSchema(schema: ISchema.TSchema, parents: ISchema.TSchema[]) {
|
|
836
|
+
if (schema == null) {
|
|
837
|
+
schema = { type: 'any' }
|
|
838
|
+
}
|
|
839
|
+
schema = visitor(schema) ?? schema;
|
|
840
|
+
if (schema.type === 'object') {
|
|
841
|
+
for (let key in schema.properties) {
|
|
842
|
+
schema.properties[key] = walkSchema(schema.properties[key], [...parents, schema]);
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
if (schema.type === 'array') {
|
|
846
|
+
schema.items = walkSchema(schema.items, [...parents, schema]);
|
|
847
|
+
}
|
|
848
|
+
if ('oneOf' in schema) {
|
|
849
|
+
schema.oneOf = schema.oneOf.map(x => {
|
|
850
|
+
return walkSchema(x, [...parents, schema])
|
|
851
|
+
});
|
|
852
|
+
}
|
|
853
|
+
if ('allOf' in schema) {
|
|
854
|
+
schema.allOf = schema.allOf.map(x => {
|
|
855
|
+
return walkSchema(x, [...parents, schema])
|
|
856
|
+
});
|
|
857
|
+
}
|
|
858
|
+
return schema;
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
export function getUsedTypes (rpc: IRpc): { [schemaName: string]: boolean } {
|
|
863
|
+
let knownSchemas = {};
|
|
864
|
+
SchemaWalker.visitSchema(rpc, (schema) => {
|
|
865
|
+
return visitSchema(schema);
|
|
866
|
+
}, { inMethods: true });
|
|
867
|
+
|
|
868
|
+
function visitSchema(schema: ISchema.TSchema) {
|
|
869
|
+
if ('$ref' in schema) {
|
|
870
|
+
let type = SchemaWalker.getRefType(schema);
|
|
871
|
+
if (type in knownSchemas === false) {
|
|
872
|
+
knownSchemas[type] = true;
|
|
873
|
+
walkGlobalSchemas(type);
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
if ('oneOf' in schema) {
|
|
877
|
+
schema.oneOf.forEach(x => visitSchema(x));
|
|
878
|
+
}
|
|
879
|
+
if (schema.type === 'array') {
|
|
880
|
+
visitSchema(schema.items);
|
|
881
|
+
}
|
|
882
|
+
return schema;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
function walkGlobalSchemas (name: string) {
|
|
886
|
+
SchemaWalker.visitSchema(rpc, (schema) => {
|
|
887
|
+
return visitSchema(schema);
|
|
888
|
+
}, { inGlobals: name });
|
|
889
|
+
}
|
|
890
|
+
return knownSchemas;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
export function mergeOneOfAnyOf (schema: ISchema.OneOf | ISchema.AllOf) {
|
|
895
|
+
let arr = 'oneOf' in schema ? schema.oneOf : schema.allOf;
|
|
896
|
+
arr = arr.filter(x => /(notFound|null)/i.test((x as any).$ref ?? '') === false);
|
|
897
|
+
|
|
898
|
+
// Merge object schemas
|
|
899
|
+
let obj = null;
|
|
900
|
+
for (let i = 0; i < arr.length; i++) {
|
|
901
|
+
let x = arr[i];
|
|
902
|
+
if (x.type === 'object') {
|
|
903
|
+
if (obj == null) {
|
|
904
|
+
obj = x;
|
|
905
|
+
continue;
|
|
906
|
+
}
|
|
907
|
+
for (let key in x.properties) {
|
|
908
|
+
if (obj.properties[key] == null) {
|
|
909
|
+
obj.properties[key] = x.properties[key];
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
arr.splice(i, 1);
|
|
913
|
+
i--;
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
return arr;
|
|
917
|
+
}
|
|
918
|
+
}
|