├── .c8rc.json ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── release.yml └── workflows │ ├── gh-pages.yml │ ├── gh-release.yml │ ├── npm-publish.yml │ ├── pr-dataset-test.yml │ ├── pr-size-limit.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .mocharc.yaml ├── .size-limit.json ├── 4byte ├── index.d.ts └── index.js ├── 4bytedb ├── index.d.ts └── index.js ├── LICENSE ├── Makefile ├── README.md ├── bin ├── .address.mjs ├── .provider.mjs └── sevm.mjs ├── docs ├── _coverpage.md ├── _sidebar.md ├── evm.html ├── examples.md ├── favicon.drawio.svg ├── guide.md ├── img │ ├── github.svg │ ├── npm.svg │ └── twitter.svg ├── index.html ├── internals.md ├── main.css └── splash.png ├── examples ├── Advanced-Hooks.ts ├── Decode-Bytecode-into-Opcodes.mjs ├── Decompile-a-Contract.mjs ├── Detect-Functions-Events-ERCs.mjs ├── Extract-Contract-Metadata.mjs ├── MSOW.html ├── Simple-Hook.mjs ├── State-Hook.mts ├── Use-with-Import.mjs └── Use-with-Require.js ├── package.json ├── scripts ├── 4bytedb.mjs ├── 4bytedb │ ├── events.json │ └── functions.json ├── ercs.mjs ├── ercs.sol └── help.mjs ├── splash.png ├── src ├── .bytes.ts ├── abi.ts ├── ast │ ├── alu.ts │ ├── flow.ts │ ├── index.ts │ ├── log.ts │ ├── memory.ts │ ├── special.ts │ ├── storage.ts │ └── system.ts ├── cfg.ts1 ├── ercs.ts ├── evm.ts ├── index.ts ├── metadata.ts ├── sol.ts ├── state.ts ├── step.ts └── yul.ts ├── test ├── 4byte.test.ts ├── __snapshots__ │ ├── bin.snap.md │ ├── contracts │ │ ├── control │ │ │ ├── bounded-for-loop.snap.md │ │ │ ├── constant-for-loop.snap.md │ │ │ ├── if-else.snap.md │ │ │ ├── if.snap.md │ │ │ ├── infinite-for-loop.snap.md │ │ │ ├── modifier-no-inline.snap.md │ │ │ ├── modifier.snap.md │ │ │ ├── nested-if.snap.md │ │ │ └── require.snap.md │ │ ├── dispatch │ │ │ ├── pure-functions.snap.md │ │ │ └── symbols.snap.md │ │ ├── empty │ │ │ └── with-no-functions.snap.md │ │ ├── locals │ │ │ └── no-dedup-local-var.snap.md │ │ ├── mappings │ │ │ └── public-mapping.snap.md │ │ ├── memory │ │ │ └── invalidate-memory-args.snap.md │ │ ├── system │ │ │ ├── create-codecopy.snap.md │ │ │ └── selfdestruct.snap.md │ │ └── variables │ │ │ ├── public-unused-var.snap.md │ │ │ └── public-var-set-by-internal-fn.snap.md │ ├── evm.snap.md │ ├── examples.snap.md │ ├── mainnet.snap.md │ └── mainnet │ │ ├── BeaconDeposit.dis │ │ ├── Compound.dis │ │ ├── Contract.dis │ │ ├── CryptoKitties.dis │ │ ├── DAI.dis │ │ ├── DAI.sol │ │ ├── Disperse.dis │ │ ├── Disperse.sol │ │ ├── ENS.dis │ │ ├── ENS.sol │ │ ├── FundraisingGaugeFx.dis │ │ ├── FundraisingGaugeFx.sol │ │ ├── GovernanceRouter.dis │ │ ├── GovernanceRouter.sol │ │ ├── Leverage.dis │ │ ├── MSOW.dis │ │ ├── Math.dis │ │ ├── MobyToken.dis │ │ ├── MobyToken.sol │ │ ├── OmniMerlin.dis │ │ ├── OmniMerlin.sol │ │ ├── ProxyForCoinTool.dis │ │ ├── ProxyForCoinTool.sol │ │ ├── RankedAuctionWETHGateway.dis │ │ ├── RankedAuctionWETHGateway.sol │ │ ├── SEAWHALE.dis │ │ ├── SHA1Digest.dis │ │ ├── SHA1Digest.sol │ │ ├── SmithBotExecutor.dis │ │ ├── USDC.dis │ │ ├── USDC.sol │ │ ├── UnicornToken.dis │ │ ├── UnicornToken.sol │ │ ├── VotingEscrowDelegationProxy.dis │ │ ├── VotingEscrowDelegationProxy.sol │ │ ├── WETH.dis │ │ ├── WETH.sol │ │ ├── ZapStEth.dis │ │ ├── ZapStEth.sol │ │ ├── big_game.dis │ │ └── big_game.sol ├── abi.test.ts ├── ast.test.ts ├── bin.test.ts ├── contracts.test.ts ├── dataset.test.ts ├── ercs.test.ts ├── evm.test.ts ├── examples.test.ts ├── exprs.test.ts ├── forversion.test.ts ├── mainnet.test.ts ├── mainnet │ ├── BeaconDeposit-0x00000000219ab540356cBB839Cbe05303d7705Fa.json │ ├── Compound-0x3FDA67f7583380E67ef93072294a7fAc882FD7E7.json │ ├── Contract-0x60d20e0150F3A9717A7cb50d3F617Ebf6D953467.json │ ├── CryptoKitties-0x06012c8cf97BEaD5deAe237070F9587f8E7A266d.json │ ├── DAI-0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359.json │ ├── Disperse-0x000000000049f44766dc8540e40a2ed29b636319.json │ ├── ENS-0x314159265dD8dbb310642f98f50C066173C1259b.json │ ├── FundraisingGaugeFx-0x28ED637C5e3371c2678C2d346dF04Fb634ED832d.json │ ├── GovernanceRouter-0x16A2D238d35e51Dd41Cf101dbb536E2cb9E233DA.json │ ├── Leverage-0x13df570de8465f5319b6a2c60de21716400074e7.json │ ├── MSOW-0x07880D44b0f7b75464ad18fc2b980049c40A8bc3.json │ ├── Math-0xa4846160bdcd18f9de4d434d09399bc6f6231fa4.json │ ├── MobyToken-0x40a7dF3dF8b56147B781353D379cB960120211D7.json │ ├── OmniMerlin-0x234F534D322dF1a8a236a2F952d6657bf800F1FA.json │ ├── ProxyForCoinTool-0x00000df4e8ed07e76c4d279e9937033cd555fad3.json │ ├── RankedAuctionWETHGateway-0x47b24fDF2f8EC7b72ac879b124F90f3FC53b51cA.json │ ├── SEAWHALE-0x9DD0fEcBAa5D12948f522F17dedE8B599448Fbbe.json │ ├── SHA1Digest-0x9c9fcEa62bD0A723b62A2F1e98dE0Ee3df813619.json │ ├── SmithBotExecutor-0x000000000000Df8c944e775BDe7Af50300999283.json │ ├── USDC-0x5425890298aed601595a70AB815c96711a31Bc65.json │ ├── UnicornToken-0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7.json │ ├── VotingEscrowDelegationProxy-0x9B12C90BAd388B7e417271eb20678D1a7759507c.json │ ├── WETH-0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2.json │ ├── ZapStEth-0x4a7B05aEf57516A0C181d3108437dEC2CD0a6cfd.json │ └── big_game-0xe29945D03AE99e8fa285F0D53e72C7C04567A5fB.json ├── metadata.test.ts ├── scripts │ ├── mock.mjs │ └── solc.mjs ├── state.test.ts ├── step.test.ts └── utils │ ├── cfg.ts │ ├── selector.ts │ ├── snapshot.ts │ └── solc.ts ├── tsconfig.json ├── typedoc.json ├── types ├── global.d.ts ├── solc.d.ts └── types.d.ts ├── webpack.config.mjs └── yarn.lock /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/gh-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/workflows/gh-release.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pr-dataset-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/workflows/pr-dataset-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr-size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/workflows/pr-size-limit.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mocharc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.mocharc.yaml -------------------------------------------------------------------------------- /.size-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/.size-limit.json -------------------------------------------------------------------------------- /4byte/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/4byte/index.d.ts -------------------------------------------------------------------------------- /4byte/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/4byte/index.js -------------------------------------------------------------------------------- /4bytedb/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/4bytedb/index.d.ts -------------------------------------------------------------------------------- /4bytedb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/4bytedb/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/README.md -------------------------------------------------------------------------------- /bin/.address.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/bin/.address.mjs -------------------------------------------------------------------------------- /bin/.provider.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/bin/.provider.mjs -------------------------------------------------------------------------------- /bin/sevm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/bin/sevm.mjs -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/evm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/evm.html -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/favicon.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/favicon.drawio.svg -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/img/github.svg -------------------------------------------------------------------------------- /docs/img/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/img/npm.svg -------------------------------------------------------------------------------- /docs/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/img/twitter.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/internals.md -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/main.css -------------------------------------------------------------------------------- /docs/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/docs/splash.png -------------------------------------------------------------------------------- /examples/Advanced-Hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Advanced-Hooks.ts -------------------------------------------------------------------------------- /examples/Decode-Bytecode-into-Opcodes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Decode-Bytecode-into-Opcodes.mjs -------------------------------------------------------------------------------- /examples/Decompile-a-Contract.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Decompile-a-Contract.mjs -------------------------------------------------------------------------------- /examples/Detect-Functions-Events-ERCs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Detect-Functions-Events-ERCs.mjs -------------------------------------------------------------------------------- /examples/Extract-Contract-Metadata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Extract-Contract-Metadata.mjs -------------------------------------------------------------------------------- /examples/MSOW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/MSOW.html -------------------------------------------------------------------------------- /examples/Simple-Hook.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Simple-Hook.mjs -------------------------------------------------------------------------------- /examples/State-Hook.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/State-Hook.mts -------------------------------------------------------------------------------- /examples/Use-with-Import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Use-with-Import.mjs -------------------------------------------------------------------------------- /examples/Use-with-Require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/examples/Use-with-Require.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/package.json -------------------------------------------------------------------------------- /scripts/4bytedb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/scripts/4bytedb.mjs -------------------------------------------------------------------------------- /scripts/4bytedb/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/scripts/4bytedb/events.json -------------------------------------------------------------------------------- /scripts/4bytedb/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/scripts/4bytedb/functions.json -------------------------------------------------------------------------------- /scripts/ercs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/scripts/ercs.mjs -------------------------------------------------------------------------------- /scripts/ercs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/scripts/ercs.sol -------------------------------------------------------------------------------- /scripts/help.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/scripts/help.mjs -------------------------------------------------------------------------------- /splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/splash.png -------------------------------------------------------------------------------- /src/.bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/.bytes.ts -------------------------------------------------------------------------------- /src/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/abi.ts -------------------------------------------------------------------------------- /src/ast/alu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/alu.ts -------------------------------------------------------------------------------- /src/ast/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/flow.ts -------------------------------------------------------------------------------- /src/ast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/index.ts -------------------------------------------------------------------------------- /src/ast/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/log.ts -------------------------------------------------------------------------------- /src/ast/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/memory.ts -------------------------------------------------------------------------------- /src/ast/special.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/special.ts -------------------------------------------------------------------------------- /src/ast/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/storage.ts -------------------------------------------------------------------------------- /src/ast/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ast/system.ts -------------------------------------------------------------------------------- /src/cfg.ts1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/cfg.ts1 -------------------------------------------------------------------------------- /src/ercs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/ercs.ts -------------------------------------------------------------------------------- /src/evm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/evm.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/metadata.ts -------------------------------------------------------------------------------- /src/sol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/sol.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/step.ts -------------------------------------------------------------------------------- /src/yul.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/src/yul.ts -------------------------------------------------------------------------------- /test/4byte.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/4byte.test.ts -------------------------------------------------------------------------------- /test/__snapshots__/bin.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/bin.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/bounded-for-loop.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/bounded-for-loop.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/constant-for-loop.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/constant-for-loop.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/if-else.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/if-else.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/if.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/if.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/infinite-for-loop.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/infinite-for-loop.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/modifier-no-inline.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/modifier-no-inline.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/modifier.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/modifier.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/nested-if.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/nested-if.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/control/require.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/control/require.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/dispatch/pure-functions.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/dispatch/pure-functions.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/dispatch/symbols.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/dispatch/symbols.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/empty/with-no-functions.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/empty/with-no-functions.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/locals/no-dedup-local-var.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/locals/no-dedup-local-var.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/mappings/public-mapping.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/mappings/public-mapping.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/memory/invalidate-memory-args.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/memory/invalidate-memory-args.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/system/create-codecopy.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/system/create-codecopy.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/system/selfdestruct.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/system/selfdestruct.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/variables/public-unused-var.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/variables/public-unused-var.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/contracts/variables/public-var-set-by-internal-fn.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/contracts/variables/public-var-set-by-internal-fn.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/evm.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/evm.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/examples.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/examples.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/mainnet.snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet.snap.md -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/BeaconDeposit.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/BeaconDeposit.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/Compound.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/Compound.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/Contract.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/Contract.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/CryptoKitties.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/CryptoKitties.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/DAI.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/DAI.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/DAI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/DAI.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/Disperse.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/Disperse.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/Disperse.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/Disperse.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/ENS.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/ENS.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/ENS.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/ENS.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/FundraisingGaugeFx.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/FundraisingGaugeFx.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/FundraisingGaugeFx.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/FundraisingGaugeFx.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/GovernanceRouter.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/GovernanceRouter.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/GovernanceRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/GovernanceRouter.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/Leverage.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/Leverage.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/MSOW.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/MSOW.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/Math.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/Math.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/MobyToken.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/MobyToken.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/MobyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/MobyToken.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/OmniMerlin.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/OmniMerlin.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/OmniMerlin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/OmniMerlin.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/ProxyForCoinTool.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/ProxyForCoinTool.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/ProxyForCoinTool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/ProxyForCoinTool.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/RankedAuctionWETHGateway.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/RankedAuctionWETHGateway.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/RankedAuctionWETHGateway.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/RankedAuctionWETHGateway.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/SEAWHALE.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/SEAWHALE.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/SHA1Digest.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/SHA1Digest.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/SHA1Digest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/SHA1Digest.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/SmithBotExecutor.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/SmithBotExecutor.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/USDC.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/USDC.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/USDC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/USDC.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/UnicornToken.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/UnicornToken.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/UnicornToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/UnicornToken.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/VotingEscrowDelegationProxy.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/VotingEscrowDelegationProxy.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/VotingEscrowDelegationProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/VotingEscrowDelegationProxy.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/WETH.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/WETH.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/WETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/WETH.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/ZapStEth.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/ZapStEth.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/ZapStEth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/ZapStEth.sol -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/big_game.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/big_game.dis -------------------------------------------------------------------------------- /test/__snapshots__/mainnet/big_game.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/__snapshots__/mainnet/big_game.sol -------------------------------------------------------------------------------- /test/abi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/abi.test.ts -------------------------------------------------------------------------------- /test/ast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/ast.test.ts -------------------------------------------------------------------------------- /test/bin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/bin.test.ts -------------------------------------------------------------------------------- /test/contracts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/contracts.test.ts -------------------------------------------------------------------------------- /test/dataset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/dataset.test.ts -------------------------------------------------------------------------------- /test/ercs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/ercs.test.ts -------------------------------------------------------------------------------- /test/evm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/evm.test.ts -------------------------------------------------------------------------------- /test/examples.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/examples.test.ts -------------------------------------------------------------------------------- /test/exprs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/exprs.test.ts -------------------------------------------------------------------------------- /test/forversion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/forversion.test.ts -------------------------------------------------------------------------------- /test/mainnet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet.test.ts -------------------------------------------------------------------------------- /test/mainnet/BeaconDeposit-0x00000000219ab540356cBB839Cbe05303d7705Fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/BeaconDeposit-0x00000000219ab540356cBB839Cbe05303d7705Fa.json -------------------------------------------------------------------------------- /test/mainnet/Compound-0x3FDA67f7583380E67ef93072294a7fAc882FD7E7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/Compound-0x3FDA67f7583380E67ef93072294a7fAc882FD7E7.json -------------------------------------------------------------------------------- /test/mainnet/Contract-0x60d20e0150F3A9717A7cb50d3F617Ebf6D953467.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/Contract-0x60d20e0150F3A9717A7cb50d3F617Ebf6D953467.json -------------------------------------------------------------------------------- /test/mainnet/CryptoKitties-0x06012c8cf97BEaD5deAe237070F9587f8E7A266d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/CryptoKitties-0x06012c8cf97BEaD5deAe237070F9587f8E7A266d.json -------------------------------------------------------------------------------- /test/mainnet/DAI-0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/DAI-0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359.json -------------------------------------------------------------------------------- /test/mainnet/Disperse-0x000000000049f44766dc8540e40a2ed29b636319.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/Disperse-0x000000000049f44766dc8540e40a2ed29b636319.json -------------------------------------------------------------------------------- /test/mainnet/ENS-0x314159265dD8dbb310642f98f50C066173C1259b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/ENS-0x314159265dD8dbb310642f98f50C066173C1259b.json -------------------------------------------------------------------------------- /test/mainnet/FundraisingGaugeFx-0x28ED637C5e3371c2678C2d346dF04Fb634ED832d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/FundraisingGaugeFx-0x28ED637C5e3371c2678C2d346dF04Fb634ED832d.json -------------------------------------------------------------------------------- /test/mainnet/GovernanceRouter-0x16A2D238d35e51Dd41Cf101dbb536E2cb9E233DA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/GovernanceRouter-0x16A2D238d35e51Dd41Cf101dbb536E2cb9E233DA.json -------------------------------------------------------------------------------- /test/mainnet/Leverage-0x13df570de8465f5319b6a2c60de21716400074e7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/Leverage-0x13df570de8465f5319b6a2c60de21716400074e7.json -------------------------------------------------------------------------------- /test/mainnet/MSOW-0x07880D44b0f7b75464ad18fc2b980049c40A8bc3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/MSOW-0x07880D44b0f7b75464ad18fc2b980049c40A8bc3.json -------------------------------------------------------------------------------- /test/mainnet/Math-0xa4846160bdcd18f9de4d434d09399bc6f6231fa4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/Math-0xa4846160bdcd18f9de4d434d09399bc6f6231fa4.json -------------------------------------------------------------------------------- /test/mainnet/MobyToken-0x40a7dF3dF8b56147B781353D379cB960120211D7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/MobyToken-0x40a7dF3dF8b56147B781353D379cB960120211D7.json -------------------------------------------------------------------------------- /test/mainnet/OmniMerlin-0x234F534D322dF1a8a236a2F952d6657bf800F1FA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/OmniMerlin-0x234F534D322dF1a8a236a2F952d6657bf800F1FA.json -------------------------------------------------------------------------------- /test/mainnet/ProxyForCoinTool-0x00000df4e8ed07e76c4d279e9937033cd555fad3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/ProxyForCoinTool-0x00000df4e8ed07e76c4d279e9937033cd555fad3.json -------------------------------------------------------------------------------- /test/mainnet/RankedAuctionWETHGateway-0x47b24fDF2f8EC7b72ac879b124F90f3FC53b51cA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/RankedAuctionWETHGateway-0x47b24fDF2f8EC7b72ac879b124F90f3FC53b51cA.json -------------------------------------------------------------------------------- /test/mainnet/SEAWHALE-0x9DD0fEcBAa5D12948f522F17dedE8B599448Fbbe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/SEAWHALE-0x9DD0fEcBAa5D12948f522F17dedE8B599448Fbbe.json -------------------------------------------------------------------------------- /test/mainnet/SHA1Digest-0x9c9fcEa62bD0A723b62A2F1e98dE0Ee3df813619.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/SHA1Digest-0x9c9fcEa62bD0A723b62A2F1e98dE0Ee3df813619.json -------------------------------------------------------------------------------- /test/mainnet/SmithBotExecutor-0x000000000000Df8c944e775BDe7Af50300999283.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/SmithBotExecutor-0x000000000000Df8c944e775BDe7Af50300999283.json -------------------------------------------------------------------------------- /test/mainnet/USDC-0x5425890298aed601595a70AB815c96711a31Bc65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/USDC-0x5425890298aed601595a70AB815c96711a31Bc65.json -------------------------------------------------------------------------------- /test/mainnet/UnicornToken-0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/UnicornToken-0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7.json -------------------------------------------------------------------------------- /test/mainnet/VotingEscrowDelegationProxy-0x9B12C90BAd388B7e417271eb20678D1a7759507c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/VotingEscrowDelegationProxy-0x9B12C90BAd388B7e417271eb20678D1a7759507c.json -------------------------------------------------------------------------------- /test/mainnet/WETH-0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/WETH-0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2.json -------------------------------------------------------------------------------- /test/mainnet/ZapStEth-0x4a7B05aEf57516A0C181d3108437dEC2CD0a6cfd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/ZapStEth-0x4a7B05aEf57516A0C181d3108437dEC2CD0a6cfd.json -------------------------------------------------------------------------------- /test/mainnet/big_game-0xe29945D03AE99e8fa285F0D53e72C7C04567A5fB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/mainnet/big_game-0xe29945D03AE99e8fa285F0D53e72C7C04567A5fB.json -------------------------------------------------------------------------------- /test/metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/metadata.test.ts -------------------------------------------------------------------------------- /test/scripts/mock.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/scripts/mock.mjs -------------------------------------------------------------------------------- /test/scripts/solc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/scripts/solc.mjs -------------------------------------------------------------------------------- /test/state.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/state.test.ts -------------------------------------------------------------------------------- /test/step.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/step.test.ts -------------------------------------------------------------------------------- /test/utils/cfg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/utils/cfg.ts -------------------------------------------------------------------------------- /test/utils/selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/utils/selector.ts -------------------------------------------------------------------------------- /test/utils/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/utils/snapshot.ts -------------------------------------------------------------------------------- /test/utils/solc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/test/utils/solc.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/typedoc.json -------------------------------------------------------------------------------- /types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/types/global.d.ts -------------------------------------------------------------------------------- /types/solc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/types/solc.d.ts -------------------------------------------------------------------------------- /types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/types/types.d.ts -------------------------------------------------------------------------------- /webpack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/webpack.config.mjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acuarica/evm/HEAD/yarn.lock --------------------------------------------------------------------------------