├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .gitmodules ├── .prettierrc.js ├── README.md ├── examples ├── AnySwap │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ ├── Migrations.s.sol │ │ └── test.sol │ └── src │ │ ├── AnyswapV4CallProxy.sol │ │ ├── AnyswapV4Router.sol │ │ └── Migrations.sol ├── BGLD │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── BGLD.s.sol │ └── src │ │ └── BGLD.sol ├── Bacon │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── remappings.txt │ ├── script │ │ └── VestingVault.s.sol │ └── src │ │ ├── BaconToken.sol │ │ ├── Migrations.sol │ │ └── VestingVault.sol ├── Bancor │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── artifacts │ │ ├── @openzeppelin │ │ │ ├── contracts-upgradeable │ │ │ │ ├── access │ │ │ │ │ ├── AccessControlEnumerableUpgradeable.sol │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable.dbg.json │ │ │ │ │ │ └── AccessControlEnumerableUpgradeable.json │ │ │ │ │ ├── AccessControlUpgradeable.sol │ │ │ │ │ │ ├── AccessControlUpgradeable.dbg.json │ │ │ │ │ │ └── AccessControlUpgradeable.json │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable.sol │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable.dbg.json │ │ │ │ │ │ └── IAccessControlEnumerableUpgradeable.json │ │ │ │ │ └── IAccessControlUpgradeable.sol │ │ │ │ │ │ ├── IAccessControlUpgradeable.dbg.json │ │ │ │ │ │ └── IAccessControlUpgradeable.json │ │ │ │ ├── proxy │ │ │ │ │ └── utils │ │ │ │ │ │ └── Initializable.sol │ │ │ │ │ │ ├── Initializable.dbg.json │ │ │ │ │ │ └── Initializable.json │ │ │ │ ├── security │ │ │ │ │ └── ReentrancyGuardUpgradeable.sol │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable.dbg.json │ │ │ │ │ │ └── ReentrancyGuardUpgradeable.json │ │ │ │ ├── token │ │ │ │ │ └── ERC721 │ │ │ │ │ │ ├── ERC721Upgradeable.sol │ │ │ │ │ │ ├── ERC721Upgradeable.dbg.json │ │ │ │ │ │ └── ERC721Upgradeable.json │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable.sol │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable.dbg.json │ │ │ │ │ │ └── IERC721ReceiverUpgradeable.json │ │ │ │ │ │ ├── IERC721Upgradeable.sol │ │ │ │ │ │ ├── IERC721Upgradeable.dbg.json │ │ │ │ │ │ └── IERC721Upgradeable.json │ │ │ │ │ │ └── extensions │ │ │ │ │ │ └── IERC721MetadataUpgradeable.sol │ │ │ │ │ │ ├── IERC721MetadataUpgradeable.dbg.json │ │ │ │ │ │ └── IERC721MetadataUpgradeable.json │ │ │ │ └── utils │ │ │ │ │ ├── AddressUpgradeable.sol │ │ │ │ │ ├── AddressUpgradeable.dbg.json │ │ │ │ │ └── AddressUpgradeable.json │ │ │ │ │ ├── ContextUpgradeable.sol │ │ │ │ │ ├── ContextUpgradeable.dbg.json │ │ │ │ │ └── ContextUpgradeable.json │ │ │ │ │ ├── StringsUpgradeable.sol │ │ │ │ │ ├── StringsUpgradeable.dbg.json │ │ │ │ │ └── StringsUpgradeable.json │ │ │ │ │ ├── introspection │ │ │ │ │ ├── ERC165Upgradeable.sol │ │ │ │ │ │ ├── ERC165Upgradeable.dbg.json │ │ │ │ │ │ └── ERC165Upgradeable.json │ │ │ │ │ └── IERC165Upgradeable.sol │ │ │ │ │ │ ├── IERC165Upgradeable.dbg.json │ │ │ │ │ │ └── IERC165Upgradeable.json │ │ │ │ │ ├── math │ │ │ │ │ ├── MathUpgradeable.sol │ │ │ │ │ │ ├── MathUpgradeable.dbg.json │ │ │ │ │ │ └── MathUpgradeable.json │ │ │ │ │ └── SignedMathUpgradeable.sol │ │ │ │ │ │ ├── SignedMathUpgradeable.dbg.json │ │ │ │ │ │ └── SignedMathUpgradeable.json │ │ │ │ │ └── structs │ │ │ │ │ └── EnumerableSetUpgradeable.sol │ │ │ │ │ ├── EnumerableSetUpgradeable.dbg.json │ │ │ │ │ └── EnumerableSetUpgradeable.json │ │ │ └── contracts │ │ │ │ ├── access │ │ │ │ ├── AccessControl.sol │ │ │ │ │ ├── AccessControl.dbg.json │ │ │ │ │ └── AccessControl.json │ │ │ │ ├── AccessControlEnumerable.sol │ │ │ │ │ ├── AccessControlEnumerable.dbg.json │ │ │ │ │ └── AccessControlEnumerable.json │ │ │ │ ├── IAccessControl.sol │ │ │ │ │ ├── IAccessControl.dbg.json │ │ │ │ │ └── IAccessControl.json │ │ │ │ ├── IAccessControlEnumerable.sol │ │ │ │ │ ├── IAccessControlEnumerable.dbg.json │ │ │ │ │ └── IAccessControlEnumerable.json │ │ │ │ └── Ownable.sol │ │ │ │ │ ├── Ownable.dbg.json │ │ │ │ │ └── Ownable.json │ │ │ │ ├── interfaces │ │ │ │ ├── IERC1967.sol │ │ │ │ │ ├── IERC1967.dbg.json │ │ │ │ │ └── IERC1967.json │ │ │ │ ├── IERC5267.sol │ │ │ │ │ ├── IERC5267.dbg.json │ │ │ │ │ └── IERC5267.json │ │ │ │ └── draft-IERC1822.sol │ │ │ │ │ ├── IERC1822Proxiable.dbg.json │ │ │ │ │ └── IERC1822Proxiable.json │ │ │ │ ├── proxy │ │ │ │ ├── ERC1967 │ │ │ │ │ ├── ERC1967Proxy.sol │ │ │ │ │ │ ├── ERC1967Proxy.dbg.json │ │ │ │ │ │ └── ERC1967Proxy.json │ │ │ │ │ └── ERC1967Upgrade.sol │ │ │ │ │ │ ├── ERC1967Upgrade.dbg.json │ │ │ │ │ │ └── ERC1967Upgrade.json │ │ │ │ ├── Proxy.sol │ │ │ │ │ ├── Proxy.dbg.json │ │ │ │ │ └── Proxy.json │ │ │ │ ├── beacon │ │ │ │ │ └── IBeacon.sol │ │ │ │ │ │ ├── IBeacon.dbg.json │ │ │ │ │ │ └── IBeacon.json │ │ │ │ └── transparent │ │ │ │ │ ├── ProxyAdmin.sol │ │ │ │ │ ├── ProxyAdmin.dbg.json │ │ │ │ │ └── ProxyAdmin.json │ │ │ │ │ └── TransparentUpgradeableProxy.sol │ │ │ │ │ ├── ITransparentUpgradeableProxy.dbg.json │ │ │ │ │ ├── ITransparentUpgradeableProxy.json │ │ │ │ │ ├── TransparentUpgradeableProxy.dbg.json │ │ │ │ │ └── TransparentUpgradeableProxy.json │ │ │ │ ├── security │ │ │ │ └── ReentrancyGuard.sol │ │ │ │ │ ├── ReentrancyGuard.dbg.json │ │ │ │ │ └── ReentrancyGuard.json │ │ │ │ ├── token │ │ │ │ └── ERC20 │ │ │ │ │ ├── ERC20.sol │ │ │ │ │ ├── ERC20.dbg.json │ │ │ │ │ └── ERC20.json │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ ├── IERC20.dbg.json │ │ │ │ │ └── IERC20.json │ │ │ │ │ ├── extensions │ │ │ │ │ ├── ERC20Permit.sol │ │ │ │ │ │ ├── ERC20Permit.dbg.json │ │ │ │ │ │ └── ERC20Permit.json │ │ │ │ │ ├── IERC20Metadata.sol │ │ │ │ │ │ ├── IERC20Metadata.dbg.json │ │ │ │ │ │ └── IERC20Metadata.json │ │ │ │ │ └── IERC20Permit.sol │ │ │ │ │ │ ├── IERC20Permit.dbg.json │ │ │ │ │ │ └── IERC20Permit.json │ │ │ │ │ └── utils │ │ │ │ │ └── SafeERC20.sol │ │ │ │ │ ├── SafeERC20.dbg.json │ │ │ │ │ └── SafeERC20.json │ │ │ │ └── utils │ │ │ │ ├── Address.sol │ │ │ │ ├── Address.dbg.json │ │ │ │ └── Address.json │ │ │ │ ├── Context.sol │ │ │ │ ├── Context.dbg.json │ │ │ │ └── Context.json │ │ │ │ ├── Counters.sol │ │ │ │ ├── Counters.dbg.json │ │ │ │ └── Counters.json │ │ │ │ ├── ShortStrings.sol │ │ │ │ ├── ShortStrings.dbg.json │ │ │ │ └── ShortStrings.json │ │ │ │ ├── StorageSlot.sol │ │ │ │ ├── StorageSlot.dbg.json │ │ │ │ └── StorageSlot.json │ │ │ │ ├── Strings.sol │ │ │ │ ├── Strings.dbg.json │ │ │ │ └── Strings.json │ │ │ │ ├── cryptography │ │ │ │ ├── ECDSA.sol │ │ │ │ │ ├── ECDSA.dbg.json │ │ │ │ │ └── ECDSA.json │ │ │ │ └── EIP712.sol │ │ │ │ │ ├── EIP712.dbg.json │ │ │ │ │ └── EIP712.json │ │ │ │ ├── introspection │ │ │ │ ├── ERC165.sol │ │ │ │ │ ├── ERC165.dbg.json │ │ │ │ │ └── ERC165.json │ │ │ │ └── IERC165.sol │ │ │ │ │ ├── IERC165.dbg.json │ │ │ │ │ └── IERC165.json │ │ │ │ ├── math │ │ │ │ ├── Math.sol │ │ │ │ │ ├── Math.dbg.json │ │ │ │ │ └── Math.json │ │ │ │ ├── SafeCast.sol │ │ │ │ │ ├── SafeCast.dbg.json │ │ │ │ │ └── SafeCast.json │ │ │ │ ├── SafeMath.sol │ │ │ │ │ ├── SafeMath.dbg.json │ │ │ │ │ └── SafeMath.json │ │ │ │ └── SignedMath.sol │ │ │ │ │ ├── SignedMath.dbg.json │ │ │ │ │ └── SignedMath.json │ │ │ │ └── structs │ │ │ │ └── EnumerableSet.sol │ │ │ │ ├── EnumerableSet.dbg.json │ │ │ │ └── EnumerableSet.json │ │ ├── build-info │ │ │ └── 0276bda736b79df14eea45c436c7360d.json │ │ ├── contracts │ │ │ ├── carbon │ │ │ │ ├── CarbonController.sol │ │ │ │ │ ├── CarbonController.dbg.json │ │ │ │ │ └── CarbonController.json │ │ │ │ ├── Pairs.sol │ │ │ │ │ ├── Pairs.dbg.json │ │ │ │ │ └── Pairs.json │ │ │ │ ├── Strategies.sol │ │ │ │ │ ├── Strategies.dbg.json │ │ │ │ │ └── Strategies.json │ │ │ │ └── interfaces │ │ │ │ │ └── ICarbonController.sol │ │ │ │ │ ├── ICarbonController.dbg.json │ │ │ │ │ └── ICarbonController.json │ │ │ ├── helpers │ │ │ │ ├── DummyProxy.sol │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.dbg.json │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.json │ │ │ │ │ ├── ProxyAdminAccess.dbg.json │ │ │ │ │ └── ProxyAdminAccess.json │ │ │ │ ├── MockBancorNetworkV3.sol │ │ │ │ │ ├── MockBancorNetworkV3.dbg.json │ │ │ │ │ └── MockBancorNetworkV3.json │ │ │ │ ├── TestBNT.sol │ │ │ │ │ ├── TestBNT.dbg.json │ │ │ │ │ └── TestBNT.json │ │ │ │ ├── TestCarbonController.sol │ │ │ │ │ ├── TestCarbonController.dbg.json │ │ │ │ │ └── TestCarbonController.json │ │ │ │ ├── TestERC20Burnable.sol │ │ │ │ │ ├── TestERC20Burnable.dbg.json │ │ │ │ │ └── TestERC20Burnable.json │ │ │ │ ├── TestERC20FeeOnTransfer.sol │ │ │ │ │ ├── TestERC20FeeOnTransfer.dbg.json │ │ │ │ │ └── TestERC20FeeOnTransfer.json │ │ │ │ ├── TestERC20Token.sol │ │ │ │ │ ├── TestERC20Token.dbg.json │ │ │ │ │ └── TestERC20Token.json │ │ │ │ ├── TestExpDecayMath.sol │ │ │ │ │ ├── TestExpDecayMath.dbg.json │ │ │ │ │ └── TestExpDecayMath.json │ │ │ │ ├── TestLogic.sol │ │ │ │ │ ├── TestLogic.dbg.json │ │ │ │ │ └── TestLogic.json │ │ │ │ ├── TestMathEx.sol │ │ │ │ │ ├── TestMathEx.dbg.json │ │ │ │ │ └── TestMathEx.json │ │ │ │ ├── TestOnlyProxyDelegate.sol │ │ │ │ │ ├── TestOnlyProxyDelegate.dbg.json │ │ │ │ │ └── TestOnlyProxyDelegate.json │ │ │ │ ├── TestPairs.sol │ │ │ │ │ ├── TestPairs.dbg.json │ │ │ │ │ └── TestPairs.json │ │ │ │ ├── TestReenterCarbonPOL.sol │ │ │ │ │ ├── TestReenterCarbonPOL.dbg.json │ │ │ │ │ └── TestReenterCarbonPOL.json │ │ │ │ ├── TestReenterCarbonVortex.sol │ │ │ │ │ ├── TestReenterCarbonVortex.dbg.json │ │ │ │ │ └── TestReenterCarbonVortex.json │ │ │ │ ├── TestReentrantToken.sol │ │ │ │ │ ├── TestReentrantToken.dbg.json │ │ │ │ │ └── TestReentrantToken.json │ │ │ │ ├── TestStrategies.sol │ │ │ │ │ ├── TestStrategies.dbg.json │ │ │ │ │ └── TestStrategies.json │ │ │ │ ├── TestTokenType.sol │ │ │ │ │ ├── TestTokenType.dbg.json │ │ │ │ │ └── TestTokenType.json │ │ │ │ ├── TestUpgradeable.sol │ │ │ │ │ ├── TestUpgradeable.dbg.json │ │ │ │ │ └── TestUpgradeable.json │ │ │ │ ├── TestVault.sol │ │ │ │ │ ├── TestVault.dbg.json │ │ │ │ │ └── TestVault.json │ │ │ │ └── TestVoucher.sol │ │ │ │ │ ├── TestVoucher.dbg.json │ │ │ │ │ └── TestVoucher.json │ │ │ ├── pol │ │ │ │ ├── CarbonPOL.sol │ │ │ │ │ ├── CarbonPOL.dbg.json │ │ │ │ │ └── CarbonPOL.json │ │ │ │ └── interfaces │ │ │ │ │ └── ICarbonPOL.sol │ │ │ │ │ ├── ICarbonPOL.dbg.json │ │ │ │ │ └── ICarbonPOL.json │ │ │ ├── token │ │ │ │ ├── ERC20Burnable.sol │ │ │ │ │ ├── ERC20Burnable.dbg.json │ │ │ │ │ └── ERC20Burnable.json │ │ │ │ └── interfaces │ │ │ │ │ └── IERC20Burnable.sol │ │ │ │ │ ├── IERC20Burnable.dbg.json │ │ │ │ │ └── IERC20Burnable.json │ │ │ ├── utility │ │ │ │ ├── ExpDecayMath.sol │ │ │ │ │ ├── ExpDecayMath.dbg.json │ │ │ │ │ └── ExpDecayMath.json │ │ │ │ ├── MathEx.sol │ │ │ │ │ ├── MathEx.dbg.json │ │ │ │ │ └── MathEx.json │ │ │ │ ├── OnlyProxyDelegate.sol │ │ │ │ │ ├── OnlyProxyDelegate.dbg.json │ │ │ │ │ └── OnlyProxyDelegate.json │ │ │ │ ├── Upgradeable.sol │ │ │ │ │ ├── Upgradeable.dbg.json │ │ │ │ │ └── Upgradeable.json │ │ │ │ ├── Utils.sol │ │ │ │ │ ├── Utils.dbg.json │ │ │ │ │ └── Utils.json │ │ │ │ └── interfaces │ │ │ │ │ ├── IUpgradeable.sol │ │ │ │ │ ├── IUpgradeable.dbg.json │ │ │ │ │ └── IUpgradeable.json │ │ │ │ │ ├── IVault.sol │ │ │ │ │ ├── IVault.dbg.json │ │ │ │ │ └── IVault.json │ │ │ │ │ └── IVersioned.sol │ │ │ │ │ ├── IVersioned.dbg.json │ │ │ │ │ └── IVersioned.json │ │ │ ├── vortex │ │ │ │ ├── CarbonVortex.sol │ │ │ │ │ ├── CarbonVortex.dbg.json │ │ │ │ │ └── CarbonVortex.json │ │ │ │ └── interfaces │ │ │ │ │ └── ICarbonVortex.sol │ │ │ │ │ ├── ICarbonVortex.dbg.json │ │ │ │ │ └── ICarbonVortex.json │ │ │ └── voucher │ │ │ │ ├── Voucher.sol │ │ │ │ ├── Voucher.dbg.json │ │ │ │ └── Voucher.json │ │ │ │ └── interfaces │ │ │ │ └── IVoucher.sol │ │ │ │ ├── IVoucher.dbg.json │ │ │ │ └── IVoucher.json │ │ └── hardhat-deploy │ │ │ └── solc_0.8 │ │ │ ├── openzeppelin │ │ │ ├── interfaces │ │ │ │ └── draft-IERC1822.sol │ │ │ │ │ ├── IERC1822Proxiable.dbg.json │ │ │ │ │ └── IERC1822Proxiable.json │ │ │ ├── proxy │ │ │ │ ├── ERC1967 │ │ │ │ │ ├── ERC1967Proxy.sol │ │ │ │ │ │ ├── ERC1967Proxy.dbg.json │ │ │ │ │ │ └── ERC1967Proxy.json │ │ │ │ │ └── ERC1967Upgrade.sol │ │ │ │ │ │ ├── ERC1967Upgrade.dbg.json │ │ │ │ │ │ └── ERC1967Upgrade.json │ │ │ │ ├── Proxy.sol │ │ │ │ │ ├── Proxy.dbg.json │ │ │ │ │ └── Proxy.json │ │ │ │ └── beacon │ │ │ │ │ └── IBeacon.sol │ │ │ │ │ ├── IBeacon.dbg.json │ │ │ │ │ └── IBeacon.json │ │ │ └── utils │ │ │ │ ├── Address.sol │ │ │ │ ├── Address.dbg.json │ │ │ │ └── Address.json │ │ │ │ └── StorageSlot.sol │ │ │ │ ├── StorageSlot.dbg.json │ │ │ │ └── StorageSlot.json │ │ │ └── proxy │ │ │ └── OptimizedTransparentUpgradeableProxy.sol │ │ │ ├── OptimizedTransparentUpgradeableProxy.dbg.json │ │ │ └── OptimizedTransparentUpgradeableProxy.json │ ├── cache_forge │ │ └── solidity-files-cache.json │ ├── dist │ │ ├── components │ │ │ ├── ContractBuilder.d.ts │ │ │ ├── ContractBuilder.d.ts.map │ │ │ ├── ContractBuilder.js │ │ │ ├── ContractBuilder.js.map │ │ │ ├── Contracts.d.ts │ │ │ ├── Contracts.d.ts.map │ │ │ ├── Contracts.js │ │ │ └── Contracts.js.map │ │ ├── data │ │ │ ├── named-accounts.d.ts │ │ │ ├── named-accounts.d.ts.map │ │ │ ├── named-accounts.js │ │ │ └── named-accounts.js.map │ │ ├── deploy │ │ │ ├── scripts │ │ │ │ ├── mainnet │ │ │ │ │ ├── 0001-ProxyAdmin.d.ts │ │ │ │ │ ├── 0001-ProxyAdmin.d.ts.map │ │ │ │ │ ├── 0001-ProxyAdmin.js │ │ │ │ │ ├── 0001-ProxyAdmin.js.map │ │ │ │ │ ├── 0002-Voucher.d.ts │ │ │ │ │ ├── 0002-Voucher.d.ts.map │ │ │ │ │ ├── 0002-Voucher.js │ │ │ │ │ ├── 0002-Voucher.js.map │ │ │ │ │ ├── 0003-CarbonController.d.ts │ │ │ │ │ ├── 0003-CarbonController.d.ts.map │ │ │ │ │ ├── 0003-CarbonController.js │ │ │ │ │ ├── 0003-CarbonController.js.map │ │ │ │ │ ├── 0004-CarbonVortex.d.ts │ │ │ │ │ ├── 0004-CarbonVortex.d.ts.map │ │ │ │ │ ├── 0004-CarbonVortex.js │ │ │ │ │ ├── 0004-CarbonVortex.js.map │ │ │ │ │ ├── 0005-CarbonController-upgrade.d.ts │ │ │ │ │ ├── 0005-CarbonController-upgrade.d.ts.map │ │ │ │ │ ├── 0005-CarbonController-upgrade.js │ │ │ │ │ ├── 0005-CarbonController-upgrade.js.map │ │ │ │ │ ├── 0006-CarbonVortex-upgrade.d.ts │ │ │ │ │ ├── 0006-CarbonVortex-upgrade.d.ts.map │ │ │ │ │ ├── 0006-CarbonVortex-upgrade.js │ │ │ │ │ ├── 0006-CarbonVortex-upgrade.js.map │ │ │ │ │ ├── 0007-CarbonController-upgrade.d.ts │ │ │ │ │ ├── 0007-CarbonController-upgrade.d.ts.map │ │ │ │ │ ├── 0007-CarbonController-upgrade.js │ │ │ │ │ ├── 0007-CarbonController-upgrade.js.map │ │ │ │ │ ├── 0008-CarbonPOL.d.ts │ │ │ │ │ ├── 0008-CarbonPOL.d.ts.map │ │ │ │ │ ├── 0008-CarbonPOL.js │ │ │ │ │ ├── 0008-CarbonPOL.js.map │ │ │ │ │ ├── 0009-CarbonPOL-upgrade.d.ts │ │ │ │ │ ├── 0009-CarbonPOL-upgrade.d.ts.map │ │ │ │ │ ├── 0009-CarbonPOL-upgrade.js │ │ │ │ │ ├── 0009-CarbonPOL-upgrade.js.map │ │ │ │ │ ├── 0010-CarbonController-upgrade.d.ts │ │ │ │ │ ├── 0010-CarbonController-upgrade.d.ts.map │ │ │ │ │ ├── 0010-CarbonController-upgrade.js │ │ │ │ │ ├── 0010-CarbonController-upgrade.js.map │ │ │ │ │ ├── 0011-Voucher-upgrade.d.ts │ │ │ │ │ ├── 0011-Voucher-upgrade.d.ts.map │ │ │ │ │ ├── 0011-Voucher-upgrade.js │ │ │ │ │ ├── 0011-Voucher-upgrade.js.map │ │ │ │ │ ├── 0012-CarbonVortex-upgrade.d.ts │ │ │ │ │ ├── 0012-CarbonVortex-upgrade.d.ts.map │ │ │ │ │ ├── 0012-CarbonVortex-upgrade.js │ │ │ │ │ ├── 0012-CarbonVortex-upgrade.js.map │ │ │ │ │ ├── 0013-CarbonController-upgrade.d.ts │ │ │ │ │ ├── 0013-CarbonController-upgrade.d.ts.map │ │ │ │ │ ├── 0013-CarbonController-upgrade.js │ │ │ │ │ ├── 0013-CarbonController-upgrade.js.map │ │ │ │ │ ├── 0014-ProxyAdmin.d.ts │ │ │ │ │ ├── 0014-ProxyAdmin.d.ts.map │ │ │ │ │ ├── 0014-ProxyAdmin.js │ │ │ │ │ ├── 0014-ProxyAdmin.js.map │ │ │ │ │ ├── 0015-CarbonVortex.d.ts │ │ │ │ │ ├── 0015-CarbonVortex.d.ts.map │ │ │ │ │ ├── 0015-CarbonVortex.js │ │ │ │ │ ├── 0015-CarbonVortex.js.map │ │ │ │ │ ├── 0100-revoke-roles.d.ts │ │ │ │ │ ├── 0100-revoke-roles.d.ts.map │ │ │ │ │ ├── 0100-revoke-roles.js │ │ │ │ │ ├── 0100-revoke-roles.js.map │ │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.d.ts │ │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.d.ts.map │ │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.js │ │ │ │ │ └── 0101-transfer-proxy-admin-ownership.js.map │ │ │ │ └── network │ │ │ │ │ ├── 0001-ProxyAdmin.d.ts │ │ │ │ │ ├── 0001-ProxyAdmin.d.ts.map │ │ │ │ │ ├── 0001-ProxyAdmin.js │ │ │ │ │ ├── 0001-ProxyAdmin.js.map │ │ │ │ │ ├── 0002-Voucher.d.ts │ │ │ │ │ ├── 0002-Voucher.d.ts.map │ │ │ │ │ ├── 0002-Voucher.js │ │ │ │ │ ├── 0002-Voucher.js.map │ │ │ │ │ ├── 0003-CarbonController.d.ts │ │ │ │ │ ├── 0003-CarbonController.d.ts.map │ │ │ │ │ ├── 0003-CarbonController.js │ │ │ │ │ └── 0003-CarbonController.js.map │ │ │ └── tests │ │ │ │ ├── mainnet │ │ │ │ ├── 0001-proxy-admin.d.ts │ │ │ │ ├── 0001-proxy-admin.d.ts.map │ │ │ │ ├── 0001-proxy-admin.js │ │ │ │ ├── 0001-proxy-admin.js.map │ │ │ │ ├── 0002-voucher.d.ts │ │ │ │ ├── 0002-voucher.d.ts.map │ │ │ │ ├── 0002-voucher.js │ │ │ │ ├── 0002-voucher.js.map │ │ │ │ ├── 0003-carbon-controller.d.ts │ │ │ │ ├── 0003-carbon-controller.d.ts.map │ │ │ │ ├── 0003-carbon-controller.js │ │ │ │ ├── 0003-carbon-controller.js.map │ │ │ │ ├── 0004-fee-burner.d.ts │ │ │ │ ├── 0004-fee-burner.d.ts.map │ │ │ │ ├── 0004-fee-burner.js │ │ │ │ ├── 0004-fee-burner.js.map │ │ │ │ ├── 0005-carbon-controller-upgrade.d.ts │ │ │ │ ├── 0005-carbon-controller-upgrade.d.ts.map │ │ │ │ ├── 0005-carbon-controller-upgrade.js │ │ │ │ ├── 0005-carbon-controller-upgrade.js.map │ │ │ │ ├── 0006-carbon-vortex-upgrade.d.ts │ │ │ │ ├── 0006-carbon-vortex-upgrade.d.ts.map │ │ │ │ ├── 0006-carbon-vortex-upgrade.js │ │ │ │ ├── 0006-carbon-vortex-upgrade.js.map │ │ │ │ ├── 0007-carbon-controller-upgrade.d.ts │ │ │ │ ├── 0007-carbon-controller-upgrade.d.ts.map │ │ │ │ ├── 0007-carbon-controller-upgrade.js │ │ │ │ ├── 0007-carbon-controller-upgrade.js.map │ │ │ │ ├── 0008-carbon-pol.d.ts │ │ │ │ ├── 0008-carbon-pol.d.ts.map │ │ │ │ ├── 0008-carbon-pol.js │ │ │ │ ├── 0008-carbon-pol.js.map │ │ │ │ ├── 0009-carbon-pol.d.ts │ │ │ │ ├── 0009-carbon-pol.d.ts.map │ │ │ │ ├── 0009-carbon-pol.js │ │ │ │ ├── 0009-carbon-pol.js.map │ │ │ │ ├── 0010-carbon-controller-upgrade.d.ts │ │ │ │ ├── 0010-carbon-controller-upgrade.d.ts.map │ │ │ │ ├── 0010-carbon-controller-upgrade.js │ │ │ │ ├── 0010-carbon-controller-upgrade.js.map │ │ │ │ ├── 0011-voucher-upgrade.d.ts │ │ │ │ ├── 0011-voucher-upgrade.d.ts.map │ │ │ │ ├── 0011-voucher-upgrade.js │ │ │ │ ├── 0011-voucher-upgrade.js.map │ │ │ │ ├── 0012-carbon-vortex-upgrade.d.ts │ │ │ │ ├── 0012-carbon-vortex-upgrade.d.ts.map │ │ │ │ ├── 0012-carbon-vortex-upgrade.js │ │ │ │ ├── 0012-carbon-vortex-upgrade.js.map │ │ │ │ ├── 0013-carbon-controller-upgrade.d.ts │ │ │ │ ├── 0013-carbon-controller-upgrade.d.ts.map │ │ │ │ ├── 0013-carbon-controller-upgrade.js │ │ │ │ ├── 0013-carbon-controller-upgrade.js.map │ │ │ │ ├── 0100-revoke-roles.d.ts │ │ │ │ ├── 0100-revoke-roles.d.ts.map │ │ │ │ ├── 0100-revoke-roles.js │ │ │ │ ├── 0100-revoke-roles.js.map │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.d.ts │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.d.ts.map │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.js │ │ │ │ ├── 0101-transfer-proxy-admin-ownership.js.map │ │ │ │ ├── carbon.d.ts │ │ │ │ ├── carbon.d.ts.map │ │ │ │ ├── carbon.js │ │ │ │ └── carbon.js.map │ │ │ │ └── network │ │ │ │ ├── 0001-proxy-admin.d.ts │ │ │ │ ├── 0001-proxy-admin.d.ts.map │ │ │ │ ├── 0001-proxy-admin.js │ │ │ │ ├── 0001-proxy-admin.js.map │ │ │ │ ├── 0002-voucher.d.ts │ │ │ │ ├── 0002-voucher.d.ts.map │ │ │ │ ├── 0002-voucher.js │ │ │ │ ├── 0002-voucher.js.map │ │ │ │ ├── 0003-carbon-controller.d.ts │ │ │ │ ├── 0003-carbon-controller.d.ts.map │ │ │ │ ├── 0003-carbon-controller.js │ │ │ │ └── 0003-carbon-controller.js.map │ │ ├── deployments │ │ │ ├── setup-fork.d.ts │ │ │ ├── setup-fork.d.ts.map │ │ │ ├── setup-fork.js │ │ │ ├── setup-fork.js.map │ │ │ ├── setup-testnet.d.ts │ │ │ ├── setup-testnet.d.ts.map │ │ │ ├── setup-testnet.js │ │ │ ├── setup-testnet.js.map │ │ │ ├── storage-layout.d.ts │ │ │ ├── storage-layout.d.ts.map │ │ │ ├── storage-layout.js │ │ │ └── storage-layout.js.map │ │ ├── hardhat.config.d.ts │ │ ├── hardhat.config.d.ts.map │ │ ├── hardhat.config.js │ │ ├── hardhat.config.js.map │ │ ├── scripts │ │ │ ├── enableTrading.d.ts │ │ │ ├── enableTrading.d.ts.map │ │ │ ├── enableTrading.js │ │ │ ├── enableTrading.js.map │ │ │ ├── example.d.ts │ │ │ ├── example.d.ts.map │ │ │ ├── example.js │ │ │ ├── example.js.map │ │ │ ├── timer.d.ts │ │ │ ├── timer.d.ts.map │ │ │ ├── timer.js │ │ │ └── timer.js.map │ │ ├── test │ │ │ ├── Setup.d.ts │ │ │ ├── Setup.d.ts.map │ │ │ ├── Setup.js │ │ │ ├── Setup.js.map │ │ │ ├── carbon │ │ │ │ └── accuracy │ │ │ │ │ ├── accuracy.d.ts │ │ │ │ │ ├── accuracy.d.ts.map │ │ │ │ │ ├── accuracy.js │ │ │ │ │ ├── accuracy.js.map │ │ │ │ │ └── data │ │ │ │ │ ├── ArbitraryTrade.json │ │ │ │ │ ├── EthUsdcTrade.json │ │ │ │ │ ├── ExtremeSrcTrade.json │ │ │ │ │ └── ExtremeTrgTrade.json │ │ │ ├── helpers │ │ │ │ ├── AccessControl.d.ts │ │ │ │ ├── AccessControl.d.ts.map │ │ │ │ ├── AccessControl.js │ │ │ │ ├── AccessControl.js.map │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.d.ts.map │ │ │ │ ├── Factory.js │ │ │ │ ├── Factory.js.map │ │ │ │ ├── Proxy.d.ts │ │ │ │ ├── Proxy.d.ts.map │ │ │ │ ├── Proxy.js │ │ │ │ ├── Proxy.js.map │ │ │ │ ├── Time.d.ts │ │ │ │ ├── Time.d.ts.map │ │ │ │ ├── Time.js │ │ │ │ ├── Time.js.map │ │ │ │ ├── Trading.d.ts │ │ │ │ ├── Trading.d.ts.map │ │ │ │ ├── Trading.js │ │ │ │ ├── Trading.js.map │ │ │ │ ├── Utils.d.ts │ │ │ │ ├── Utils.d.ts.map │ │ │ │ ├── Utils.js │ │ │ │ ├── Utils.js.map │ │ │ │ └── data │ │ │ │ │ └── tradeTestDataHardhat.json │ │ │ ├── matchers │ │ │ │ ├── BigNumber.d.ts │ │ │ │ ├── BigNumber.d.ts.map │ │ │ │ ├── BigNumber.js │ │ │ │ ├── BigNumber.js.map │ │ │ │ ├── Fraction.d.ts │ │ │ │ ├── Fraction.d.ts.map │ │ │ │ ├── Fraction.js │ │ │ │ ├── Fraction.js.map │ │ │ │ ├── RevertedWithError.d.ts │ │ │ │ ├── RevertedWithError.d.ts.map │ │ │ │ ├── RevertedWithError.js │ │ │ │ ├── RevertedWithError.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── math │ │ │ │ ├── ExpDecayMath.d.ts │ │ │ │ ├── ExpDecayMath.d.ts.map │ │ │ │ ├── ExpDecayMath.js │ │ │ │ └── ExpDecayMath.js.map │ │ │ └── utility │ │ │ │ ├── MathEx.d.ts │ │ │ │ ├── MathEx.d.ts.map │ │ │ │ ├── MathEx.js │ │ │ │ ├── MathEx.js.map │ │ │ │ ├── OnlyProxyDelegate.d.ts │ │ │ │ ├── OnlyProxyDelegate.d.ts.map │ │ │ │ ├── OnlyProxyDelegate.js │ │ │ │ ├── OnlyProxyDelegate.js.map │ │ │ │ ├── Upgradeable.d.ts │ │ │ │ ├── Upgradeable.d.ts.map │ │ │ │ ├── Upgradeable.js │ │ │ │ ├── Upgradeable.js.map │ │ │ │ ├── carbon-sdk.d.ts │ │ │ │ ├── carbon-sdk.d.ts.map │ │ │ │ ├── carbon-sdk.js │ │ │ │ ├── carbon-sdk.js.map │ │ │ │ ├── testDataFactory.d.ts │ │ │ │ ├── testDataFactory.d.ts.map │ │ │ │ ├── testDataFactory.js │ │ │ │ └── testDataFactory.js.map │ │ ├── typechain-types │ │ │ ├── @openzeppelin │ │ │ │ ├── contracts-upgradeable │ │ │ │ │ ├── access │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable.d.ts │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable.d.ts.map │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable.js │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable.js.map │ │ │ │ │ │ ├── AccessControlUpgradeable.d.ts │ │ │ │ │ │ ├── AccessControlUpgradeable.d.ts.map │ │ │ │ │ │ ├── AccessControlUpgradeable.js │ │ │ │ │ │ ├── AccessControlUpgradeable.js.map │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable.d.ts │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable.d.ts.map │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable.js │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable.js.map │ │ │ │ │ │ ├── IAccessControlUpgradeable.d.ts │ │ │ │ │ │ ├── IAccessControlUpgradeable.d.ts.map │ │ │ │ │ │ ├── IAccessControlUpgradeable.js │ │ │ │ │ │ ├── IAccessControlUpgradeable.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── Initializable.d.ts │ │ │ │ │ │ │ ├── Initializable.d.ts.map │ │ │ │ │ │ │ ├── Initializable.js │ │ │ │ │ │ │ ├── Initializable.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── security │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable.d.ts │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable.d.ts.map │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable.js │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── token │ │ │ │ │ │ ├── ERC721 │ │ │ │ │ │ │ ├── ERC721Upgradeable.d.ts │ │ │ │ │ │ │ ├── ERC721Upgradeable.d.ts.map │ │ │ │ │ │ │ ├── ERC721Upgradeable.js │ │ │ │ │ │ │ ├── ERC721Upgradeable.js.map │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable.d.ts │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable.d.ts.map │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable.js │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable.js.map │ │ │ │ │ │ │ ├── IERC721Upgradeable.d.ts │ │ │ │ │ │ │ ├── IERC721Upgradeable.d.ts.map │ │ │ │ │ │ │ ├── IERC721Upgradeable.js │ │ │ │ │ │ │ ├── IERC721Upgradeable.js.map │ │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable.d.ts │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable.d.ts.map │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable.js │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ └── utils │ │ │ │ │ │ ├── ContextUpgradeable.d.ts │ │ │ │ │ │ ├── ContextUpgradeable.d.ts.map │ │ │ │ │ │ ├── ContextUpgradeable.js │ │ │ │ │ │ ├── ContextUpgradeable.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── introspection │ │ │ │ │ │ ├── ERC165Upgradeable.d.ts │ │ │ │ │ │ ├── ERC165Upgradeable.d.ts.map │ │ │ │ │ │ ├── ERC165Upgradeable.js │ │ │ │ │ │ ├── ERC165Upgradeable.js.map │ │ │ │ │ │ ├── IERC165Upgradeable.d.ts │ │ │ │ │ │ ├── IERC165Upgradeable.d.ts.map │ │ │ │ │ │ ├── IERC165Upgradeable.js │ │ │ │ │ │ ├── IERC165Upgradeable.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── contracts │ │ │ │ │ ├── access │ │ │ │ │ │ ├── AccessControl.d.ts │ │ │ │ │ │ ├── AccessControl.d.ts.map │ │ │ │ │ │ ├── AccessControl.js │ │ │ │ │ │ ├── AccessControl.js.map │ │ │ │ │ │ ├── AccessControlEnumerable.d.ts │ │ │ │ │ │ ├── AccessControlEnumerable.d.ts.map │ │ │ │ │ │ ├── AccessControlEnumerable.js │ │ │ │ │ │ ├── AccessControlEnumerable.js.map │ │ │ │ │ │ ├── IAccessControl.d.ts │ │ │ │ │ │ ├── IAccessControl.d.ts.map │ │ │ │ │ │ ├── IAccessControl.js │ │ │ │ │ │ ├── IAccessControl.js.map │ │ │ │ │ │ ├── IAccessControlEnumerable.d.ts │ │ │ │ │ │ ├── IAccessControlEnumerable.d.ts.map │ │ │ │ │ │ ├── IAccessControlEnumerable.js │ │ │ │ │ │ ├── IAccessControlEnumerable.js.map │ │ │ │ │ │ ├── Ownable.d.ts │ │ │ │ │ │ ├── Ownable.d.ts.map │ │ │ │ │ │ ├── Ownable.js │ │ │ │ │ │ ├── Ownable.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── IERC1967.d.ts │ │ │ │ │ │ ├── IERC1967.d.ts.map │ │ │ │ │ │ ├── IERC1967.js │ │ │ │ │ │ ├── IERC1967.js.map │ │ │ │ │ │ ├── IERC5267.d.ts │ │ │ │ │ │ ├── IERC5267.d.ts.map │ │ │ │ │ │ ├── IERC5267.js │ │ │ │ │ │ ├── IERC5267.js.map │ │ │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ │ │ ├── IERC1822Proxiable.d.ts │ │ │ │ │ │ │ ├── IERC1822Proxiable.d.ts.map │ │ │ │ │ │ │ ├── IERC1822Proxiable.js │ │ │ │ │ │ │ ├── IERC1822Proxiable.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── ERC1967 │ │ │ │ │ │ │ ├── ERC1967Proxy.d.ts │ │ │ │ │ │ │ ├── ERC1967Proxy.d.ts.map │ │ │ │ │ │ │ ├── ERC1967Proxy.js │ │ │ │ │ │ │ ├── ERC1967Proxy.js.map │ │ │ │ │ │ │ ├── ERC1967Upgrade.d.ts │ │ │ │ │ │ │ ├── ERC1967Upgrade.d.ts.map │ │ │ │ │ │ │ ├── ERC1967Upgrade.js │ │ │ │ │ │ │ ├── ERC1967Upgrade.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── Proxy.d.ts │ │ │ │ │ │ ├── Proxy.d.ts.map │ │ │ │ │ │ ├── Proxy.js │ │ │ │ │ │ ├── Proxy.js.map │ │ │ │ │ │ ├── beacon │ │ │ │ │ │ │ ├── IBeacon.d.ts │ │ │ │ │ │ │ ├── IBeacon.d.ts.map │ │ │ │ │ │ │ ├── IBeacon.js │ │ │ │ │ │ │ ├── IBeacon.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── transparent │ │ │ │ │ │ │ ├── ProxyAdmin.d.ts │ │ │ │ │ │ │ ├── ProxyAdmin.d.ts.map │ │ │ │ │ │ │ ├── ProxyAdmin.js │ │ │ │ │ │ │ ├── ProxyAdmin.js.map │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy.sol │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy.d.ts │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy.d.ts.map │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy.js │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy.js.map │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy.d.ts │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy.d.ts.map │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy.js │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── token │ │ │ │ │ │ ├── ERC20 │ │ │ │ │ │ │ ├── ERC20.d.ts │ │ │ │ │ │ │ ├── ERC20.d.ts.map │ │ │ │ │ │ │ ├── ERC20.js │ │ │ │ │ │ │ ├── ERC20.js.map │ │ │ │ │ │ │ ├── IERC20.d.ts │ │ │ │ │ │ │ ├── IERC20.d.ts.map │ │ │ │ │ │ │ ├── IERC20.js │ │ │ │ │ │ │ ├── IERC20.js.map │ │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ │ ├── ERC20Permit.d.ts │ │ │ │ │ │ │ │ ├── ERC20Permit.d.ts.map │ │ │ │ │ │ │ │ ├── ERC20Permit.js │ │ │ │ │ │ │ │ ├── ERC20Permit.js.map │ │ │ │ │ │ │ │ ├── IERC20Metadata.d.ts │ │ │ │ │ │ │ │ ├── IERC20Metadata.d.ts.map │ │ │ │ │ │ │ │ ├── IERC20Metadata.js │ │ │ │ │ │ │ │ ├── IERC20Metadata.js.map │ │ │ │ │ │ │ │ ├── IERC20Permit.d.ts │ │ │ │ │ │ │ │ ├── IERC20Permit.d.ts.map │ │ │ │ │ │ │ │ ├── IERC20Permit.js │ │ │ │ │ │ │ │ ├── IERC20Permit.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ └── utils │ │ │ │ │ │ ├── ShortStrings.d.ts │ │ │ │ │ │ ├── ShortStrings.d.ts.map │ │ │ │ │ │ ├── ShortStrings.js │ │ │ │ │ │ ├── ShortStrings.js.map │ │ │ │ │ │ ├── cryptography │ │ │ │ │ │ ├── EIP712.d.ts │ │ │ │ │ │ ├── EIP712.d.ts.map │ │ │ │ │ │ ├── EIP712.js │ │ │ │ │ │ ├── EIP712.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── introspection │ │ │ │ │ │ ├── ERC165.d.ts │ │ │ │ │ │ ├── ERC165.d.ts.map │ │ │ │ │ │ ├── ERC165.js │ │ │ │ │ │ ├── ERC165.js.map │ │ │ │ │ │ ├── IERC165.d.ts │ │ │ │ │ │ ├── IERC165.d.ts.map │ │ │ │ │ │ ├── IERC165.js │ │ │ │ │ │ ├── IERC165.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── common.d.ts │ │ │ ├── common.d.ts.map │ │ │ ├── common.js │ │ │ ├── common.js.map │ │ │ ├── contracts │ │ │ │ ├── carbon │ │ │ │ │ ├── CarbonController.d.ts │ │ │ │ │ ├── CarbonController.d.ts.map │ │ │ │ │ ├── CarbonController.js │ │ │ │ │ ├── CarbonController.js.map │ │ │ │ │ ├── Pairs.d.ts │ │ │ │ │ ├── Pairs.d.ts.map │ │ │ │ │ ├── Pairs.js │ │ │ │ │ ├── Pairs.js.map │ │ │ │ │ ├── Strategies.d.ts │ │ │ │ │ ├── Strategies.d.ts.map │ │ │ │ │ ├── Strategies.js │ │ │ │ │ ├── Strategies.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── ICarbonController.d.ts │ │ │ │ │ │ ├── ICarbonController.d.ts.map │ │ │ │ │ │ ├── ICarbonController.js │ │ │ │ │ │ ├── ICarbonController.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── helpers │ │ │ │ │ ├── DummyProxy.sol │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.d.ts │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.d.ts.map │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.js │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.js.map │ │ │ │ │ │ ├── ProxyAdminAccess.d.ts │ │ │ │ │ │ ├── ProxyAdminAccess.d.ts.map │ │ │ │ │ │ ├── ProxyAdminAccess.js │ │ │ │ │ │ ├── ProxyAdminAccess.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── MockBancorNetworkV3.d.ts │ │ │ │ │ ├── MockBancorNetworkV3.d.ts.map │ │ │ │ │ ├── MockBancorNetworkV3.js │ │ │ │ │ ├── MockBancorNetworkV3.js.map │ │ │ │ │ ├── TestBNT.d.ts │ │ │ │ │ ├── TestBNT.d.ts.map │ │ │ │ │ ├── TestBNT.js │ │ │ │ │ ├── TestBNT.js.map │ │ │ │ │ ├── TestCarbonController.d.ts │ │ │ │ │ ├── TestCarbonController.d.ts.map │ │ │ │ │ ├── TestCarbonController.js │ │ │ │ │ ├── TestCarbonController.js.map │ │ │ │ │ ├── TestERC20Burnable.d.ts │ │ │ │ │ ├── TestERC20Burnable.d.ts.map │ │ │ │ │ ├── TestERC20Burnable.js │ │ │ │ │ ├── TestERC20Burnable.js.map │ │ │ │ │ ├── TestERC20FeeOnTransfer.d.ts │ │ │ │ │ ├── TestERC20FeeOnTransfer.d.ts.map │ │ │ │ │ ├── TestERC20FeeOnTransfer.js │ │ │ │ │ ├── TestERC20FeeOnTransfer.js.map │ │ │ │ │ ├── TestERC20Token.d.ts │ │ │ │ │ ├── TestERC20Token.d.ts.map │ │ │ │ │ ├── TestERC20Token.js │ │ │ │ │ ├── TestERC20Token.js.map │ │ │ │ │ ├── TestExpDecayMath.d.ts │ │ │ │ │ ├── TestExpDecayMath.d.ts.map │ │ │ │ │ ├── TestExpDecayMath.js │ │ │ │ │ ├── TestExpDecayMath.js.map │ │ │ │ │ ├── TestLogic.d.ts │ │ │ │ │ ├── TestLogic.d.ts.map │ │ │ │ │ ├── TestLogic.js │ │ │ │ │ ├── TestLogic.js.map │ │ │ │ │ ├── TestMathEx.d.ts │ │ │ │ │ ├── TestMathEx.d.ts.map │ │ │ │ │ ├── TestMathEx.js │ │ │ │ │ ├── TestMathEx.js.map │ │ │ │ │ ├── TestOnlyProxyDelegate.d.ts │ │ │ │ │ ├── TestOnlyProxyDelegate.d.ts.map │ │ │ │ │ ├── TestOnlyProxyDelegate.js │ │ │ │ │ ├── TestOnlyProxyDelegate.js.map │ │ │ │ │ ├── TestPairs.d.ts │ │ │ │ │ ├── TestPairs.d.ts.map │ │ │ │ │ ├── TestPairs.js │ │ │ │ │ ├── TestPairs.js.map │ │ │ │ │ ├── TestReenterCarbonPOL.d.ts │ │ │ │ │ ├── TestReenterCarbonPOL.d.ts.map │ │ │ │ │ ├── TestReenterCarbonPOL.js │ │ │ │ │ ├── TestReenterCarbonPOL.js.map │ │ │ │ │ ├── TestReenterCarbonVortex.d.ts │ │ │ │ │ ├── TestReenterCarbonVortex.d.ts.map │ │ │ │ │ ├── TestReenterCarbonVortex.js │ │ │ │ │ ├── TestReenterCarbonVortex.js.map │ │ │ │ │ ├── TestReentrantToken.d.ts │ │ │ │ │ ├── TestReentrantToken.d.ts.map │ │ │ │ │ ├── TestReentrantToken.js │ │ │ │ │ ├── TestReentrantToken.js.map │ │ │ │ │ ├── TestStrategies.d.ts │ │ │ │ │ ├── TestStrategies.d.ts.map │ │ │ │ │ ├── TestStrategies.js │ │ │ │ │ ├── TestStrategies.js.map │ │ │ │ │ ├── TestTokenType.d.ts │ │ │ │ │ ├── TestTokenType.d.ts.map │ │ │ │ │ ├── TestTokenType.js │ │ │ │ │ ├── TestTokenType.js.map │ │ │ │ │ ├── TestUpgradeable.d.ts │ │ │ │ │ ├── TestUpgradeable.d.ts.map │ │ │ │ │ ├── TestUpgradeable.js │ │ │ │ │ ├── TestUpgradeable.js.map │ │ │ │ │ ├── TestVault.d.ts │ │ │ │ │ ├── TestVault.d.ts.map │ │ │ │ │ ├── TestVault.js │ │ │ │ │ ├── TestVault.js.map │ │ │ │ │ ├── TestVoucher.d.ts │ │ │ │ │ ├── TestVoucher.d.ts.map │ │ │ │ │ ├── TestVoucher.js │ │ │ │ │ ├── TestVoucher.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── pol │ │ │ │ │ ├── CarbonPOL.d.ts │ │ │ │ │ ├── CarbonPOL.d.ts.map │ │ │ │ │ ├── CarbonPOL.js │ │ │ │ │ ├── CarbonPOL.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── ICarbonPOL.d.ts │ │ │ │ │ │ ├── ICarbonPOL.d.ts.map │ │ │ │ │ │ ├── ICarbonPOL.js │ │ │ │ │ │ ├── ICarbonPOL.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── token │ │ │ │ │ ├── ERC20Burnable.d.ts │ │ │ │ │ ├── ERC20Burnable.d.ts.map │ │ │ │ │ ├── ERC20Burnable.js │ │ │ │ │ ├── ERC20Burnable.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── IERC20Burnable.d.ts │ │ │ │ │ │ ├── IERC20Burnable.d.ts.map │ │ │ │ │ │ ├── IERC20Burnable.js │ │ │ │ │ │ ├── IERC20Burnable.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── utility │ │ │ │ │ ├── MathEx.d.ts │ │ │ │ │ ├── MathEx.d.ts.map │ │ │ │ │ ├── MathEx.js │ │ │ │ │ ├── MathEx.js.map │ │ │ │ │ ├── OnlyProxyDelegate.d.ts │ │ │ │ │ ├── OnlyProxyDelegate.d.ts.map │ │ │ │ │ ├── OnlyProxyDelegate.js │ │ │ │ │ ├── OnlyProxyDelegate.js.map │ │ │ │ │ ├── Upgradeable.d.ts │ │ │ │ │ ├── Upgradeable.d.ts.map │ │ │ │ │ ├── Upgradeable.js │ │ │ │ │ ├── Upgradeable.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── IUpgradeable.d.ts │ │ │ │ │ │ ├── IUpgradeable.d.ts.map │ │ │ │ │ │ ├── IUpgradeable.js │ │ │ │ │ │ ├── IUpgradeable.js.map │ │ │ │ │ │ ├── IVault.d.ts │ │ │ │ │ │ ├── IVault.d.ts.map │ │ │ │ │ │ ├── IVault.js │ │ │ │ │ │ ├── IVault.js.map │ │ │ │ │ │ ├── IVersioned.d.ts │ │ │ │ │ │ ├── IVersioned.d.ts.map │ │ │ │ │ │ ├── IVersioned.js │ │ │ │ │ │ ├── IVersioned.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── vortex │ │ │ │ │ ├── CarbonVortex.d.ts │ │ │ │ │ ├── CarbonVortex.d.ts.map │ │ │ │ │ ├── CarbonVortex.js │ │ │ │ │ ├── CarbonVortex.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── ICarbonVortex.d.ts │ │ │ │ │ │ ├── ICarbonVortex.d.ts.map │ │ │ │ │ │ ├── ICarbonVortex.js │ │ │ │ │ │ ├── ICarbonVortex.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ └── voucher │ │ │ │ │ ├── Voucher.d.ts │ │ │ │ │ ├── Voucher.d.ts.map │ │ │ │ │ ├── Voucher.js │ │ │ │ │ ├── Voucher.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── interfaces │ │ │ │ │ ├── IVoucher.d.ts │ │ │ │ │ ├── IVoucher.d.ts.map │ │ │ │ │ ├── IVoucher.js │ │ │ │ │ ├── IVoucher.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── factories │ │ │ │ ├── @openzeppelin │ │ │ │ │ ├── contracts-upgradeable │ │ │ │ │ │ ├── access │ │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable__factory.js │ │ │ │ │ │ │ ├── AccessControlEnumerableUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── AccessControlUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── AccessControlUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── AccessControlUpgradeable__factory.js │ │ │ │ │ │ │ ├── AccessControlUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable__factory.js │ │ │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── IAccessControlUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── IAccessControlUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── IAccessControlUpgradeable__factory.js │ │ │ │ │ │ │ ├── IAccessControlUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── proxy │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── Initializable__factory.d.ts │ │ │ │ │ │ │ │ ├── Initializable__factory.d.ts.map │ │ │ │ │ │ │ │ ├── Initializable__factory.js │ │ │ │ │ │ │ │ ├── Initializable__factory.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable__factory.js │ │ │ │ │ │ │ ├── ReentrancyGuardUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── token │ │ │ │ │ │ │ ├── ERC721 │ │ │ │ │ │ │ │ ├── ERC721Upgradeable__factory.d.ts │ │ │ │ │ │ │ │ ├── ERC721Upgradeable__factory.d.ts.map │ │ │ │ │ │ │ │ ├── ERC721Upgradeable__factory.js │ │ │ │ │ │ │ │ ├── ERC721Upgradeable__factory.js.map │ │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable__factory.d.ts │ │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable__factory.js │ │ │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable__factory.js.map │ │ │ │ │ │ │ │ ├── IERC721Upgradeable__factory.d.ts │ │ │ │ │ │ │ │ ├── IERC721Upgradeable__factory.d.ts.map │ │ │ │ │ │ │ │ ├── IERC721Upgradeable__factory.js │ │ │ │ │ │ │ │ ├── IERC721Upgradeable__factory.js.map │ │ │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable__factory.d.ts │ │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable__factory.js │ │ │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable__factory.js.map │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── ContextUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── ContextUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── ContextUpgradeable__factory.js │ │ │ │ │ │ │ ├── ContextUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ └── introspection │ │ │ │ │ │ │ ├── ERC165Upgradeable__factory.d.ts │ │ │ │ │ │ │ ├── ERC165Upgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── ERC165Upgradeable__factory.js │ │ │ │ │ │ │ ├── ERC165Upgradeable__factory.js.map │ │ │ │ │ │ │ ├── IERC165Upgradeable__factory.d.ts │ │ │ │ │ │ │ ├── IERC165Upgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── IERC165Upgradeable__factory.js │ │ │ │ │ │ │ ├── IERC165Upgradeable__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── contracts │ │ │ │ │ │ ├── access │ │ │ │ │ │ │ ├── AccessControlEnumerable__factory.d.ts │ │ │ │ │ │ │ ├── AccessControlEnumerable__factory.d.ts.map │ │ │ │ │ │ │ ├── AccessControlEnumerable__factory.js │ │ │ │ │ │ │ ├── AccessControlEnumerable__factory.js.map │ │ │ │ │ │ │ ├── AccessControl__factory.d.ts │ │ │ │ │ │ │ ├── AccessControl__factory.d.ts.map │ │ │ │ │ │ │ ├── AccessControl__factory.js │ │ │ │ │ │ │ ├── AccessControl__factory.js.map │ │ │ │ │ │ │ ├── IAccessControlEnumerable__factory.d.ts │ │ │ │ │ │ │ ├── IAccessControlEnumerable__factory.d.ts.map │ │ │ │ │ │ │ ├── IAccessControlEnumerable__factory.js │ │ │ │ │ │ │ ├── IAccessControlEnumerable__factory.js.map │ │ │ │ │ │ │ ├── IAccessControl__factory.d.ts │ │ │ │ │ │ │ ├── IAccessControl__factory.d.ts.map │ │ │ │ │ │ │ ├── IAccessControl__factory.js │ │ │ │ │ │ │ ├── IAccessControl__factory.js.map │ │ │ │ │ │ │ ├── Ownable__factory.d.ts │ │ │ │ │ │ │ ├── Ownable__factory.d.ts.map │ │ │ │ │ │ │ ├── Ownable__factory.js │ │ │ │ │ │ │ ├── Ownable__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ ├── IERC1967__factory.d.ts │ │ │ │ │ │ │ ├── IERC1967__factory.d.ts.map │ │ │ │ │ │ │ ├── IERC1967__factory.js │ │ │ │ │ │ │ ├── IERC1967__factory.js.map │ │ │ │ │ │ │ ├── IERC5267__factory.d.ts │ │ │ │ │ │ │ ├── IERC5267__factory.d.ts.map │ │ │ │ │ │ │ ├── IERC5267__factory.js │ │ │ │ │ │ │ ├── IERC5267__factory.js.map │ │ │ │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.d.ts │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.d.ts.map │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.js │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── proxy │ │ │ │ │ │ │ ├── ERC1967 │ │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.d.ts │ │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.d.ts.map │ │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.js │ │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.js.map │ │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.d.ts │ │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.d.ts.map │ │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.js │ │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── Proxy__factory.d.ts │ │ │ │ │ │ │ ├── Proxy__factory.d.ts.map │ │ │ │ │ │ │ ├── Proxy__factory.js │ │ │ │ │ │ │ ├── Proxy__factory.js.map │ │ │ │ │ │ │ ├── beacon │ │ │ │ │ │ │ │ ├── IBeacon__factory.d.ts │ │ │ │ │ │ │ │ ├── IBeacon__factory.d.ts.map │ │ │ │ │ │ │ │ ├── IBeacon__factory.js │ │ │ │ │ │ │ │ ├── IBeacon__factory.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ └── transparent │ │ │ │ │ │ │ │ ├── ProxyAdmin__factory.d.ts │ │ │ │ │ │ │ │ ├── ProxyAdmin__factory.d.ts.map │ │ │ │ │ │ │ │ ├── ProxyAdmin__factory.js │ │ │ │ │ │ │ │ ├── ProxyAdmin__factory.js.map │ │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy.sol │ │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy__factory.d.ts │ │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy__factory.d.ts.map │ │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy__factory.js │ │ │ │ │ │ │ │ ├── ITransparentUpgradeableProxy__factory.js.map │ │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy__factory.d.ts │ │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy__factory.d.ts.map │ │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy__factory.js │ │ │ │ │ │ │ │ ├── TransparentUpgradeableProxy__factory.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── token │ │ │ │ │ │ │ ├── ERC20 │ │ │ │ │ │ │ │ ├── ERC20__factory.d.ts │ │ │ │ │ │ │ │ ├── ERC20__factory.d.ts.map │ │ │ │ │ │ │ │ ├── ERC20__factory.js │ │ │ │ │ │ │ │ ├── ERC20__factory.js.map │ │ │ │ │ │ │ │ ├── IERC20__factory.d.ts │ │ │ │ │ │ │ │ ├── IERC20__factory.d.ts.map │ │ │ │ │ │ │ │ ├── IERC20__factory.js │ │ │ │ │ │ │ │ ├── IERC20__factory.js.map │ │ │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ │ │ ├── ERC20Permit__factory.d.ts │ │ │ │ │ │ │ │ │ ├── ERC20Permit__factory.d.ts.map │ │ │ │ │ │ │ │ │ ├── ERC20Permit__factory.js │ │ │ │ │ │ │ │ │ ├── ERC20Permit__factory.js.map │ │ │ │ │ │ │ │ │ ├── IERC20Metadata__factory.d.ts │ │ │ │ │ │ │ │ │ ├── IERC20Metadata__factory.d.ts.map │ │ │ │ │ │ │ │ │ ├── IERC20Metadata__factory.js │ │ │ │ │ │ │ │ │ ├── IERC20Metadata__factory.js.map │ │ │ │ │ │ │ │ │ ├── IERC20Permit__factory.d.ts │ │ │ │ │ │ │ │ │ ├── IERC20Permit__factory.d.ts.map │ │ │ │ │ │ │ │ │ ├── IERC20Permit__factory.js │ │ │ │ │ │ │ │ │ ├── IERC20Permit__factory.js.map │ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── ShortStrings__factory.d.ts │ │ │ │ │ │ │ ├── ShortStrings__factory.d.ts.map │ │ │ │ │ │ │ ├── ShortStrings__factory.js │ │ │ │ │ │ │ ├── ShortStrings__factory.js.map │ │ │ │ │ │ │ ├── cryptography │ │ │ │ │ │ │ ├── EIP712__factory.d.ts │ │ │ │ │ │ │ ├── EIP712__factory.d.ts.map │ │ │ │ │ │ │ ├── EIP712__factory.js │ │ │ │ │ │ │ ├── EIP712__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ └── introspection │ │ │ │ │ │ │ ├── ERC165__factory.d.ts │ │ │ │ │ │ │ ├── ERC165__factory.d.ts.map │ │ │ │ │ │ │ ├── ERC165__factory.js │ │ │ │ │ │ │ ├── ERC165__factory.js.map │ │ │ │ │ │ │ ├── IERC165__factory.d.ts │ │ │ │ │ │ │ ├── IERC165__factory.d.ts.map │ │ │ │ │ │ │ ├── IERC165__factory.js │ │ │ │ │ │ │ ├── IERC165__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── contracts │ │ │ │ │ ├── carbon │ │ │ │ │ │ ├── CarbonController__factory.d.ts │ │ │ │ │ │ ├── CarbonController__factory.d.ts.map │ │ │ │ │ │ ├── CarbonController__factory.js │ │ │ │ │ │ ├── CarbonController__factory.js.map │ │ │ │ │ │ ├── Pairs__factory.d.ts │ │ │ │ │ │ ├── Pairs__factory.d.ts.map │ │ │ │ │ │ ├── Pairs__factory.js │ │ │ │ │ │ ├── Pairs__factory.js.map │ │ │ │ │ │ ├── Strategies__factory.d.ts │ │ │ │ │ │ ├── Strategies__factory.d.ts.map │ │ │ │ │ │ ├── Strategies__factory.js │ │ │ │ │ │ ├── Strategies__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── ICarbonController__factory.d.ts │ │ │ │ │ │ │ ├── ICarbonController__factory.d.ts.map │ │ │ │ │ │ │ ├── ICarbonController__factory.js │ │ │ │ │ │ │ ├── ICarbonController__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── DummyProxy.sol │ │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess__factory.d.ts │ │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess__factory.d.ts.map │ │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess__factory.js │ │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess__factory.js.map │ │ │ │ │ │ │ ├── ProxyAdminAccess__factory.d.ts │ │ │ │ │ │ │ ├── ProxyAdminAccess__factory.d.ts.map │ │ │ │ │ │ │ ├── ProxyAdminAccess__factory.js │ │ │ │ │ │ │ ├── ProxyAdminAccess__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── MockBancorNetworkV3__factory.d.ts │ │ │ │ │ │ ├── MockBancorNetworkV3__factory.d.ts.map │ │ │ │ │ │ ├── MockBancorNetworkV3__factory.js │ │ │ │ │ │ ├── MockBancorNetworkV3__factory.js.map │ │ │ │ │ │ ├── TestBNT__factory.d.ts │ │ │ │ │ │ ├── TestBNT__factory.d.ts.map │ │ │ │ │ │ ├── TestBNT__factory.js │ │ │ │ │ │ ├── TestBNT__factory.js.map │ │ │ │ │ │ ├── TestCarbonController__factory.d.ts │ │ │ │ │ │ ├── TestCarbonController__factory.d.ts.map │ │ │ │ │ │ ├── TestCarbonController__factory.js │ │ │ │ │ │ ├── TestCarbonController__factory.js.map │ │ │ │ │ │ ├── TestERC20Burnable__factory.d.ts │ │ │ │ │ │ ├── TestERC20Burnable__factory.d.ts.map │ │ │ │ │ │ ├── TestERC20Burnable__factory.js │ │ │ │ │ │ ├── TestERC20Burnable__factory.js.map │ │ │ │ │ │ ├── TestERC20FeeOnTransfer__factory.d.ts │ │ │ │ │ │ ├── TestERC20FeeOnTransfer__factory.d.ts.map │ │ │ │ │ │ ├── TestERC20FeeOnTransfer__factory.js │ │ │ │ │ │ ├── TestERC20FeeOnTransfer__factory.js.map │ │ │ │ │ │ ├── TestERC20Token__factory.d.ts │ │ │ │ │ │ ├── TestERC20Token__factory.d.ts.map │ │ │ │ │ │ ├── TestERC20Token__factory.js │ │ │ │ │ │ ├── TestERC20Token__factory.js.map │ │ │ │ │ │ ├── TestExpDecayMath__factory.d.ts │ │ │ │ │ │ ├── TestExpDecayMath__factory.d.ts.map │ │ │ │ │ │ ├── TestExpDecayMath__factory.js │ │ │ │ │ │ ├── TestExpDecayMath__factory.js.map │ │ │ │ │ │ ├── TestLogic__factory.d.ts │ │ │ │ │ │ ├── TestLogic__factory.d.ts.map │ │ │ │ │ │ ├── TestLogic__factory.js │ │ │ │ │ │ ├── TestLogic__factory.js.map │ │ │ │ │ │ ├── TestMathEx__factory.d.ts │ │ │ │ │ │ ├── TestMathEx__factory.d.ts.map │ │ │ │ │ │ ├── TestMathEx__factory.js │ │ │ │ │ │ ├── TestMathEx__factory.js.map │ │ │ │ │ │ ├── TestOnlyProxyDelegate__factory.d.ts │ │ │ │ │ │ ├── TestOnlyProxyDelegate__factory.d.ts.map │ │ │ │ │ │ ├── TestOnlyProxyDelegate__factory.js │ │ │ │ │ │ ├── TestOnlyProxyDelegate__factory.js.map │ │ │ │ │ │ ├── TestPairs__factory.d.ts │ │ │ │ │ │ ├── TestPairs__factory.d.ts.map │ │ │ │ │ │ ├── TestPairs__factory.js │ │ │ │ │ │ ├── TestPairs__factory.js.map │ │ │ │ │ │ ├── TestReenterCarbonPOL__factory.d.ts │ │ │ │ │ │ ├── TestReenterCarbonPOL__factory.d.ts.map │ │ │ │ │ │ ├── TestReenterCarbonPOL__factory.js │ │ │ │ │ │ ├── TestReenterCarbonPOL__factory.js.map │ │ │ │ │ │ ├── TestReenterCarbonVortex__factory.d.ts │ │ │ │ │ │ ├── TestReenterCarbonVortex__factory.d.ts.map │ │ │ │ │ │ ├── TestReenterCarbonVortex__factory.js │ │ │ │ │ │ ├── TestReenterCarbonVortex__factory.js.map │ │ │ │ │ │ ├── TestReentrantToken__factory.d.ts │ │ │ │ │ │ ├── TestReentrantToken__factory.d.ts.map │ │ │ │ │ │ ├── TestReentrantToken__factory.js │ │ │ │ │ │ ├── TestReentrantToken__factory.js.map │ │ │ │ │ │ ├── TestStrategies__factory.d.ts │ │ │ │ │ │ ├── TestStrategies__factory.d.ts.map │ │ │ │ │ │ ├── TestStrategies__factory.js │ │ │ │ │ │ ├── TestStrategies__factory.js.map │ │ │ │ │ │ ├── TestTokenType__factory.d.ts │ │ │ │ │ │ ├── TestTokenType__factory.d.ts.map │ │ │ │ │ │ ├── TestTokenType__factory.js │ │ │ │ │ │ ├── TestTokenType__factory.js.map │ │ │ │ │ │ ├── TestUpgradeable__factory.d.ts │ │ │ │ │ │ ├── TestUpgradeable__factory.d.ts.map │ │ │ │ │ │ ├── TestUpgradeable__factory.js │ │ │ │ │ │ ├── TestUpgradeable__factory.js.map │ │ │ │ │ │ ├── TestVault__factory.d.ts │ │ │ │ │ │ ├── TestVault__factory.d.ts.map │ │ │ │ │ │ ├── TestVault__factory.js │ │ │ │ │ │ ├── TestVault__factory.js.map │ │ │ │ │ │ ├── TestVoucher__factory.d.ts │ │ │ │ │ │ ├── TestVoucher__factory.d.ts.map │ │ │ │ │ │ ├── TestVoucher__factory.js │ │ │ │ │ │ ├── TestVoucher__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── pol │ │ │ │ │ │ ├── CarbonPOL__factory.d.ts │ │ │ │ │ │ ├── CarbonPOL__factory.d.ts.map │ │ │ │ │ │ ├── CarbonPOL__factory.js │ │ │ │ │ │ ├── CarbonPOL__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── ICarbonPOL__factory.d.ts │ │ │ │ │ │ │ ├── ICarbonPOL__factory.d.ts.map │ │ │ │ │ │ │ ├── ICarbonPOL__factory.js │ │ │ │ │ │ │ ├── ICarbonPOL__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── token │ │ │ │ │ │ ├── ERC20Burnable__factory.d.ts │ │ │ │ │ │ ├── ERC20Burnable__factory.d.ts.map │ │ │ │ │ │ ├── ERC20Burnable__factory.js │ │ │ │ │ │ ├── ERC20Burnable__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── IERC20Burnable__factory.d.ts │ │ │ │ │ │ │ ├── IERC20Burnable__factory.d.ts.map │ │ │ │ │ │ │ ├── IERC20Burnable__factory.js │ │ │ │ │ │ │ ├── IERC20Burnable__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── utility │ │ │ │ │ │ ├── MathEx__factory.d.ts │ │ │ │ │ │ ├── MathEx__factory.d.ts.map │ │ │ │ │ │ ├── MathEx__factory.js │ │ │ │ │ │ ├── MathEx__factory.js.map │ │ │ │ │ │ ├── OnlyProxyDelegate__factory.d.ts │ │ │ │ │ │ ├── OnlyProxyDelegate__factory.d.ts.map │ │ │ │ │ │ ├── OnlyProxyDelegate__factory.js │ │ │ │ │ │ ├── OnlyProxyDelegate__factory.js.map │ │ │ │ │ │ ├── Upgradeable__factory.d.ts │ │ │ │ │ │ ├── Upgradeable__factory.d.ts.map │ │ │ │ │ │ ├── Upgradeable__factory.js │ │ │ │ │ │ ├── Upgradeable__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── IUpgradeable__factory.d.ts │ │ │ │ │ │ │ ├── IUpgradeable__factory.d.ts.map │ │ │ │ │ │ │ ├── IUpgradeable__factory.js │ │ │ │ │ │ │ ├── IUpgradeable__factory.js.map │ │ │ │ │ │ │ ├── IVault__factory.d.ts │ │ │ │ │ │ │ ├── IVault__factory.d.ts.map │ │ │ │ │ │ │ ├── IVault__factory.js │ │ │ │ │ │ │ ├── IVault__factory.js.map │ │ │ │ │ │ │ ├── IVersioned__factory.d.ts │ │ │ │ │ │ │ ├── IVersioned__factory.d.ts.map │ │ │ │ │ │ │ ├── IVersioned__factory.js │ │ │ │ │ │ │ ├── IVersioned__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── vortex │ │ │ │ │ │ ├── CarbonVortex__factory.d.ts │ │ │ │ │ │ ├── CarbonVortex__factory.d.ts.map │ │ │ │ │ │ ├── CarbonVortex__factory.js │ │ │ │ │ │ ├── CarbonVortex__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── ICarbonVortex__factory.d.ts │ │ │ │ │ │ │ ├── ICarbonVortex__factory.d.ts.map │ │ │ │ │ │ │ ├── ICarbonVortex__factory.js │ │ │ │ │ │ │ ├── ICarbonVortex__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ └── voucher │ │ │ │ │ │ ├── Voucher__factory.d.ts │ │ │ │ │ │ ├── Voucher__factory.d.ts.map │ │ │ │ │ │ ├── Voucher__factory.js │ │ │ │ │ │ ├── Voucher__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── IVoucher__factory.d.ts │ │ │ │ │ │ ├── IVoucher__factory.d.ts.map │ │ │ │ │ │ ├── IVoucher__factory.js │ │ │ │ │ │ ├── IVoucher__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── hardhat-deploy │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── solc_0.8 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── openzeppelin │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.d.ts │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.d.ts.map │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.js │ │ │ │ │ │ │ │ ├── IERC1822Proxiable__factory.js.map │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ └── proxy │ │ │ │ │ │ │ ├── ERC1967 │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.d.ts │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.d.ts.map │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.js │ │ │ │ │ │ │ ├── ERC1967Proxy__factory.js.map │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.d.ts │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.d.ts.map │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.js │ │ │ │ │ │ │ ├── ERC1967Upgrade__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── Proxy__factory.d.ts │ │ │ │ │ │ │ ├── Proxy__factory.d.ts.map │ │ │ │ │ │ │ ├── Proxy__factory.js │ │ │ │ │ │ │ ├── Proxy__factory.js.map │ │ │ │ │ │ │ ├── beacon │ │ │ │ │ │ │ ├── IBeacon__factory.d.ts │ │ │ │ │ │ │ ├── IBeacon__factory.d.ts.map │ │ │ │ │ │ │ ├── IBeacon__factory.js │ │ │ │ │ │ │ ├── IBeacon__factory.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ └── proxy │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy__factory.d.ts │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy__factory.d.ts.map │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy__factory.js │ │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy__factory.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── hardhat-deploy │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── solc_0.8 │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── openzeppelin │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ │ │ ├── IERC1822Proxiable.d.ts │ │ │ │ │ │ │ ├── IERC1822Proxiable.d.ts.map │ │ │ │ │ │ │ ├── IERC1822Proxiable.js │ │ │ │ │ │ │ ├── IERC1822Proxiable.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ └── proxy │ │ │ │ │ │ ├── ERC1967 │ │ │ │ │ │ ├── ERC1967Proxy.d.ts │ │ │ │ │ │ ├── ERC1967Proxy.d.ts.map │ │ │ │ │ │ ├── ERC1967Proxy.js │ │ │ │ │ │ ├── ERC1967Proxy.js.map │ │ │ │ │ │ ├── ERC1967Upgrade.d.ts │ │ │ │ │ │ ├── ERC1967Upgrade.d.ts.map │ │ │ │ │ │ ├── ERC1967Upgrade.js │ │ │ │ │ │ ├── ERC1967Upgrade.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── Proxy.d.ts │ │ │ │ │ │ ├── Proxy.d.ts.map │ │ │ │ │ │ ├── Proxy.js │ │ │ │ │ │ ├── Proxy.js.map │ │ │ │ │ │ ├── beacon │ │ │ │ │ │ ├── IBeacon.d.ts │ │ │ │ │ │ ├── IBeacon.d.ts.map │ │ │ │ │ │ ├── IBeacon.js │ │ │ │ │ │ ├── IBeacon.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ └── proxy │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy.d.ts │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy.d.ts.map │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy.js │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxy.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ └── utils │ │ │ ├── Constants.d.ts │ │ │ ├── Constants.d.ts.map │ │ │ ├── Constants.js │ │ │ ├── Constants.js.map │ │ │ ├── Deploy.d.ts │ │ │ ├── Deploy.d.ts.map │ │ │ ├── Deploy.js │ │ │ ├── Deploy.js.map │ │ │ ├── Logger.d.ts │ │ │ ├── Logger.d.ts.map │ │ │ ├── Logger.js │ │ │ ├── Logger.js.map │ │ │ ├── Permit.d.ts │ │ │ ├── Permit.d.ts.map │ │ │ ├── Permit.js │ │ │ ├── Permit.js.map │ │ │ ├── Roles.d.ts │ │ │ ├── Roles.d.ts.map │ │ │ ├── Roles.js │ │ │ ├── Roles.js.map │ │ │ ├── Time.d.ts │ │ │ ├── Time.d.ts.map │ │ │ ├── Time.js │ │ │ ├── Time.js.map │ │ │ ├── TokenData.d.ts │ │ │ ├── TokenData.d.ts.map │ │ │ ├── TokenData.js │ │ │ ├── TokenData.js.map │ │ │ ├── Types.d.ts │ │ │ ├── Types.d.ts.map │ │ │ ├── Types.js │ │ │ ├── Types.js.map │ │ │ ├── chainIds.json │ │ │ └── rpcUrls.json │ ├── foundry.toml │ ├── script │ │ └── TokenHandler.s.sol │ ├── src │ │ └── TokenHandler.sol │ └── typechain-types │ │ ├── @openzeppelin │ │ ├── contracts-upgradeable │ │ │ ├── access │ │ │ │ ├── AccessControlEnumerableUpgradeable.ts │ │ │ │ ├── AccessControlUpgradeable.ts │ │ │ │ ├── IAccessControlEnumerableUpgradeable.ts │ │ │ │ ├── IAccessControlUpgradeable.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── proxy │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── Initializable.ts │ │ │ │ │ └── index.ts │ │ │ ├── security │ │ │ │ ├── ReentrancyGuardUpgradeable.ts │ │ │ │ └── index.ts │ │ │ ├── token │ │ │ │ ├── ERC721 │ │ │ │ │ ├── ERC721Upgradeable.ts │ │ │ │ │ ├── IERC721ReceiverUpgradeable.ts │ │ │ │ │ ├── IERC721Upgradeable.ts │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── IERC721MetadataUpgradeable.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ ├── ContextUpgradeable.ts │ │ │ │ ├── index.ts │ │ │ │ └── introspection │ │ │ │ ├── ERC165Upgradeable.ts │ │ │ │ ├── IERC165Upgradeable.ts │ │ │ │ └── index.ts │ │ ├── contracts │ │ │ ├── access │ │ │ │ ├── AccessControl.ts │ │ │ │ ├── AccessControlEnumerable.ts │ │ │ │ ├── IAccessControl.ts │ │ │ │ ├── IAccessControlEnumerable.ts │ │ │ │ ├── Ownable.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ ├── IERC1967.ts │ │ │ │ ├── IERC5267.ts │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ ├── IERC1822Proxiable.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── proxy │ │ │ │ ├── ERC1967 │ │ │ │ │ ├── ERC1967Proxy.ts │ │ │ │ │ ├── ERC1967Upgrade.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Proxy.ts │ │ │ │ ├── beacon │ │ │ │ │ ├── IBeacon.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── transparent │ │ │ │ │ ├── ProxyAdmin.ts │ │ │ │ │ ├── TransparentUpgradeableProxy.sol │ │ │ │ │ ├── ITransparentUpgradeableProxy.ts │ │ │ │ │ ├── TransparentUpgradeableProxy.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ ├── token │ │ │ │ ├── ERC20 │ │ │ │ │ ├── ERC20.ts │ │ │ │ │ ├── IERC20.ts │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── ERC20Permit.ts │ │ │ │ │ │ ├── IERC20Metadata.ts │ │ │ │ │ │ ├── IERC20Permit.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ ├── ShortStrings.ts │ │ │ │ ├── cryptography │ │ │ │ ├── EIP712.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── introspection │ │ │ │ ├── ERC165.ts │ │ │ │ ├── IERC165.ts │ │ │ │ └── index.ts │ │ └── index.ts │ │ ├── common.ts │ │ ├── contracts │ │ ├── carbon │ │ │ ├── CarbonController.ts │ │ │ ├── Pairs.ts │ │ │ ├── Strategies.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── ICarbonController.ts │ │ │ │ └── index.ts │ │ ├── helpers │ │ │ ├── DummyProxy.sol │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess.ts │ │ │ │ ├── ProxyAdminAccess.ts │ │ │ │ └── index.ts │ │ │ ├── MockBancorNetworkV3.ts │ │ │ ├── TestBNT.ts │ │ │ ├── TestCarbonController.ts │ │ │ ├── TestERC20Burnable.ts │ │ │ ├── TestERC20FeeOnTransfer.ts │ │ │ ├── TestERC20Token.ts │ │ │ ├── TestExpDecayMath.ts │ │ │ ├── TestLogic.ts │ │ │ ├── TestMathEx.ts │ │ │ ├── TestOnlyProxyDelegate.ts │ │ │ ├── TestPairs.ts │ │ │ ├── TestReenterCarbonPOL.ts │ │ │ ├── TestReenterCarbonVortex.ts │ │ │ ├── TestReentrantToken.ts │ │ │ ├── TestStrategies.ts │ │ │ ├── TestTokenType.ts │ │ │ ├── TestUpgradeable.ts │ │ │ ├── TestVault.ts │ │ │ ├── TestVoucher.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── pol │ │ │ ├── CarbonPOL.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── ICarbonPOL.ts │ │ │ │ └── index.ts │ │ ├── token │ │ │ ├── ERC20Burnable.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── IERC20Burnable.ts │ │ │ │ └── index.ts │ │ ├── utility │ │ │ ├── MathEx.ts │ │ │ ├── OnlyProxyDelegate.ts │ │ │ ├── Upgradeable.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── IUpgradeable.ts │ │ │ │ ├── IVault.ts │ │ │ │ ├── IVersioned.ts │ │ │ │ └── index.ts │ │ ├── vortex │ │ │ ├── CarbonVortex.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── ICarbonVortex.ts │ │ │ │ └── index.ts │ │ └── voucher │ │ │ ├── Voucher.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ ├── IVoucher.ts │ │ │ └── index.ts │ │ ├── factories │ │ ├── @openzeppelin │ │ │ ├── contracts-upgradeable │ │ │ │ ├── access │ │ │ │ │ ├── AccessControlEnumerableUpgradeable__factory.ts │ │ │ │ │ ├── AccessControlUpgradeable__factory.ts │ │ │ │ │ ├── IAccessControlEnumerableUpgradeable__factory.ts │ │ │ │ │ ├── IAccessControlUpgradeable__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── proxy │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── Initializable__factory.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── security │ │ │ │ │ ├── ReentrancyGuardUpgradeable__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── token │ │ │ │ │ ├── ERC721 │ │ │ │ │ │ ├── ERC721Upgradeable__factory.ts │ │ │ │ │ │ ├── IERC721ReceiverUpgradeable__factory.ts │ │ │ │ │ │ ├── IERC721Upgradeable__factory.ts │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ ├── IERC721MetadataUpgradeable__factory.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── ContextUpgradeable__factory.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── introspection │ │ │ │ │ ├── ERC165Upgradeable__factory.ts │ │ │ │ │ ├── IERC165Upgradeable__factory.ts │ │ │ │ │ └── index.ts │ │ │ ├── contracts │ │ │ │ ├── access │ │ │ │ │ ├── AccessControlEnumerable__factory.ts │ │ │ │ │ ├── AccessControl__factory.ts │ │ │ │ │ ├── IAccessControlEnumerable__factory.ts │ │ │ │ │ ├── IAccessControl__factory.ts │ │ │ │ │ ├── Ownable__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── IERC1967__factory.ts │ │ │ │ │ ├── IERC5267__factory.ts │ │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ │ ├── IERC1822Proxiable__factory.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── proxy │ │ │ │ │ ├── ERC1967 │ │ │ │ │ │ ├── ERC1967Proxy__factory.ts │ │ │ │ │ │ ├── ERC1967Upgrade__factory.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Proxy__factory.ts │ │ │ │ │ ├── beacon │ │ │ │ │ │ ├── IBeacon__factory.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── transparent │ │ │ │ │ │ ├── ProxyAdmin__factory.ts │ │ │ │ │ │ ├── TransparentUpgradeableProxy.sol │ │ │ │ │ │ ├── ITransparentUpgradeableProxy__factory.ts │ │ │ │ │ │ ├── TransparentUpgradeableProxy__factory.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── token │ │ │ │ │ ├── ERC20 │ │ │ │ │ │ ├── ERC20__factory.ts │ │ │ │ │ │ ├── IERC20__factory.ts │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ ├── ERC20Permit__factory.ts │ │ │ │ │ │ │ ├── IERC20Metadata__factory.ts │ │ │ │ │ │ │ ├── IERC20Permit__factory.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── ShortStrings__factory.ts │ │ │ │ │ ├── cryptography │ │ │ │ │ ├── EIP712__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── introspection │ │ │ │ │ ├── ERC165__factory.ts │ │ │ │ │ ├── IERC165__factory.ts │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── contracts │ │ │ ├── carbon │ │ │ │ ├── CarbonController__factory.ts │ │ │ │ ├── Pairs__factory.ts │ │ │ │ ├── Strategies__factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces │ │ │ │ │ ├── ICarbonController__factory.ts │ │ │ │ │ └── index.ts │ │ │ ├── helpers │ │ │ │ ├── DummyProxy.sol │ │ │ │ │ ├── OptimizedTransparentUpgradeableProxyAccess__factory.ts │ │ │ │ │ ├── ProxyAdminAccess__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── MockBancorNetworkV3__factory.ts │ │ │ │ ├── TestBNT__factory.ts │ │ │ │ ├── TestCarbonController__factory.ts │ │ │ │ ├── TestERC20Burnable__factory.ts │ │ │ │ ├── TestERC20FeeOnTransfer__factory.ts │ │ │ │ ├── TestERC20Token__factory.ts │ │ │ │ ├── TestExpDecayMath__factory.ts │ │ │ │ ├── TestLogic__factory.ts │ │ │ │ ├── TestMathEx__factory.ts │ │ │ │ ├── TestOnlyProxyDelegate__factory.ts │ │ │ │ ├── TestPairs__factory.ts │ │ │ │ ├── TestReenterCarbonPOL__factory.ts │ │ │ │ ├── TestReenterCarbonVortex__factory.ts │ │ │ │ ├── TestReentrantToken__factory.ts │ │ │ │ ├── TestStrategies__factory.ts │ │ │ │ ├── TestTokenType__factory.ts │ │ │ │ ├── TestUpgradeable__factory.ts │ │ │ │ ├── TestVault__factory.ts │ │ │ │ ├── TestVoucher__factory.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── pol │ │ │ │ ├── CarbonPOL__factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces │ │ │ │ │ ├── ICarbonPOL__factory.ts │ │ │ │ │ └── index.ts │ │ │ ├── token │ │ │ │ ├── ERC20Burnable__factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces │ │ │ │ │ ├── IERC20Burnable__factory.ts │ │ │ │ │ └── index.ts │ │ │ ├── utility │ │ │ │ ├── MathEx__factory.ts │ │ │ │ ├── OnlyProxyDelegate__factory.ts │ │ │ │ ├── Upgradeable__factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces │ │ │ │ │ ├── IUpgradeable__factory.ts │ │ │ │ │ ├── IVault__factory.ts │ │ │ │ │ ├── IVersioned__factory.ts │ │ │ │ │ └── index.ts │ │ │ ├── vortex │ │ │ │ ├── CarbonVortex__factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces │ │ │ │ │ ├── ICarbonVortex__factory.ts │ │ │ │ │ └── index.ts │ │ │ └── voucher │ │ │ │ ├── Voucher__factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces │ │ │ │ ├── IVoucher__factory.ts │ │ │ │ └── index.ts │ │ ├── hardhat-deploy │ │ │ ├── index.ts │ │ │ └── solc_0.8 │ │ │ │ ├── index.ts │ │ │ │ ├── openzeppelin │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ │ ├── IERC1822Proxiable__factory.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── proxy │ │ │ │ │ ├── ERC1967 │ │ │ │ │ ├── ERC1967Proxy__factory.ts │ │ │ │ │ ├── ERC1967Upgrade__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Proxy__factory.ts │ │ │ │ │ ├── beacon │ │ │ │ │ ├── IBeacon__factory.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── proxy │ │ │ │ ├── OptimizedTransparentUpgradeableProxy__factory.ts │ │ │ │ └── index.ts │ │ └── index.ts │ │ ├── hardhat-deploy │ │ ├── index.ts │ │ └── solc_0.8 │ │ │ ├── index.ts │ │ │ ├── openzeppelin │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ ├── draft-IERC1822.sol │ │ │ │ │ ├── IERC1822Proxiable.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── proxy │ │ │ │ ├── ERC1967 │ │ │ │ ├── ERC1967Proxy.ts │ │ │ │ ├── ERC1967Upgrade.ts │ │ │ │ └── index.ts │ │ │ │ ├── Proxy.ts │ │ │ │ ├── beacon │ │ │ │ ├── IBeacon.ts │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── proxy │ │ │ ├── OptimizedTransparentUpgradeableProxy.ts │ │ │ └── index.ts │ │ └── index.ts ├── Beanstalk │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── Beanstalk.s.sol │ └── src │ │ └── Beanstalk.sol ├── BeautyChain │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── bectoken.s.sol │ └── src │ │ └── bectoken.sol ├── Dao │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── Dao.s.sol │ └── src │ │ └── Dao.sol ├── Dodo │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── Dodo.sol │ └── src │ │ └── Dodo.sol ├── EulerFinance │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── EToken.s.sol │ └── src │ │ ├── Base.sol │ │ ├── BaseIRM.sol │ │ ├── BaseLogic.sol │ │ ├── BaseModule.sol │ │ ├── Constants.sol │ │ ├── EToken.sol │ │ ├── Events.sol │ │ ├── IRiskManager.sol │ │ ├── Interfaces.sol │ │ ├── Proxy.sol │ │ ├── RPow.sol │ │ ├── Storage.sol │ │ └── Utils.sol ├── GYMNetwork │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── GYMNetwork.s.sol │ └── src │ │ └── GYMNetwork.sol ├── LIFI │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── remappings.txt │ ├── script │ │ └── LIFI.s.sol │ └── src │ │ └── LIFI.sol ├── Melo │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── melo.s.sol │ └── src │ │ └── melo.sol ├── Meter │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── Meter.s.sol │ └── src │ │ └── Meter.sol ├── MuBank │ ├── AccessControlUpgradeable.sol │ ├── AccountMigrationLibrary.sol │ ├── AdminRole.sol │ ├── CollateralManagement.sol │ ├── Constants.sol │ ├── ERC165Checker.sol │ ├── EmptyMockContract.sol │ ├── FETH.sol │ ├── FETHMarketMock.sol │ ├── FNDNFTMarket.sol │ ├── FoundationTreasury.sol │ ├── FoundationTreasuryNode.sol │ ├── IAdminRole.sol │ ├── IFethMarket.sol │ ├── IGetFees.sol │ ├── IGetRoyalties.sol │ ├── IOperatorRole.sol │ ├── IOwnable.sol │ ├── IRoyaltyInfo.sol │ ├── ISendValueWithFallbackWithdraw.sol │ ├── ITokenCreator.sol │ ├── LockedBalance.sol │ ├── MockNFT.sol │ ├── NFTMarketAuction.sol │ ├── NFTMarketBuyPrice.sol │ ├── NFTMarketCore.sol │ ├── NFTMarketCreators.sol │ ├── NFTMarketFees.sol │ ├── NFTMarketOffer.sol │ ├── NFTMarketPrivateSale.sol │ ├── NFTMarketReserveAuction.sol │ ├── OperatorRole.sol │ ├── SendValueWithFallbackWithdraw.sol │ └── WithdrawFromEscrow.sol ├── NXUSD │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── Oracle.s.sol │ └── src │ │ ├── IOracle.sol │ │ └── JLPWAVAXUSDCOracle.sol ├── NooddleFiance │ └── contract.sol ├── ark │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── .gitmodules │ ├── README.md │ ├── foundry.toml │ ├── lib │ │ └── forge-std │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── ci.yml │ │ │ │ └── sync.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE-APACHE │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── foundry.toml │ │ │ ├── package.json │ │ │ ├── scripts │ │ │ └── vm.py │ │ │ ├── src │ │ │ ├── Base.sol │ │ │ ├── Script.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ │ ├── IERC1155.sol │ │ │ │ ├── IERC165.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── IERC4626.sol │ │ │ │ ├── IERC721.sol │ │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ │ │ └── test │ │ │ ├── StdAssertions.t.sol │ │ │ ├── StdChains.t.sol │ │ │ ├── StdCheats.t.sol │ │ │ ├── StdError.t.sol │ │ │ ├── StdJson.t.sol │ │ │ ├── StdMath.t.sol │ │ │ ├── StdStorage.t.sol │ │ │ ├── StdStyle.t.sol │ │ │ ├── StdToml.t.sol │ │ │ ├── StdUtils.t.sol │ │ │ ├── Vm.t.sol │ │ │ ├── compilation │ │ │ ├── CompilationScript.sol │ │ │ ├── CompilationScriptBase.sol │ │ │ ├── CompilationTest.sol │ │ │ └── CompilationTestBase.sol │ │ │ ├── fixtures │ │ │ ├── broadcast.log.json │ │ │ ├── test.json │ │ │ └── test.toml │ │ │ └── mocks │ │ │ ├── MockERC20.t.sol │ │ │ └── MockERC721.t.sol │ ├── script │ │ └── ARK.s.sol │ └── src │ │ ├── ARK.sol │ │ ├── LP.sol │ │ ├── Setup.sol │ │ ├── UniswapV2ERC20.sol │ │ ├── interfaces │ │ ├── CheatCodes.sol │ │ ├── IERC20.sol │ │ ├── IUniswapV2Callee.sol │ │ ├── IUniswapV2ERC20.sol │ │ ├── IUniswapV2Factory.sol │ │ ├── IUniswapV2Pair.sol │ │ ├── IUniswapV2Router.sol │ │ ├── IUniswapV2Router01.sol │ │ └── IWETH.sol │ │ └── libraries │ │ ├── Math.sol │ │ ├── TransferHelper.sol │ │ ├── UQ112x112.sol │ │ └── UniswapV2Library.sol ├── bego │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── Bego.s.sol │ └── src │ │ └── Bego.sol ├── dfx │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── remappings.txt │ ├── script │ │ └── Counter.s.sol │ └── src │ │ ├── ABDKMath64x64.sol │ │ ├── ABDKMathQuad.sol │ │ ├── Assimilators.sol │ │ ├── Curve.sol │ │ ├── CurveMath.sol │ │ ├── IAssimilator.sol │ │ ├── IFreeFromUpTo.sol │ │ ├── IOracle.sol │ │ ├── MerkleProver.sol │ │ ├── Orchestrator.sol │ │ ├── ProportionalLiquidity.sol │ │ ├── Storage.sol │ │ ├── Swaps.sol │ │ ├── UnsafeMath64x64.sol │ │ ├── ViewLiquidity.sol │ │ └── Zap.sol ├── elasticSwap │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── remappings.txt │ ├── script │ │ └── Exchange.s.sol │ └── src │ │ ├── ElasticMock.sol │ │ ├── Exchange.sol │ │ ├── ExchangeFactory.sol │ │ ├── FeeOnTransferMock.sol │ │ ├── IExchangeFactory.sol │ │ └── MathLib.sol ├── hundredFinance │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── CErc20.s.sol │ └── src │ │ ├── CErc20.sol │ │ ├── CToken.sol │ │ ├── CTokenInterfaces.sol │ │ ├── ComptrollerInterface.sol │ │ ├── EIP20Interface.sol │ │ ├── EIP20NonStandardInterface.sol │ │ ├── ErrorReporter.sol │ │ ├── ExponentialNoError.sol │ │ └── InterestRateModel.sol ├── monoSwap │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── remappings.txt │ ├── script │ │ └── Monoswap.s.sol │ └── src │ │ ├── IMonoXPool.sol │ │ ├── IWETH.sol │ │ ├── MonoXLibrary.sol │ │ └── Monoswap.sol └── sherlockYields │ ├── .github │ └── workflows │ │ └── test.yml │ ├── .gitignore │ ├── README.md │ ├── foundry.toml │ ├── script │ └── Swap.s.sol │ └── src │ ├── Base.sol │ ├── BaseIRM.sol │ ├── BaseLogic.sol │ ├── BaseModule.sol │ ├── Constants.sol │ ├── Events.sol │ ├── IRiskManager.sol │ ├── ISwapRouter.sol │ ├── IUniswapV3SwapCallback.sol │ ├── Interfaces.sol │ ├── Proxy.sol │ ├── RPow.sol │ ├── Storage.sol │ ├── Swap.sol │ └── Utils.sol ├── package.json ├── pnpm-lock.yaml ├── results ├── ARK.sol:AbsToken_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ ├── ARK.s.sol │ │ ├── Counter.s.sol │ │ └── src_ARK_Invaraint.sol │ └── src │ │ ├── ARK.sol │ │ ├── LP.sol │ │ ├── Setup.sol │ │ ├── UniswapV2ERC20.sol │ │ ├── interfaces │ │ ├── CheatCodes.sol │ │ ├── IERC20.sol │ │ ├── IUniswapV2Callee.sol │ │ ├── IUniswapV2ERC20.sol │ │ ├── IUniswapV2Factory.sol │ │ ├── IUniswapV2Pair.sol │ │ ├── IUniswapV2Router.sol │ │ ├── IUniswapV2Router01.sol │ │ └── IWETH.sol │ │ └── libraries │ │ ├── Math.sol │ │ ├── TransferHelper.sol │ │ ├── UQ112x112.sol │ │ └── UniswapV2Library.sol ├── AnyswapV4CallProxy.sol:AnyCallProxy_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ ├── src_AnyswapV4CallProxy_Invaraint.sol │ │ └── test.sol │ └── src │ │ └── AnyswapV4CallProxy.sol ├── AnyswapV4Router.sol:AnyswapV4Router_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── test.sol │ └── src │ │ └── AnyswapV4Router.sol ├── BGLD.sol:BlackGold_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── BGLD.s.sol │ └── src │ │ └── BGLD.sol ├── Beanstalk.sol:GovernanceFacet_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Dao.s.sol │ └── src │ │ └── Dao.sol ├── Bego.sol:BGeoToken_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── Script.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Bego.s.sol │ └── src │ │ └── Bego.sol ├── CErc20.sol:CErc20_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── CErc20.s.sol │ └── src │ │ ├── CErc20.sol │ │ ├── CToken.sol │ │ ├── CTokenInterfaces.sol │ │ ├── ComptrollerInterface.sol │ │ ├── EIP20Interface.sol │ │ ├── EIP20NonStandardInterface.sol │ │ ├── ErrorReporter.sol │ │ ├── ExponentialNoError.sol │ │ └── InterestRateModel.sol ├── Curve.sol:Curve_output │ ├── lib │ │ ├── forge-std │ │ │ └── src │ │ │ │ ├── Base.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdToml.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IERC165.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── IERC721.sol │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ └── openzeppelin-contracts │ │ │ └── contracts │ │ │ ├── cryptography │ │ │ └── MerkleProof.sol │ │ │ ├── math │ │ │ └── SafeMath.sol │ │ │ ├── token │ │ │ └── ERC20 │ │ │ │ ├── ERC20.sol │ │ │ │ ├── IERC20.sol │ │ │ │ └── SafeERC20.sol │ │ │ └── utils │ │ │ ├── Address.sol │ │ │ └── Context.sol │ ├── remappings.txt │ ├── script │ │ └── Counter.s.sol │ └── src │ │ ├── ABDKMath64x64.sol │ │ ├── ABDKMathQuad.sol │ │ ├── Assimilators.sol │ │ ├── Curve.sol │ │ ├── CurveMath.sol │ │ ├── IAssimilator.sol │ │ ├── IFreeFromUpTo.sol │ │ ├── IOracle.sol │ │ ├── MerkleProver.sol │ │ ├── Orchestrator.sol │ │ ├── ProportionalLiquidity.sol │ │ ├── Storage.sol │ │ ├── Swaps.sol │ │ ├── UnsafeMath64x64.sol │ │ ├── ViewLiquidity.sol │ │ └── Zap.sol ├── Dao.sol:GovernanceFacet_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Dao.s.sol │ └── src │ │ └── Dao.sol ├── Dodo.sol:DVM_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Dodo.sol │ └── src │ │ └── Dodo.sol ├── Exchange.sol:Exchange_output │ ├── lib │ │ ├── forge-std │ │ │ └── src │ │ │ │ ├── Base.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdToml.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IERC165.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── IERC721.sol │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ └── openzeppelin-contracts │ │ │ └── contracts │ │ │ ├── access │ │ │ └── Ownable.sol │ │ │ ├── security │ │ │ └── ReentrancyGuard.sol │ │ │ ├── token │ │ │ └── ERC20 │ │ │ │ ├── ERC20.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── extensions │ │ │ │ ├── ERC20Burnable.sol │ │ │ │ ├── IERC20Metadata.sol │ │ │ │ └── IERC20Permit.sol │ │ │ │ ├── presets │ │ │ │ └── ERC20PresetFixedSupply.sol │ │ │ │ └── utils │ │ │ │ └── SafeERC20.sol │ │ │ └── utils │ │ │ ├── Address.sol │ │ │ └── Context.sol │ ├── remappings.txt │ ├── script │ │ └── Exchange.s.sol │ └── src │ │ ├── ElasticMock.sol │ │ ├── Exchange.sol │ │ ├── ExchangeFactory.sol │ │ ├── FeeOnTransferMock.sol │ │ ├── IExchangeFactory.sol │ │ └── MathLib.sol ├── GYMNetwork.sol:GymSinglePool_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── GYMNetwork.s.sol │ └── src │ │ └── GYMNetwork.sol ├── JLPWAVAXUSDCOracle.sol:JLPWAVAXUSDCOracle_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Oracle.s.sol │ └── src │ │ ├── IOracle.sol │ │ └── JLPWAVAXUSDCOracle.sol ├── LIFI.sol:LibSwap_output │ ├── lib │ │ ├── forge-std │ │ │ └── src │ │ │ │ ├── Base.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdToml.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IERC165.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── IERC721.sol │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ └── openzeppelin-contracts │ │ │ └── contracts │ │ │ ├── token │ │ │ └── ERC20 │ │ │ │ ├── ERC20.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── extensions │ │ │ │ └── IERC20Metadata.sol │ │ │ │ └── utils │ │ │ │ └── SafeERC20.sol │ │ │ └── utils │ │ │ ├── Address.sol │ │ │ └── Context.sol │ ├── remappings.txt │ ├── script │ │ └── LIFI.s.sol │ └── src │ │ └── LIFI.sol ├── Meter.sol:Bridge_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Meter.s.sol │ └── src │ │ └── Meter.sol ├── Migrations.sol:Migrations_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Migrations.s.sol │ └── src │ │ └── Migrations.sol ├── Monoswap.sol:Monoswap_output │ ├── lib │ │ ├── forge-std │ │ │ └── src │ │ │ │ ├── Base.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdToml.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IERC165.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── IERC721.sol │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ ├── openzeppelin-contracts-upgradeable │ │ │ └── contracts │ │ │ │ ├── access │ │ │ │ └── OwnableUpgradeable.sol │ │ │ │ ├── proxy │ │ │ │ └── Initializable.sol │ │ │ │ └── utils │ │ │ │ ├── AddressUpgradeable.sol │ │ │ │ └── ContextUpgradeable.sol │ │ └── openzeppelin-contracts │ │ │ └── contracts │ │ │ ├── introspection │ │ │ ├── ERC165.sol │ │ │ └── IERC165.sol │ │ │ ├── math │ │ │ └── SafeMath.sol │ │ │ ├── token │ │ │ ├── ERC1155 │ │ │ │ ├── ERC1155.sol │ │ │ │ ├── IERC1155.sol │ │ │ │ ├── IERC1155MetadataURI.sol │ │ │ │ └── IERC1155Receiver.sol │ │ │ └── ERC20 │ │ │ │ ├── IERC20.sol │ │ │ │ └── SafeERC20.sol │ │ │ └── utils │ │ │ ├── Address.sol │ │ │ └── Context.sol │ ├── remappings.txt │ ├── script │ │ └── Monoswap.s.sol │ └── src │ │ ├── IMonoXPool.sol │ │ ├── IWETH.sol │ │ ├── MonoXLibrary.sol │ │ └── Monoswap.sol ├── Swap.sol:Swap_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── Swap.s.sol │ └── src │ │ ├── Base.sol │ │ ├── BaseIRM.sol │ │ ├── BaseLogic.sol │ │ ├── BaseModule.sol │ │ ├── Constants.sol │ │ ├── Events.sol │ │ ├── IRiskManager.sol │ │ ├── ISwapRouter.sol │ │ ├── IUniswapV3SwapCallback.sol │ │ ├── Interfaces.sol │ │ ├── Proxy.sol │ │ ├── RPow.sol │ │ ├── Storage.sol │ │ ├── Swap.sol │ │ └── Utils.sol ├── TokenHandler.sol:TokenHandler_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── TokenHandler.s.sol │ └── src │ │ └── TokenHandler.sol ├── bectoken.sol:BecToken_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── bectoken.s.sol │ └── src │ │ └── bectoken.sol ├── bectoken.sol:PausableToken_output │ ├── lib │ │ └── forge-std │ │ │ └── src │ │ │ ├── Base.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdInvariant.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdStyle.sol │ │ │ ├── StdToml.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ ├── interfaces │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC721.sol │ │ │ └── IMulticall3.sol │ │ │ ├── mocks │ │ │ ├── MockERC20.sol │ │ │ └── MockERC721.sol │ │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ │ └── bectoken.s.sol │ └── src │ │ └── bectoken.sol └── melo.sol:cERC20_output │ ├── lib │ └── forge-std │ │ └── src │ │ ├── Base.sol │ │ ├── StdAssertions.sol │ │ ├── StdChains.sol │ │ ├── StdCheats.sol │ │ ├── StdError.sol │ │ ├── StdInvariant.sol │ │ ├── StdJson.sol │ │ ├── StdMath.sol │ │ ├── StdStorage.sol │ │ ├── StdStyle.sol │ │ ├── StdToml.sol │ │ ├── StdUtils.sol │ │ ├── Test.sol │ │ ├── Vm.sol │ │ ├── console.sol │ │ ├── console2.sol │ │ ├── interfaces │ │ ├── IERC165.sol │ │ ├── IERC20.sol │ │ ├── IERC721.sol │ │ └── IMulticall3.sol │ │ ├── mocks │ │ ├── MockERC20.sol │ │ └── MockERC721.sol │ │ └── safeconsole.sol │ ├── remappings.txt │ ├── script │ └── melo.s.sol │ └── src │ └── melo.sol ├── setup.sh ├── src ├── ast.ts ├── compiler.ts ├── helpers │ ├── forge.ts │ └── hardhat.ts ├── index.ts ├── openaiWrapper.ts ├── utils.ts └── weaviate_ingest.ts ├── tsconfig.json └── weaviate └── docker-compose.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts/" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/README.md -------------------------------------------------------------------------------- /examples/AnySwap/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/AnySwap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/.gitignore -------------------------------------------------------------------------------- /examples/AnySwap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/README.md -------------------------------------------------------------------------------- /examples/AnySwap/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/foundry.toml -------------------------------------------------------------------------------- /examples/AnySwap/script/Migrations.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/script/Migrations.s.sol -------------------------------------------------------------------------------- /examples/AnySwap/script/test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/script/test.sol -------------------------------------------------------------------------------- /examples/AnySwap/src/AnyswapV4CallProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/src/AnyswapV4CallProxy.sol -------------------------------------------------------------------------------- /examples/AnySwap/src/AnyswapV4Router.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/src/AnyswapV4Router.sol -------------------------------------------------------------------------------- /examples/AnySwap/src/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/AnySwap/src/Migrations.sol -------------------------------------------------------------------------------- /examples/BGLD/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BGLD/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/BGLD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BGLD/.gitignore -------------------------------------------------------------------------------- /examples/BGLD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BGLD/README.md -------------------------------------------------------------------------------- /examples/BGLD/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BGLD/foundry.toml -------------------------------------------------------------------------------- /examples/BGLD/script/BGLD.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BGLD/script/BGLD.s.sol -------------------------------------------------------------------------------- /examples/BGLD/src/BGLD.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BGLD/src/BGLD.sol -------------------------------------------------------------------------------- /examples/Bacon/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Bacon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/.gitignore -------------------------------------------------------------------------------- /examples/Bacon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/README.md -------------------------------------------------------------------------------- /examples/Bacon/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/foundry.toml -------------------------------------------------------------------------------- /examples/Bacon/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/remappings.txt -------------------------------------------------------------------------------- /examples/Bacon/script/VestingVault.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/script/VestingVault.s.sol -------------------------------------------------------------------------------- /examples/Bacon/src/BaconToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/src/BaconToken.sol -------------------------------------------------------------------------------- /examples/Bacon/src/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/src/Migrations.sol -------------------------------------------------------------------------------- /examples/Bacon/src/VestingVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bacon/src/VestingVault.sol -------------------------------------------------------------------------------- /examples/Bancor/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Bancor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/.gitignore -------------------------------------------------------------------------------- /examples/Bancor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/README.md -------------------------------------------------------------------------------- /examples/Bancor/artifacts/contracts/carbon/Pairs.sol/Pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/artifacts/contracts/carbon/Pairs.sol/Pairs.json -------------------------------------------------------------------------------- /examples/Bancor/cache_forge/solidity-files-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/cache_forge/solidity-files-cache.json -------------------------------------------------------------------------------- /examples/Bancor/dist/components/ContractBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/ContractBuilder.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/components/ContractBuilder.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/ContractBuilder.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/components/ContractBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/ContractBuilder.js -------------------------------------------------------------------------------- /examples/Bancor/dist/components/ContractBuilder.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/ContractBuilder.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/components/Contracts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/Contracts.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/components/Contracts.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/Contracts.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/components/Contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/Contracts.js -------------------------------------------------------------------------------- /examples/Bancor/dist/components/Contracts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/components/Contracts.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/data/named-accounts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/data/named-accounts.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/data/named-accounts.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/data/named-accounts.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/data/named-accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/data/named-accounts.js -------------------------------------------------------------------------------- /examples/Bancor/dist/data/named-accounts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/data/named-accounts.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0001-ProxyAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0001-ProxyAdmin.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0002-Voucher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0002-Voucher.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0002-Voucher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0002-Voucher.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0002-Voucher.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0002-Voucher.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0008-CarbonPOL.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0008-CarbonPOL.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0008-CarbonPOL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0008-CarbonPOL.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/mainnet/0014-ProxyAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/mainnet/0014-ProxyAdmin.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/network/0001-ProxyAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/network/0001-ProxyAdmin.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/network/0002-Voucher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/network/0002-Voucher.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/network/0002-Voucher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/network/0002-Voucher.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/scripts/network/0002-Voucher.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/scripts/network/0002-Voucher.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0001-proxy-admin.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0001-proxy-admin.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0001-proxy-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0001-proxy-admin.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0002-voucher.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0002-voucher.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0003-carbon-controller.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0003-carbon-controller.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0004-fee-burner.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0004-fee-burner.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0004-fee-burner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0004-fee-burner.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0005-carbon-controller-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0005-carbon-controller-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0006-carbon-vortex-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0006-carbon-vortex-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0007-carbon-controller-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0007-carbon-controller-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0008-carbon-pol.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0008-carbon-pol.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0008-carbon-pol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0008-carbon-pol.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0009-carbon-pol.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0009-carbon-pol.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0009-carbon-pol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0009-carbon-pol.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0010-carbon-controller-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0010-carbon-controller-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0011-voucher-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0011-voucher-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0012-carbon-vortex-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0012-carbon-vortex-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0013-carbon-controller-upgrade.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0013-carbon-controller-upgrade.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0100-revoke-roles.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0100-revoke-roles.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0100-revoke-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/0100-revoke-roles.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/0101-transfer-proxy-admin-ownership.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0101-transfer-proxy-admin-ownership.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/carbon.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=carbon.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/carbon.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/carbon.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/carbon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/carbon.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/mainnet/carbon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/mainnet/carbon.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0001-proxy-admin.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0001-proxy-admin.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0001-proxy-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/network/0001-proxy-admin.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0002-voucher.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0002-voucher.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0002-voucher.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/network/0002-voucher.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0002-voucher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/network/0002-voucher.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0002-voucher.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deploy/tests/network/0002-voucher.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deploy/tests/network/0003-carbon-controller.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=0003-carbon-controller.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-fork.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-fork.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-fork.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-fork.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-fork.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-fork.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-fork.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-testnet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-testnet.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-testnet.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-testnet.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-testnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-testnet.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/setup-testnet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/setup-testnet.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/storage-layout.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=storage-layout.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/storage-layout.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/storage-layout.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/storage-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/storage-layout.js -------------------------------------------------------------------------------- /examples/Bancor/dist/deployments/storage-layout.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/deployments/storage-layout.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/hardhat.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/hardhat.config.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/hardhat.config.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/hardhat.config.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/hardhat.config.js -------------------------------------------------------------------------------- /examples/Bancor/dist/hardhat.config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/hardhat.config.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/enableTrading.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/enableTrading.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/enableTrading.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/enableTrading.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/enableTrading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/enableTrading.js -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/enableTrading.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/enableTrading.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/example.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/example.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/example.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/example.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/example.js -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/example.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/example.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/timer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/timer.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/timer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/timer.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/timer.js -------------------------------------------------------------------------------- /examples/Bancor/dist/scripts/timer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/scripts/timer.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/Setup.d.ts: -------------------------------------------------------------------------------- 1 | import '@nomiclabs/hardhat-waffle'; 2 | //# sourceMappingURL=Setup.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/Setup.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/Setup.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/Setup.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/Setup.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/Setup.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/carbon/accuracy/accuracy.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=accuracy.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/carbon/accuracy/accuracy.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/carbon/accuracy/accuracy.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/carbon/accuracy/accuracy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/carbon/accuracy/accuracy.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/carbon/accuracy/accuracy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/carbon/accuracy/accuracy.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/AccessControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/AccessControl.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/AccessControl.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/AccessControl.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/AccessControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/AccessControl.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/AccessControl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/AccessControl.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Factory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Factory.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Factory.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Factory.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Factory.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Factory.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Factory.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Proxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Proxy.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Proxy.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Proxy.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Proxy.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Proxy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Proxy.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Time.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Time.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Time.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Time.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Time.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Time.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Time.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Trading.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Trading.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Trading.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Trading.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Trading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Trading.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Trading.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Trading.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Utils.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Utils.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Utils.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Utils.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/helpers/Utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/helpers/Utils.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/BigNumber.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/BigNumber.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/BigNumber.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/BigNumber.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/BigNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/BigNumber.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/BigNumber.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/BigNumber.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/Fraction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/Fraction.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/Fraction.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/Fraction.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/Fraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/Fraction.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/Fraction.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/Fraction.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/RevertedWithError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/RevertedWithError.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/RevertedWithError.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/RevertedWithError.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/RevertedWithError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/RevertedWithError.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/RevertedWithError.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/RevertedWithError.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/index.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/matchers/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/matchers/index.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/math/ExpDecayMath.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=ExpDecayMath.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/math/ExpDecayMath.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/math/ExpDecayMath.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/math/ExpDecayMath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/math/ExpDecayMath.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/math/ExpDecayMath.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/math/ExpDecayMath.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/MathEx.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=MathEx.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/MathEx.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/MathEx.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/MathEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/MathEx.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/MathEx.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/MathEx.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/OnlyProxyDelegate.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=OnlyProxyDelegate.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/OnlyProxyDelegate.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/OnlyProxyDelegate.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/OnlyProxyDelegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/OnlyProxyDelegate.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/OnlyProxyDelegate.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/OnlyProxyDelegate.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/Upgradeable.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=Upgradeable.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/Upgradeable.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/Upgradeable.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/Upgradeable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/Upgradeable.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/Upgradeable.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/Upgradeable.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/carbon-sdk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/carbon-sdk.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/carbon-sdk.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/carbon-sdk.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/carbon-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/carbon-sdk.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/carbon-sdk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/carbon-sdk.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/testDataFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/testDataFactory.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/testDataFactory.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/testDataFactory.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/testDataFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/testDataFactory.js -------------------------------------------------------------------------------- /examples/Bancor/dist/test/utility/testDataFactory.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/test/utility/testDataFactory.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/@openzeppelin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/@openzeppelin/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/@openzeppelin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/@openzeppelin/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/@openzeppelin/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/@openzeppelin/index.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/common.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/common.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/common.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/common.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/common.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/common.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/carbon/Pairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/carbon/Pairs.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/carbon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/carbon/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/helpers/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/index.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/index.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/pol/CarbonPOL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/pol/CarbonPOL.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/pol/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/pol/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/pol/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/pol/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/pol/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/pol/index.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/token/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/token/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/token/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/token/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/utility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/utility/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/vortex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/vortex/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/contracts/voucher/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/contracts/voucher/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/index.d.ts: -------------------------------------------------------------------------------- 1 | export * as erc721 from "./ERC721"; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts: -------------------------------------------------------------------------------- 1 | export * as erc20 from "./ERC20"; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/factories/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/factories/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/factories/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/factories/index.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/factories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/factories/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/factories/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/factories/index.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/hardhat-deploy/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/hardhat-deploy/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/hardhat-deploy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/hardhat-deploy/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/index.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/index.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/index.js -------------------------------------------------------------------------------- /examples/Bancor/dist/typechain-types/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/typechain-types/index.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Constants.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Constants.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Constants.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Constants.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Constants.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Constants.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Deploy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Deploy.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Deploy.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Deploy.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Deploy.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Deploy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Deploy.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Logger.d.ts: -------------------------------------------------------------------------------- 1 | export default console; 2 | //# sourceMappingURL=Logger.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Logger.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Logger.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Logger.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Logger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Logger.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Permit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Permit.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Permit.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Permit.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Permit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Permit.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Permit.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Permit.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Roles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Roles.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Roles.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Roles.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Roles.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Roles.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Roles.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Time.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Time.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Time.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Time.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Time.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Time.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Time.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/TokenData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/TokenData.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/TokenData.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/TokenData.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/TokenData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/TokenData.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/TokenData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/TokenData.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Types.d.ts -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Types.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Types.d.ts.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Types.js -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/Types.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/Types.js.map -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/chainIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/chainIds.json -------------------------------------------------------------------------------- /examples/Bancor/dist/utils/rpcUrls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/dist/utils/rpcUrls.json -------------------------------------------------------------------------------- /examples/Bancor/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/foundry.toml -------------------------------------------------------------------------------- /examples/Bancor/script/TokenHandler.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/script/TokenHandler.s.sol -------------------------------------------------------------------------------- /examples/Bancor/src/TokenHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/src/TokenHandler.sol -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/@openzeppelin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/@openzeppelin/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/common.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/carbon/Pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/carbon/Pairs.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/carbon/Strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/carbon/Strategies.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/carbon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/carbon/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/helpers/TestBNT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/helpers/TestBNT.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/helpers/TestLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/helpers/TestLogic.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/helpers/TestMathEx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/helpers/TestMathEx.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/helpers/TestPairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/helpers/TestPairs.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/helpers/TestVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/helpers/TestVault.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/helpers/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/pol/CarbonPOL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/pol/CarbonPOL.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/pol/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/pol/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/token/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/utility/MathEx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/utility/MathEx.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/utility/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/utility/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/vortex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/vortex/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/voucher/Voucher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/voucher/Voucher.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/contracts/voucher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/contracts/voucher/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/factories/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/factories/contracts/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/factories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/factories/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/hardhat-deploy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/hardhat-deploy/index.ts -------------------------------------------------------------------------------- /examples/Bancor/typechain-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Bancor/typechain-types/index.ts -------------------------------------------------------------------------------- /examples/Beanstalk/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Beanstalk/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Beanstalk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Beanstalk/.gitignore -------------------------------------------------------------------------------- /examples/Beanstalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Beanstalk/README.md -------------------------------------------------------------------------------- /examples/Beanstalk/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Beanstalk/foundry.toml -------------------------------------------------------------------------------- /examples/Beanstalk/script/Beanstalk.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Beanstalk/script/Beanstalk.s.sol -------------------------------------------------------------------------------- /examples/Beanstalk/src/Beanstalk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Beanstalk/src/Beanstalk.sol -------------------------------------------------------------------------------- /examples/BeautyChain/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BeautyChain/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/BeautyChain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BeautyChain/.gitignore -------------------------------------------------------------------------------- /examples/BeautyChain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BeautyChain/README.md -------------------------------------------------------------------------------- /examples/BeautyChain/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BeautyChain/foundry.toml -------------------------------------------------------------------------------- /examples/BeautyChain/script/bectoken.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BeautyChain/script/bectoken.s.sol -------------------------------------------------------------------------------- /examples/BeautyChain/src/bectoken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/BeautyChain/src/bectoken.sol -------------------------------------------------------------------------------- /examples/Dao/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dao/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Dao/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dao/.gitignore -------------------------------------------------------------------------------- /examples/Dao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dao/README.md -------------------------------------------------------------------------------- /examples/Dao/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dao/foundry.toml -------------------------------------------------------------------------------- /examples/Dao/script/Dao.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dao/script/Dao.s.sol -------------------------------------------------------------------------------- /examples/Dao/src/Dao.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dao/src/Dao.sol -------------------------------------------------------------------------------- /examples/Dodo/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dodo/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Dodo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dodo/.gitignore -------------------------------------------------------------------------------- /examples/Dodo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dodo/README.md -------------------------------------------------------------------------------- /examples/Dodo/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dodo/foundry.toml -------------------------------------------------------------------------------- /examples/Dodo/script/Dodo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dodo/script/Dodo.sol -------------------------------------------------------------------------------- /examples/Dodo/src/Dodo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Dodo/src/Dodo.sol -------------------------------------------------------------------------------- /examples/EulerFinance/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/EulerFinance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/.gitignore -------------------------------------------------------------------------------- /examples/EulerFinance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/README.md -------------------------------------------------------------------------------- /examples/EulerFinance/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/foundry.toml -------------------------------------------------------------------------------- /examples/EulerFinance/script/EToken.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/script/EToken.s.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Base.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/BaseIRM.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/BaseIRM.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/BaseLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/BaseLogic.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/BaseModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/BaseModule.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Constants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Constants.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/EToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/EToken.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Events.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Events.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/IRiskManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/IRiskManager.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Interfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Interfaces.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Proxy.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/RPow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/RPow.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Storage.sol -------------------------------------------------------------------------------- /examples/EulerFinance/src/Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/EulerFinance/src/Utils.sol -------------------------------------------------------------------------------- /examples/GYMNetwork/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/GYMNetwork/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/GYMNetwork/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/GYMNetwork/.gitignore -------------------------------------------------------------------------------- /examples/GYMNetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/GYMNetwork/README.md -------------------------------------------------------------------------------- /examples/GYMNetwork/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/GYMNetwork/foundry.toml -------------------------------------------------------------------------------- /examples/GYMNetwork/script/GYMNetwork.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/GYMNetwork/script/GYMNetwork.s.sol -------------------------------------------------------------------------------- /examples/GYMNetwork/src/GYMNetwork.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/GYMNetwork/src/GYMNetwork.sol -------------------------------------------------------------------------------- /examples/LIFI/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/LIFI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/.gitignore -------------------------------------------------------------------------------- /examples/LIFI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/README.md -------------------------------------------------------------------------------- /examples/LIFI/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/foundry.toml -------------------------------------------------------------------------------- /examples/LIFI/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/remappings.txt -------------------------------------------------------------------------------- /examples/LIFI/script/LIFI.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/script/LIFI.s.sol -------------------------------------------------------------------------------- /examples/LIFI/src/LIFI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/LIFI/src/LIFI.sol -------------------------------------------------------------------------------- /examples/Melo/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Melo/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Melo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Melo/.gitignore -------------------------------------------------------------------------------- /examples/Melo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Melo/README.md -------------------------------------------------------------------------------- /examples/Melo/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Melo/foundry.toml -------------------------------------------------------------------------------- /examples/Melo/script/melo.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Melo/script/melo.s.sol -------------------------------------------------------------------------------- /examples/Melo/src/melo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Melo/src/melo.sol -------------------------------------------------------------------------------- /examples/Meter/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Meter/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/Meter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Meter/.gitignore -------------------------------------------------------------------------------- /examples/Meter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Meter/README.md -------------------------------------------------------------------------------- /examples/Meter/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Meter/foundry.toml -------------------------------------------------------------------------------- /examples/Meter/script/Meter.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Meter/script/Meter.s.sol -------------------------------------------------------------------------------- /examples/Meter/src/Meter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/Meter/src/Meter.sol -------------------------------------------------------------------------------- /examples/MuBank/AccessControlUpgradeable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/AccessControlUpgradeable.sol -------------------------------------------------------------------------------- /examples/MuBank/AccountMigrationLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/AccountMigrationLibrary.sol -------------------------------------------------------------------------------- /examples/MuBank/AdminRole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/AdminRole.sol -------------------------------------------------------------------------------- /examples/MuBank/CollateralManagement.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/CollateralManagement.sol -------------------------------------------------------------------------------- /examples/MuBank/Constants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/Constants.sol -------------------------------------------------------------------------------- /examples/MuBank/ERC165Checker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/ERC165Checker.sol -------------------------------------------------------------------------------- /examples/MuBank/EmptyMockContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/EmptyMockContract.sol -------------------------------------------------------------------------------- /examples/MuBank/FETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/FETH.sol -------------------------------------------------------------------------------- /examples/MuBank/FETHMarketMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/FETHMarketMock.sol -------------------------------------------------------------------------------- /examples/MuBank/FNDNFTMarket.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/FNDNFTMarket.sol -------------------------------------------------------------------------------- /examples/MuBank/FoundationTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/FoundationTreasury.sol -------------------------------------------------------------------------------- /examples/MuBank/FoundationTreasuryNode.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/FoundationTreasuryNode.sol -------------------------------------------------------------------------------- /examples/MuBank/IAdminRole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IAdminRole.sol -------------------------------------------------------------------------------- /examples/MuBank/IFethMarket.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IFethMarket.sol -------------------------------------------------------------------------------- /examples/MuBank/IGetFees.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IGetFees.sol -------------------------------------------------------------------------------- /examples/MuBank/IGetRoyalties.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IGetRoyalties.sol -------------------------------------------------------------------------------- /examples/MuBank/IOperatorRole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IOperatorRole.sol -------------------------------------------------------------------------------- /examples/MuBank/IOwnable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IOwnable.sol -------------------------------------------------------------------------------- /examples/MuBank/IRoyaltyInfo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/IRoyaltyInfo.sol -------------------------------------------------------------------------------- /examples/MuBank/ISendValueWithFallbackWithdraw.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/ISendValueWithFallbackWithdraw.sol -------------------------------------------------------------------------------- /examples/MuBank/ITokenCreator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/ITokenCreator.sol -------------------------------------------------------------------------------- /examples/MuBank/LockedBalance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/LockedBalance.sol -------------------------------------------------------------------------------- /examples/MuBank/MockNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/MockNFT.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketAuction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketAuction.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketBuyPrice.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketBuyPrice.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketCore.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketCore.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketCreators.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketCreators.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketFees.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketFees.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketOffer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketOffer.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketPrivateSale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketPrivateSale.sol -------------------------------------------------------------------------------- /examples/MuBank/NFTMarketReserveAuction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/NFTMarketReserveAuction.sol -------------------------------------------------------------------------------- /examples/MuBank/OperatorRole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/OperatorRole.sol -------------------------------------------------------------------------------- /examples/MuBank/SendValueWithFallbackWithdraw.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/SendValueWithFallbackWithdraw.sol -------------------------------------------------------------------------------- /examples/MuBank/WithdrawFromEscrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/MuBank/WithdrawFromEscrow.sol -------------------------------------------------------------------------------- /examples/NXUSD/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/NXUSD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/.gitignore -------------------------------------------------------------------------------- /examples/NXUSD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/README.md -------------------------------------------------------------------------------- /examples/NXUSD/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/foundry.toml -------------------------------------------------------------------------------- /examples/NXUSD/script/Oracle.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/script/Oracle.s.sol -------------------------------------------------------------------------------- /examples/NXUSD/src/IOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/src/IOracle.sol -------------------------------------------------------------------------------- /examples/NXUSD/src/JLPWAVAXUSDCOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NXUSD/src/JLPWAVAXUSDCOracle.sol -------------------------------------------------------------------------------- /examples/NooddleFiance/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/NooddleFiance/contract.sol -------------------------------------------------------------------------------- /examples/ark/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/ark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/.gitignore -------------------------------------------------------------------------------- /examples/ark/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/.gitmodules -------------------------------------------------------------------------------- /examples/ark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/README.md -------------------------------------------------------------------------------- /examples/ark/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/foundry.toml -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/.gitattributes: -------------------------------------------------------------------------------- 1 | src/Vm.sol linguist-generated 2 | -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/.github/workflows/ci.yml -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/.github/workflows/sync.yml -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/LICENSE-APACHE -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/LICENSE-MIT -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/README.md -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/foundry.toml -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/package.json -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/scripts/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/scripts/vm.py -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/Script.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/Script.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdAssertions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdAssertions.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdInvariant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdInvariant.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/interfaces/IERC1155.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/interfaces/IERC1155.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/interfaces/IERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/interfaces/IERC165.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/interfaces/IERC20.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/interfaces/IERC4626.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/interfaces/IERC4626.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/interfaces/IERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/interfaces/IERC721.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/interfaces/IMulticall3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/interfaces/IMulticall3.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/mocks/MockERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/mocks/MockERC20.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/mocks/MockERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/mocks/MockERC721.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/src/safeconsole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/src/safeconsole.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdAssertions.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdAssertions.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdChains.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdChains.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdCheats.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdCheats.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdError.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdError.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdJson.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdJson.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdMath.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdMath.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdStorage.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdStorage.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdStyle.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdStyle.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdToml.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdToml.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/StdUtils.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/StdUtils.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/Vm.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/Vm.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/compilation/CompilationTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/compilation/CompilationTest.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/fixtures/broadcast.log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/fixtures/broadcast.log.json -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/fixtures/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/fixtures/test.json -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/fixtures/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/fixtures/test.toml -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/mocks/MockERC20.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/mocks/MockERC20.t.sol -------------------------------------------------------------------------------- /examples/ark/lib/forge-std/test/mocks/MockERC721.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/lib/forge-std/test/mocks/MockERC721.t.sol -------------------------------------------------------------------------------- /examples/ark/script/ARK.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/script/ARK.s.sol -------------------------------------------------------------------------------- /examples/ark/src/ARK.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/ARK.sol -------------------------------------------------------------------------------- /examples/ark/src/LP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/LP.sol -------------------------------------------------------------------------------- /examples/ark/src/Setup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/Setup.sol -------------------------------------------------------------------------------- /examples/ark/src/UniswapV2ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/UniswapV2ERC20.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/CheatCodes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/CheatCodes.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IERC20.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IUniswapV2Callee.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IUniswapV2Callee.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IUniswapV2ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IUniswapV2ERC20.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IUniswapV2Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IUniswapV2Factory.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IUniswapV2Router.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IUniswapV2Router.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IUniswapV2Router01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IUniswapV2Router01.sol -------------------------------------------------------------------------------- /examples/ark/src/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/interfaces/IWETH.sol -------------------------------------------------------------------------------- /examples/ark/src/libraries/Math.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/libraries/Math.sol -------------------------------------------------------------------------------- /examples/ark/src/libraries/TransferHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/libraries/TransferHelper.sol -------------------------------------------------------------------------------- /examples/ark/src/libraries/UQ112x112.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/libraries/UQ112x112.sol -------------------------------------------------------------------------------- /examples/ark/src/libraries/UniswapV2Library.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/ark/src/libraries/UniswapV2Library.sol -------------------------------------------------------------------------------- /examples/bego/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/bego/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/bego/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/bego/.gitignore -------------------------------------------------------------------------------- /examples/bego/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/bego/README.md -------------------------------------------------------------------------------- /examples/bego/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/bego/foundry.toml -------------------------------------------------------------------------------- /examples/bego/script/Bego.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/bego/script/Bego.s.sol -------------------------------------------------------------------------------- /examples/bego/src/Bego.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/bego/src/Bego.sol -------------------------------------------------------------------------------- /examples/dfx/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/dfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/.gitignore -------------------------------------------------------------------------------- /examples/dfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/README.md -------------------------------------------------------------------------------- /examples/dfx/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/foundry.toml -------------------------------------------------------------------------------- /examples/dfx/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/remappings.txt -------------------------------------------------------------------------------- /examples/dfx/script/Counter.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/script/Counter.s.sol -------------------------------------------------------------------------------- /examples/dfx/src/ABDKMath64x64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/ABDKMath64x64.sol -------------------------------------------------------------------------------- /examples/dfx/src/ABDKMathQuad.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/ABDKMathQuad.sol -------------------------------------------------------------------------------- /examples/dfx/src/Assimilators.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/Assimilators.sol -------------------------------------------------------------------------------- /examples/dfx/src/Curve.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/Curve.sol -------------------------------------------------------------------------------- /examples/dfx/src/CurveMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/CurveMath.sol -------------------------------------------------------------------------------- /examples/dfx/src/IAssimilator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/IAssimilator.sol -------------------------------------------------------------------------------- /examples/dfx/src/IFreeFromUpTo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/IFreeFromUpTo.sol -------------------------------------------------------------------------------- /examples/dfx/src/IOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/IOracle.sol -------------------------------------------------------------------------------- /examples/dfx/src/MerkleProver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/MerkleProver.sol -------------------------------------------------------------------------------- /examples/dfx/src/Orchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/Orchestrator.sol -------------------------------------------------------------------------------- /examples/dfx/src/ProportionalLiquidity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/ProportionalLiquidity.sol -------------------------------------------------------------------------------- /examples/dfx/src/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/Storage.sol -------------------------------------------------------------------------------- /examples/dfx/src/Swaps.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/Swaps.sol -------------------------------------------------------------------------------- /examples/dfx/src/UnsafeMath64x64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/UnsafeMath64x64.sol -------------------------------------------------------------------------------- /examples/dfx/src/ViewLiquidity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/ViewLiquidity.sol -------------------------------------------------------------------------------- /examples/dfx/src/Zap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/dfx/src/Zap.sol -------------------------------------------------------------------------------- /examples/elasticSwap/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/elasticSwap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/.gitignore -------------------------------------------------------------------------------- /examples/elasticSwap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/README.md -------------------------------------------------------------------------------- /examples/elasticSwap/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/foundry.toml -------------------------------------------------------------------------------- /examples/elasticSwap/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/remappings.txt -------------------------------------------------------------------------------- /examples/elasticSwap/script/Exchange.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/script/Exchange.s.sol -------------------------------------------------------------------------------- /examples/elasticSwap/src/ElasticMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/src/ElasticMock.sol -------------------------------------------------------------------------------- /examples/elasticSwap/src/Exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/src/Exchange.sol -------------------------------------------------------------------------------- /examples/elasticSwap/src/ExchangeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/src/ExchangeFactory.sol -------------------------------------------------------------------------------- /examples/elasticSwap/src/FeeOnTransferMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/src/FeeOnTransferMock.sol -------------------------------------------------------------------------------- /examples/elasticSwap/src/IExchangeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/src/IExchangeFactory.sol -------------------------------------------------------------------------------- /examples/elasticSwap/src/MathLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/elasticSwap/src/MathLib.sol -------------------------------------------------------------------------------- /examples/hundredFinance/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/hundredFinance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/.gitignore -------------------------------------------------------------------------------- /examples/hundredFinance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/README.md -------------------------------------------------------------------------------- /examples/hundredFinance/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/foundry.toml -------------------------------------------------------------------------------- /examples/hundredFinance/script/CErc20.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/script/CErc20.s.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/CErc20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/CErc20.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/CToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/CToken.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/CTokenInterfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/CTokenInterfaces.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/ComptrollerInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/ComptrollerInterface.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/EIP20Interface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/EIP20Interface.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/EIP20NonStandardInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/EIP20NonStandardInterface.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/ErrorReporter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/ErrorReporter.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/ExponentialNoError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/ExponentialNoError.sol -------------------------------------------------------------------------------- /examples/hundredFinance/src/InterestRateModel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/hundredFinance/src/InterestRateModel.sol -------------------------------------------------------------------------------- /examples/monoSwap/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/monoSwap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/.gitignore -------------------------------------------------------------------------------- /examples/monoSwap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/README.md -------------------------------------------------------------------------------- /examples/monoSwap/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/foundry.toml -------------------------------------------------------------------------------- /examples/monoSwap/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/remappings.txt -------------------------------------------------------------------------------- /examples/monoSwap/script/Monoswap.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/script/Monoswap.s.sol -------------------------------------------------------------------------------- /examples/monoSwap/src/IMonoXPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/src/IMonoXPool.sol -------------------------------------------------------------------------------- /examples/monoSwap/src/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/src/IWETH.sol -------------------------------------------------------------------------------- /examples/monoSwap/src/MonoXLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/src/MonoXLibrary.sol -------------------------------------------------------------------------------- /examples/monoSwap/src/Monoswap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/monoSwap/src/Monoswap.sol -------------------------------------------------------------------------------- /examples/sherlockYields/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/.github/workflows/test.yml -------------------------------------------------------------------------------- /examples/sherlockYields/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/.gitignore -------------------------------------------------------------------------------- /examples/sherlockYields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/README.md -------------------------------------------------------------------------------- /examples/sherlockYields/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/foundry.toml -------------------------------------------------------------------------------- /examples/sherlockYields/script/Swap.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/script/Swap.s.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Base.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/BaseIRM.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/BaseIRM.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/BaseLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/BaseLogic.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/BaseModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/BaseModule.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Constants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Constants.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Events.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Events.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/IRiskManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/IRiskManager.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/ISwapRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/ISwapRouter.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/IUniswapV3SwapCallback.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/IUniswapV3SwapCallback.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Interfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Interfaces.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Proxy.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/RPow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/RPow.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Storage.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Swap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Swap.sol -------------------------------------------------------------------------------- /examples/sherlockYields/src/Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/examples/sherlockYields/src/Utils.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/remappings.txt -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/script/ARK.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/script/ARK.s.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/script/Counter.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/script/Counter.s.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/script/src_ARK_Invaraint.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/script/src_ARK_Invaraint.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/ARK.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/ARK.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/LP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/LP.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/Setup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/Setup.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/UniswapV2ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/UniswapV2ERC20.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/interfaces/CheatCodes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/interfaces/CheatCodes.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/interfaces/IERC20.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/interfaces/IWETH.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/libraries/Math.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/libraries/Math.sol -------------------------------------------------------------------------------- /results/ARK.sol:AbsToken_output/src/libraries/UQ112x112.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/ARK.sol:AbsToken_output/src/libraries/UQ112x112.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/remappings.txt -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/script/BGLD.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/script/BGLD.s.sol -------------------------------------------------------------------------------- /results/BGLD.sol:BlackGold_output/src/BGLD.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/BGLD.sol:BlackGold_output/src/BGLD.sol -------------------------------------------------------------------------------- /results/Beanstalk.sol:GovernanceFacet_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Beanstalk.sol:GovernanceFacet_output/remappings.txt -------------------------------------------------------------------------------- /results/Beanstalk.sol:GovernanceFacet_output/script/Dao.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Beanstalk.sol:GovernanceFacet_output/script/Dao.s.sol -------------------------------------------------------------------------------- /results/Beanstalk.sol:GovernanceFacet_output/src/Dao.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Beanstalk.sol:GovernanceFacet_output/src/Dao.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/lib/forge-std/src/Script.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/lib/forge-std/src/Script.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/remappings.txt -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/script/Bego.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/script/Bego.s.sol -------------------------------------------------------------------------------- /results/Bego.sol:BGeoToken_output/src/Bego.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Bego.sol:BGeoToken_output/src/Bego.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/remappings.txt -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/script/CErc20.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/script/CErc20.s.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/CErc20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/CErc20.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/CToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/CToken.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/CTokenInterfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/CTokenInterfaces.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/ComptrollerInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/ComptrollerInterface.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/EIP20Interface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/EIP20Interface.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/ErrorReporter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/ErrorReporter.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/ExponentialNoError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/ExponentialNoError.sol -------------------------------------------------------------------------------- /results/CErc20.sol:CErc20_output/src/InterestRateModel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/CErc20.sol:CErc20_output/src/InterestRateModel.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/remappings.txt -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/script/Counter.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/script/Counter.s.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/ABDKMath64x64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/ABDKMath64x64.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/ABDKMathQuad.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/ABDKMathQuad.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/Assimilators.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/Assimilators.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/Curve.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/Curve.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/CurveMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/CurveMath.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/IAssimilator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/IAssimilator.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/IFreeFromUpTo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/IFreeFromUpTo.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/IOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/IOracle.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/MerkleProver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/MerkleProver.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/Orchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/Orchestrator.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/ProportionalLiquidity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/ProportionalLiquidity.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/Storage.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/Swaps.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/Swaps.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/UnsafeMath64x64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/UnsafeMath64x64.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/ViewLiquidity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/ViewLiquidity.sol -------------------------------------------------------------------------------- /results/Curve.sol:Curve_output/src/Zap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Curve.sol:Curve_output/src/Zap.sol -------------------------------------------------------------------------------- /results/Dao.sol:GovernanceFacet_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dao.sol:GovernanceFacet_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Dao.sol:GovernanceFacet_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dao.sol:GovernanceFacet_output/remappings.txt -------------------------------------------------------------------------------- /results/Dao.sol:GovernanceFacet_output/script/Dao.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dao.sol:GovernanceFacet_output/script/Dao.s.sol -------------------------------------------------------------------------------- /results/Dao.sol:GovernanceFacet_output/src/Dao.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dao.sol:GovernanceFacet_output/src/Dao.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdAssertions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdAssertions.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdInvariant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdInvariant.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/lib/forge-std/src/safeconsole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/lib/forge-std/src/safeconsole.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/remappings.txt -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/script/Dodo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/script/Dodo.sol -------------------------------------------------------------------------------- /results/Dodo.sol:DVM_output/src/Dodo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Dodo.sol:DVM_output/src/Dodo.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/remappings.txt -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/script/Exchange.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/script/Exchange.s.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/src/ElasticMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/src/ElasticMock.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/src/Exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/src/Exchange.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/src/ExchangeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/src/ExchangeFactory.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/src/FeeOnTransferMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/src/FeeOnTransferMock.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/src/IExchangeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/src/IExchangeFactory.sol -------------------------------------------------------------------------------- /results/Exchange.sol:Exchange_output/src/MathLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Exchange.sol:Exchange_output/src/MathLib.sol -------------------------------------------------------------------------------- /results/GYMNetwork.sol:GymSinglePool_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/GYMNetwork.sol:GymSinglePool_output/remappings.txt -------------------------------------------------------------------------------- /results/GYMNetwork.sol:GymSinglePool_output/src/GYMNetwork.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/GYMNetwork.sol:GymSinglePool_output/src/GYMNetwork.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/remappings.txt -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/script/LIFI.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/script/LIFI.s.sol -------------------------------------------------------------------------------- /results/LIFI.sol:LibSwap_output/src/LIFI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/LIFI.sol:LibSwap_output/src/LIFI.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/remappings.txt -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/script/Meter.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/script/Meter.s.sol -------------------------------------------------------------------------------- /results/Meter.sol:Bridge_output/src/Meter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Meter.sol:Bridge_output/src/Meter.sol -------------------------------------------------------------------------------- /results/Migrations.sol:Migrations_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Migrations.sol:Migrations_output/remappings.txt -------------------------------------------------------------------------------- /results/Migrations.sol:Migrations_output/src/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Migrations.sol:Migrations_output/src/Migrations.sol -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/remappings.txt -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/script/Monoswap.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/script/Monoswap.s.sol -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/src/IMonoXPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/src/IMonoXPool.sol -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/src/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/src/IWETH.sol -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/src/MonoXLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/src/MonoXLibrary.sol -------------------------------------------------------------------------------- /results/Monoswap.sol:Monoswap_output/src/Monoswap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Monoswap.sol:Monoswap_output/src/Monoswap.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/remappings.txt -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/script/Swap.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/script/Swap.s.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Base.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/BaseIRM.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/BaseIRM.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/BaseLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/BaseLogic.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/BaseModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/BaseModule.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Constants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Constants.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Events.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Events.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/IRiskManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/IRiskManager.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/ISwapRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/ISwapRouter.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/IUniswapV3SwapCallback.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/IUniswapV3SwapCallback.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Interfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Interfaces.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Proxy.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/RPow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/RPow.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Storage.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Swap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Swap.sol -------------------------------------------------------------------------------- /results/Swap.sol:Swap_output/src/Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/Swap.sol:Swap_output/src/Utils.sol -------------------------------------------------------------------------------- /results/TokenHandler.sol:TokenHandler_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/TokenHandler.sol:TokenHandler_output/remappings.txt -------------------------------------------------------------------------------- /results/bectoken.sol:BecToken_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/bectoken.sol:BecToken_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/bectoken.sol:BecToken_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/bectoken.sol:BecToken_output/remappings.txt -------------------------------------------------------------------------------- /results/bectoken.sol:BecToken_output/script/bectoken.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/bectoken.sol:BecToken_output/script/bectoken.s.sol -------------------------------------------------------------------------------- /results/bectoken.sol:BecToken_output/src/bectoken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/bectoken.sol:BecToken_output/src/bectoken.sol -------------------------------------------------------------------------------- /results/bectoken.sol:PausableToken_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/bectoken.sol:PausableToken_output/remappings.txt -------------------------------------------------------------------------------- /results/bectoken.sol:PausableToken_output/src/bectoken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/bectoken.sol:PausableToken_output/src/bectoken.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/StdToml.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/StdToml.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/remappings.txt -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/script/melo.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/script/melo.s.sol -------------------------------------------------------------------------------- /results/melo.sol:cERC20_output/src/melo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/results/melo.sol:cERC20_output/src/melo.sol -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/setup.sh -------------------------------------------------------------------------------- /src/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/ast.ts -------------------------------------------------------------------------------- /src/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/compiler.ts -------------------------------------------------------------------------------- /src/helpers/forge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/helpers/forge.ts -------------------------------------------------------------------------------- /src/helpers/hardhat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/helpers/hardhat.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/openaiWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/openaiWrapper.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/weaviate_ingest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/src/weaviate_ingest.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /weaviate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzland/invgen/HEAD/weaviate/docker-compose.yml --------------------------------------------------------------------------------