├── .gitignore ├── .waffle.json ├── LICENSE ├── README.md ├── buidler.config.ts ├── cache └── compilers │ └── list.json ├── contracts ├── BurgerMainToken.sol ├── DemaxDelegate.sol ├── DemaxFactory.sol ├── DemaxGovernance.sol ├── DemaxLP.sol ├── DemaxPair.sol ├── DemaxPool.sol ├── DemaxProjectConfig.sol ├── DemaxProjectDeploy.sol ├── DemaxProjectFactory.sol ├── DemaxProjectPool.sol ├── DemaxProjectQuery.sol ├── DemaxQuery.sol ├── DemaxQuery2.sol ├── DemaxQueryPair.sol ├── DemaxQueryPairWeigth.sol ├── DemaxTransferListener.sol ├── DemaxTrigger.sol ├── Dgas.sol ├── DgasHub.sol ├── backup.zip ├── ballots │ ├── DemaxBallot.sol │ └── DemaxBallotFactory.sol ├── demaxConfig.sol ├── demaxPlatform.sol ├── interfaces │ ├── ERC2917-Interface.sol │ ├── IDemaxBallot.sol │ ├── IDemaxBallotFactory.sol │ ├── IDemaxCallee.sol │ ├── IDemaxConfig.sol │ ├── IDemaxDelegate.sol │ ├── IDemaxFactory.sol │ ├── IDemaxGovernance.sol │ ├── IDemaxLP.sol │ ├── IDemaxPair.sol │ ├── IDemaxPool.sol │ ├── IDemaxTransferListener.sol │ ├── IDgas.sol │ ├── IERC20.sol │ ├── IERC2917.sol │ ├── ITokenRegistry.sol │ └── IWETH.sol ├── libraries │ ├── AddressStringUtil.sol │ ├── Babylonian.sol │ ├── ConfigNames.sol │ ├── DemaxSwapLibrary.sol │ ├── FixedPoint.sol │ ├── Math.sol │ ├── PairNamer.sol │ ├── SafeERC20Namer.sol │ ├── SafeMath.sol │ ├── TransferHelper.sol │ └── UQ112x112.sol ├── modules │ ├── BaseMintField.sol │ ├── BaseShareField.sol │ ├── BaseToken.sol │ ├── Configable.sol │ ├── Controller.sol │ ├── DgasStaking.sol │ ├── ERC20Token.sol │ ├── ERC2917Impl.sol │ ├── Governable.sol │ ├── Initializable.sol │ ├── Lock.sol │ ├── Ownable.sol │ ├── ProjectConfigable.sol │ ├── ReentrancyGuard.sol │ ├── SwitchFeature.sol │ ├── TokenRegistry.sol │ └── Upgradable.sol └── test │ ├── DeflatingERC20.sol │ ├── DemaxBallotTestToken.sol │ ├── DemaxConfigTest.sol │ ├── DemaxGovernanceTest.sol │ ├── DgasTest.sol │ ├── ERC20.sol │ ├── ERC20Factory.sol │ ├── ERC20ForFactory.sol │ ├── TERC20.sol │ ├── TokenQuery.sol │ ├── USDT.sol │ └── WETH9.sol ├── deploy ├── address.json ├── config.example.js ├── deploy.js ├── test.js └── upgrade.plateform.js ├── hardhat.config.ts ├── package.json ├── scripts └── sample-script.js ├── test.sol ├── test ├── ConfigNames.spec.ts ├── DemaxBallot.spec.ts ├── DemaxBallotFactory.spec.ts ├── DemaxConfig.spec.ts ├── DemaxGovernance.spec.ts ├── DemaxTransferListener.spec.ts ├── Dgas.spec.ts ├── demaxPlatform.spec.ts ├── demaxPlatform.spec2.ts ├── shared │ ├── fixtures.ts │ ├── logconsol.ts │ ├── peripheryFixtures.ts │ └── utilities.ts └── util.spec.ts ├── tsconfig.json └── yarn-error.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.waffle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/.waffle.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/README.md -------------------------------------------------------------------------------- /buidler.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/buidler.config.ts -------------------------------------------------------------------------------- /cache/compilers/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/cache/compilers/list.json -------------------------------------------------------------------------------- /contracts/BurgerMainToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/BurgerMainToken.sol -------------------------------------------------------------------------------- /contracts/DemaxDelegate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxDelegate.sol -------------------------------------------------------------------------------- /contracts/DemaxFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxFactory.sol -------------------------------------------------------------------------------- /contracts/DemaxGovernance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxGovernance.sol -------------------------------------------------------------------------------- /contracts/DemaxLP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxLP.sol -------------------------------------------------------------------------------- /contracts/DemaxPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxPair.sol -------------------------------------------------------------------------------- /contracts/DemaxPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxPool.sol -------------------------------------------------------------------------------- /contracts/DemaxProjectConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxProjectConfig.sol -------------------------------------------------------------------------------- /contracts/DemaxProjectDeploy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxProjectDeploy.sol -------------------------------------------------------------------------------- /contracts/DemaxProjectFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxProjectFactory.sol -------------------------------------------------------------------------------- /contracts/DemaxProjectPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxProjectPool.sol -------------------------------------------------------------------------------- /contracts/DemaxProjectQuery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxProjectQuery.sol -------------------------------------------------------------------------------- /contracts/DemaxQuery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxQuery.sol -------------------------------------------------------------------------------- /contracts/DemaxQuery2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxQuery2.sol -------------------------------------------------------------------------------- /contracts/DemaxQueryPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxQueryPair.sol -------------------------------------------------------------------------------- /contracts/DemaxQueryPairWeigth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxQueryPairWeigth.sol -------------------------------------------------------------------------------- /contracts/DemaxTransferListener.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxTransferListener.sol -------------------------------------------------------------------------------- /contracts/DemaxTrigger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DemaxTrigger.sol -------------------------------------------------------------------------------- /contracts/Dgas.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/Dgas.sol -------------------------------------------------------------------------------- /contracts/DgasHub.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/DgasHub.sol -------------------------------------------------------------------------------- /contracts/backup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/backup.zip -------------------------------------------------------------------------------- /contracts/ballots/DemaxBallot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/ballots/DemaxBallot.sol -------------------------------------------------------------------------------- /contracts/ballots/DemaxBallotFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/ballots/DemaxBallotFactory.sol -------------------------------------------------------------------------------- /contracts/demaxConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/demaxConfig.sol -------------------------------------------------------------------------------- /contracts/demaxPlatform.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/demaxPlatform.sol -------------------------------------------------------------------------------- /contracts/interfaces/ERC2917-Interface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/ERC2917-Interface.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxBallot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxBallot.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxBallotFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxBallotFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxCallee.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxCallee.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxConfig.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxDelegate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxDelegate.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxGovernance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxGovernance.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxLP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxLP.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxPair.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxPool.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDemaxTransferListener.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDemaxTransferListener.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDgas.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IDgas.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IERC20.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC2917.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IERC2917.sol -------------------------------------------------------------------------------- /contracts/interfaces/ITokenRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/ITokenRegistry.sol -------------------------------------------------------------------------------- /contracts/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/interfaces/IWETH.sol -------------------------------------------------------------------------------- /contracts/libraries/AddressStringUtil.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/AddressStringUtil.sol -------------------------------------------------------------------------------- /contracts/libraries/Babylonian.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/Babylonian.sol -------------------------------------------------------------------------------- /contracts/libraries/ConfigNames.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/ConfigNames.sol -------------------------------------------------------------------------------- /contracts/libraries/DemaxSwapLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/DemaxSwapLibrary.sol -------------------------------------------------------------------------------- /contracts/libraries/FixedPoint.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/FixedPoint.sol -------------------------------------------------------------------------------- /contracts/libraries/Math.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/Math.sol -------------------------------------------------------------------------------- /contracts/libraries/PairNamer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/PairNamer.sol -------------------------------------------------------------------------------- /contracts/libraries/SafeERC20Namer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/SafeERC20Namer.sol -------------------------------------------------------------------------------- /contracts/libraries/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/SafeMath.sol -------------------------------------------------------------------------------- /contracts/libraries/TransferHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/TransferHelper.sol -------------------------------------------------------------------------------- /contracts/libraries/UQ112x112.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/libraries/UQ112x112.sol -------------------------------------------------------------------------------- /contracts/modules/BaseMintField.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/BaseMintField.sol -------------------------------------------------------------------------------- /contracts/modules/BaseShareField.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/BaseShareField.sol -------------------------------------------------------------------------------- /contracts/modules/BaseToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/BaseToken.sol -------------------------------------------------------------------------------- /contracts/modules/Configable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Configable.sol -------------------------------------------------------------------------------- /contracts/modules/Controller.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Controller.sol -------------------------------------------------------------------------------- /contracts/modules/DgasStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/DgasStaking.sol -------------------------------------------------------------------------------- /contracts/modules/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/ERC20Token.sol -------------------------------------------------------------------------------- /contracts/modules/ERC2917Impl.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/ERC2917Impl.sol -------------------------------------------------------------------------------- /contracts/modules/Governable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Governable.sol -------------------------------------------------------------------------------- /contracts/modules/Initializable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Initializable.sol -------------------------------------------------------------------------------- /contracts/modules/Lock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Lock.sol -------------------------------------------------------------------------------- /contracts/modules/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Ownable.sol -------------------------------------------------------------------------------- /contracts/modules/ProjectConfigable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/ProjectConfigable.sol -------------------------------------------------------------------------------- /contracts/modules/ReentrancyGuard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/ReentrancyGuard.sol -------------------------------------------------------------------------------- /contracts/modules/SwitchFeature.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/SwitchFeature.sol -------------------------------------------------------------------------------- /contracts/modules/TokenRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/TokenRegistry.sol -------------------------------------------------------------------------------- /contracts/modules/Upgradable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/modules/Upgradable.sol -------------------------------------------------------------------------------- /contracts/test/DeflatingERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/DeflatingERC20.sol -------------------------------------------------------------------------------- /contracts/test/DemaxBallotTestToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/DemaxBallotTestToken.sol -------------------------------------------------------------------------------- /contracts/test/DemaxConfigTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/DemaxConfigTest.sol -------------------------------------------------------------------------------- /contracts/test/DemaxGovernanceTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/DemaxGovernanceTest.sol -------------------------------------------------------------------------------- /contracts/test/DgasTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/DgasTest.sol -------------------------------------------------------------------------------- /contracts/test/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/ERC20.sol -------------------------------------------------------------------------------- /contracts/test/ERC20Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/ERC20Factory.sol -------------------------------------------------------------------------------- /contracts/test/ERC20ForFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/ERC20ForFactory.sol -------------------------------------------------------------------------------- /contracts/test/TERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/TERC20.sol -------------------------------------------------------------------------------- /contracts/test/TokenQuery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/TokenQuery.sol -------------------------------------------------------------------------------- /contracts/test/USDT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/USDT.sol -------------------------------------------------------------------------------- /contracts/test/WETH9.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/contracts/test/WETH9.sol -------------------------------------------------------------------------------- /deploy/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/deploy/address.json -------------------------------------------------------------------------------- /deploy/config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/deploy/config.example.js -------------------------------------------------------------------------------- /deploy/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/deploy/deploy.js -------------------------------------------------------------------------------- /deploy/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/deploy/test.js -------------------------------------------------------------------------------- /deploy/upgrade.plateform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/deploy/upgrade.plateform.js -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/package.json -------------------------------------------------------------------------------- /scripts/sample-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/scripts/sample-script.js -------------------------------------------------------------------------------- /test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test.sol -------------------------------------------------------------------------------- /test/ConfigNames.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/ConfigNames.spec.ts -------------------------------------------------------------------------------- /test/DemaxBallot.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/DemaxBallot.spec.ts -------------------------------------------------------------------------------- /test/DemaxBallotFactory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/DemaxBallotFactory.spec.ts -------------------------------------------------------------------------------- /test/DemaxConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/DemaxConfig.spec.ts -------------------------------------------------------------------------------- /test/DemaxGovernance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/DemaxGovernance.spec.ts -------------------------------------------------------------------------------- /test/DemaxTransferListener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/DemaxTransferListener.spec.ts -------------------------------------------------------------------------------- /test/Dgas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/Dgas.spec.ts -------------------------------------------------------------------------------- /test/demaxPlatform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/demaxPlatform.spec.ts -------------------------------------------------------------------------------- /test/demaxPlatform.spec2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/demaxPlatform.spec2.ts -------------------------------------------------------------------------------- /test/shared/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/shared/fixtures.ts -------------------------------------------------------------------------------- /test/shared/logconsol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/shared/logconsol.ts -------------------------------------------------------------------------------- /test/shared/peripheryFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/shared/peripheryFixtures.ts -------------------------------------------------------------------------------- /test/shared/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/shared/utilities.ts -------------------------------------------------------------------------------- /test/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/test/util.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burgerswap-org/burgerswap-core/HEAD/yarn-error.log --------------------------------------------------------------------------------