├── .buildkite └── pipeline.yml ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── task.md └── pull_request_template.md ├── .gitignore ├── .hlint-universum.yaml ├── .hlint.yaml ├── .reuse └── dep5 ├── .stylish-haskell.yaml ├── .weeder.yaml ├── LICENSES ├── LicenseRef-MIT-TC.txt ├── LicenseRef-MIT-TQ.txt ├── MPL-2.0.txt └── Unlicense.txt ├── Makefile ├── README.md ├── README.md.license ├── cabal.project ├── cabal.project.freeze ├── cabal.project.freeze.license ├── cabal.project.license ├── default.nix ├── docs ├── building.md ├── code-style.md ├── error-codes.md ├── lambda.md ├── registry.md ├── specification.md ├── treasury.md └── trivial.md ├── flake.lock ├── flake.lock.license ├── flake.nix ├── haskell ├── LICENSE ├── Makefile ├── README.md ├── README.md.license ├── app │ └── Main.hs ├── baseDAO-ligo-meta.cabal ├── baseDAO-ligo-meta.cabal.license ├── package.yaml ├── src │ └── Ligo │ │ ├── BaseDAO │ │ ├── Common │ │ │ └── Types.hs │ │ ├── ErrorCodes.hs │ │ ├── LambdaDAO │ │ │ └── Types.hs │ │ ├── RegistryDAO │ │ │ └── Types.hs │ │ ├── TZIP16Metadata.hs │ │ ├── TreasuryDAO │ │ │ └── Types.hs │ │ └── Types.hs │ │ ├── Typescript.hs │ │ └── Util.hs └── test │ ├── Ligo │ └── BaseDAO │ │ └── Contract.hs │ ├── Main.hs │ ├── README.md │ ├── README.md.license │ ├── SMT │ ├── BaseDAO.hs │ ├── Common │ │ ├── Gen.hs │ │ ├── Helper.hs │ │ ├── Run.hs │ │ └── Types.hs │ ├── Model │ │ └── BaseDAO │ │ │ ├── Contract.hs │ │ │ ├── Management.hs │ │ │ ├── Permit.hs │ │ │ ├── Proposal.hs │ │ │ ├── Proposal │ │ │ ├── FreezeHistory.hs │ │ │ ├── Plist.hs │ │ │ └── QuorumThreshold.hs │ │ │ ├── Token.hs │ │ │ └── Types.hs │ ├── RegistryDAO.hs │ └── TreasuryDAO.hs │ ├── Test │ ├── Ligo │ │ ├── BaseDAO │ │ │ ├── Common.hs │ │ │ ├── Common │ │ │ │ ├── Errors.hs │ │ │ │ └── StorageHelper.hs │ │ │ ├── ErrorCode.hs │ │ │ ├── Management.hs │ │ │ ├── Management │ │ │ │ └── TransferOwnership.hs │ │ │ ├── OffChainViews.hs │ │ │ ├── Plist.hs │ │ │ ├── Proposal.hs │ │ │ ├── Proposal │ │ │ │ ├── Config.hs │ │ │ │ ├── Delegate.hs │ │ │ │ ├── Flush.hs │ │ │ │ ├── Propose.hs │ │ │ │ ├── Quorum.hs │ │ │ │ ├── Tokens.hs │ │ │ │ └── Vote.hs │ │ │ ├── Token.hs │ │ │ └── Types.hs │ │ ├── Common.hs │ │ ├── LambdaDAO.hs │ │ ├── LambdaRegistryDAO.hs │ │ ├── LambdaTreasuryDAO.hs │ │ ├── RegistryDAO.hs │ │ ├── RegistryDAO │ │ │ ├── Tests │ │ │ │ ├── Common.hs │ │ │ │ ├── EmptyProposal.hs │ │ │ │ ├── ExecuteWonProposal.hs │ │ │ │ ├── FlushConfigUpdates.hs │ │ │ │ ├── FlushRegistryUpdates.hs │ │ │ │ ├── FlushTransferProposal.hs │ │ │ │ ├── LargeProposal.hs │ │ │ │ ├── NotEnoughFrozen.hs │ │ │ │ ├── ProposeXtzProposal.hs │ │ │ │ ├── RegistryView.hs │ │ │ │ ├── RequiredFrozen.hs │ │ │ │ ├── TokensToBurn.hs │ │ │ │ ├── UpdateDelegate.hs │ │ │ │ ├── UpdateGuardian.hs │ │ │ │ ├── UpdateReceivers.hs │ │ │ │ ├── UpdateReceiversDelete.hs │ │ │ │ └── ZeroXtz.hs │ │ │ └── Types.hs │ │ ├── TreasuryDAO.hs │ │ └── TreasuryDAO │ │ │ └── Types.hs │ └── Plist │ │ ├── Contract.hs │ │ ├── Property.hs │ │ ├── Type.hs │ │ └── plist_contract.mligo │ └── Tree.hs ├── scripts ├── ci │ ├── validate-cabal-files.sh │ └── validate-typescript-api.sh ├── generate-cabal-files.sh ├── generate_error_code.hs ├── lint.sh └── test.bats ├── snapshot-stack2cabal.yaml ├── src ├── base_DAO.mligo ├── common.mligo ├── common │ ├── errors.mligo │ └── types.mligo ├── defaults.mligo ├── error_codes.mligo ├── helper │ └── unpack.mligo ├── management.mligo ├── parameter.mligo ├── permit.mligo ├── proposal.mligo ├── proposal │ ├── freeze_history.mligo │ ├── helpers.mligo │ ├── plist.mligo │ └── quorum_threshold.mligo ├── storage.mligo ├── token.mligo ├── types.mligo └── variants │ ├── lambda │ ├── common.mligo │ ├── implementation.mligo │ ├── storage.mligo │ └── types.mligo │ ├── lambdaregistry │ ├── implementation.mligo │ ├── storage.mligo │ └── types.mligo │ ├── lambdatreasury │ ├── implementation.mligo │ ├── storage.mligo │ └── types.mligo │ ├── registry │ ├── implementation.mligo │ ├── storage.mligo │ └── types.mligo │ ├── template │ ├── implementation.mligo │ └── storage.mligo │ ├── treasury │ ├── implementation.mligo │ ├── storage.mligo │ └── types.mligo │ └── trivial │ ├── implementation.mligo │ └── storage.mligo ├── stack.yaml ├── stack.yaml.lock ├── stack.yaml.lock.license └── typescript └── baseDAO ├── .npmignore ├── README.md ├── README.md.license ├── etc └── basedao-sdk.api.md ├── package.json ├── src ├── api.ts ├── common.ts ├── generated │ ├── Accept_ownership.ts │ ├── ConcreteEp.ts │ ├── CustomEp.ts │ ├── Drop_proposal.ts │ ├── Flush.ts │ ├── Freeze.ts │ ├── Lookup_registry.ts │ ├── Parameter.ts │ ├── Propose.ts │ ├── RegistryCepDummy.ts │ ├── Transfer_contract_tokens.ts │ ├── Transfer_ownership.ts │ ├── Unfreeze.ts │ ├── Unstake_vote.ts │ ├── Update_delegate.ts │ └── Vote.ts └── index.ts ├── tsconfig.json └── yarn.lock /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint-universum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.hlint-universum.yaml -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /.weeder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/.weeder.yaml -------------------------------------------------------------------------------- /LICENSES/LicenseRef-MIT-TC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/LICENSES/LicenseRef-MIT-TC.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-MIT-TQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/LICENSES/LicenseRef-MIT-TQ.txt -------------------------------------------------------------------------------- /LICENSES/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/LICENSES/MPL-2.0.txt -------------------------------------------------------------------------------- /LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/README.md -------------------------------------------------------------------------------- /README.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/README.md.license -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/cabal.project -------------------------------------------------------------------------------- /cabal.project.freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/cabal.project.freeze -------------------------------------------------------------------------------- /cabal.project.freeze.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/cabal.project.freeze.license -------------------------------------------------------------------------------- /cabal.project.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/cabal.project.license -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/default.nix -------------------------------------------------------------------------------- /docs/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/building.md -------------------------------------------------------------------------------- /docs/code-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/code-style.md -------------------------------------------------------------------------------- /docs/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/error-codes.md -------------------------------------------------------------------------------- /docs/lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/lambda.md -------------------------------------------------------------------------------- /docs/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/registry.md -------------------------------------------------------------------------------- /docs/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/specification.md -------------------------------------------------------------------------------- /docs/treasury.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/treasury.md -------------------------------------------------------------------------------- /docs/trivial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/docs/trivial.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/flake.lock.license -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/flake.nix -------------------------------------------------------------------------------- /haskell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/LICENSE -------------------------------------------------------------------------------- /haskell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/Makefile -------------------------------------------------------------------------------- /haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/README.md -------------------------------------------------------------------------------- /haskell/README.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/README.md.license -------------------------------------------------------------------------------- /haskell/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/app/Main.hs -------------------------------------------------------------------------------- /haskell/baseDAO-ligo-meta.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/baseDAO-ligo-meta.cabal -------------------------------------------------------------------------------- /haskell/baseDAO-ligo-meta.cabal.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/baseDAO-ligo-meta.cabal.license -------------------------------------------------------------------------------- /haskell/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/package.yaml -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/Common/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/Common/Types.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/ErrorCodes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/ErrorCodes.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/LambdaDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/LambdaDAO/Types.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/RegistryDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/RegistryDAO/Types.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/TZIP16Metadata.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/TZIP16Metadata.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/TreasuryDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/TreasuryDAO/Types.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/BaseDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/BaseDAO/Types.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/Typescript.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/Typescript.hs -------------------------------------------------------------------------------- /haskell/src/Ligo/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/src/Ligo/Util.hs -------------------------------------------------------------------------------- /haskell/test/Ligo/BaseDAO/Contract.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Ligo/BaseDAO/Contract.hs -------------------------------------------------------------------------------- /haskell/test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Main.hs -------------------------------------------------------------------------------- /haskell/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/README.md -------------------------------------------------------------------------------- /haskell/test/README.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/README.md.license -------------------------------------------------------------------------------- /haskell/test/SMT/BaseDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/BaseDAO.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Common/Gen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Common/Gen.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Common/Helper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Common/Helper.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Common/Run.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Common/Run.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Common/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Common/Types.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Contract.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Contract.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Management.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Management.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Permit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Permit.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Proposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Proposal.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Proposal/FreezeHistory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Proposal/FreezeHistory.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Proposal/Plist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Proposal/Plist.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Proposal/QuorumThreshold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Proposal/QuorumThreshold.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Token.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Token.hs -------------------------------------------------------------------------------- /haskell/test/SMT/Model/BaseDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/Model/BaseDAO/Types.hs -------------------------------------------------------------------------------- /haskell/test/SMT/RegistryDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/RegistryDAO.hs -------------------------------------------------------------------------------- /haskell/test/SMT/TreasuryDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/SMT/TreasuryDAO.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Common.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Common/Errors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Common/Errors.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Common/StorageHelper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Common/StorageHelper.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/ErrorCode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/ErrorCode.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Management.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Management.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Management/TransferOwnership.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Management/TransferOwnership.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/OffChainViews.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/OffChainViews.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Plist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Plist.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Config.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Delegate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Delegate.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Flush.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Flush.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Propose.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Propose.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Quorum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Quorum.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Tokens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Tokens.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Proposal/Vote.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Proposal/Vote.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Token.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Token.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/BaseDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/BaseDAO/Types.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/Common.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/LambdaDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/LambdaDAO.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/LambdaRegistryDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/LambdaRegistryDAO.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/LambdaTreasuryDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/LambdaTreasuryDAO.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/Common.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/EmptyProposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/EmptyProposal.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/ExecuteWonProposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/ExecuteWonProposal.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/FlushConfigUpdates.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/FlushConfigUpdates.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/FlushRegistryUpdates.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/FlushRegistryUpdates.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/FlushTransferProposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/FlushTransferProposal.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/LargeProposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/LargeProposal.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/NotEnoughFrozen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/NotEnoughFrozen.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/ProposeXtzProposal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/ProposeXtzProposal.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/RegistryView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/RegistryView.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/RequiredFrozen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/RequiredFrozen.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/TokensToBurn.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/TokensToBurn.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateDelegate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateDelegate.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateGuardian.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateGuardian.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateReceivers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateReceivers.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateReceiversDelete.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/UpdateReceiversDelete.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Tests/ZeroXtz.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Tests/ZeroXtz.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/RegistryDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/RegistryDAO/Types.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/TreasuryDAO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/TreasuryDAO.hs -------------------------------------------------------------------------------- /haskell/test/Test/Ligo/TreasuryDAO/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Ligo/TreasuryDAO/Types.hs -------------------------------------------------------------------------------- /haskell/test/Test/Plist/Contract.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Plist/Contract.hs -------------------------------------------------------------------------------- /haskell/test/Test/Plist/Property.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Plist/Property.hs -------------------------------------------------------------------------------- /haskell/test/Test/Plist/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Plist/Type.hs -------------------------------------------------------------------------------- /haskell/test/Test/Plist/plist_contract.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Test/Plist/plist_contract.mligo -------------------------------------------------------------------------------- /haskell/test/Tree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/haskell/test/Tree.hs -------------------------------------------------------------------------------- /scripts/ci/validate-cabal-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/scripts/ci/validate-cabal-files.sh -------------------------------------------------------------------------------- /scripts/ci/validate-typescript-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/scripts/ci/validate-typescript-api.sh -------------------------------------------------------------------------------- /scripts/generate-cabal-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/scripts/generate-cabal-files.sh -------------------------------------------------------------------------------- /scripts/generate_error_code.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/scripts/generate_error_code.hs -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/scripts/test.bats -------------------------------------------------------------------------------- /snapshot-stack2cabal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/snapshot-stack2cabal.yaml -------------------------------------------------------------------------------- /src/base_DAO.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/base_DAO.mligo -------------------------------------------------------------------------------- /src/common.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/common.mligo -------------------------------------------------------------------------------- /src/common/errors.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/common/errors.mligo -------------------------------------------------------------------------------- /src/common/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/common/types.mligo -------------------------------------------------------------------------------- /src/defaults.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/defaults.mligo -------------------------------------------------------------------------------- /src/error_codes.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/error_codes.mligo -------------------------------------------------------------------------------- /src/helper/unpack.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/helper/unpack.mligo -------------------------------------------------------------------------------- /src/management.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/management.mligo -------------------------------------------------------------------------------- /src/parameter.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/parameter.mligo -------------------------------------------------------------------------------- /src/permit.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/permit.mligo -------------------------------------------------------------------------------- /src/proposal.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/proposal.mligo -------------------------------------------------------------------------------- /src/proposal/freeze_history.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/proposal/freeze_history.mligo -------------------------------------------------------------------------------- /src/proposal/helpers.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/proposal/helpers.mligo -------------------------------------------------------------------------------- /src/proposal/plist.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/proposal/plist.mligo -------------------------------------------------------------------------------- /src/proposal/quorum_threshold.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/proposal/quorum_threshold.mligo -------------------------------------------------------------------------------- /src/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/storage.mligo -------------------------------------------------------------------------------- /src/token.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/token.mligo -------------------------------------------------------------------------------- /src/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/types.mligo -------------------------------------------------------------------------------- /src/variants/lambda/common.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambda/common.mligo -------------------------------------------------------------------------------- /src/variants/lambda/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambda/implementation.mligo -------------------------------------------------------------------------------- /src/variants/lambda/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambda/storage.mligo -------------------------------------------------------------------------------- /src/variants/lambda/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambda/types.mligo -------------------------------------------------------------------------------- /src/variants/lambdaregistry/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambdaregistry/implementation.mligo -------------------------------------------------------------------------------- /src/variants/lambdaregistry/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambdaregistry/storage.mligo -------------------------------------------------------------------------------- /src/variants/lambdaregistry/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambdaregistry/types.mligo -------------------------------------------------------------------------------- /src/variants/lambdatreasury/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambdatreasury/implementation.mligo -------------------------------------------------------------------------------- /src/variants/lambdatreasury/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambdatreasury/storage.mligo -------------------------------------------------------------------------------- /src/variants/lambdatreasury/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/lambdatreasury/types.mligo -------------------------------------------------------------------------------- /src/variants/registry/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/registry/implementation.mligo -------------------------------------------------------------------------------- /src/variants/registry/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/registry/storage.mligo -------------------------------------------------------------------------------- /src/variants/registry/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/registry/types.mligo -------------------------------------------------------------------------------- /src/variants/template/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/template/implementation.mligo -------------------------------------------------------------------------------- /src/variants/template/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/template/storage.mligo -------------------------------------------------------------------------------- /src/variants/treasury/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/treasury/implementation.mligo -------------------------------------------------------------------------------- /src/variants/treasury/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/treasury/storage.mligo -------------------------------------------------------------------------------- /src/variants/treasury/types.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/treasury/types.mligo -------------------------------------------------------------------------------- /src/variants/trivial/implementation.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/trivial/implementation.mligo -------------------------------------------------------------------------------- /src/variants/trivial/storage.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/src/variants/trivial/storage.mligo -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /stack.yaml.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/stack.yaml.lock.license -------------------------------------------------------------------------------- /typescript/baseDAO/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/.npmignore -------------------------------------------------------------------------------- /typescript/baseDAO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/README.md -------------------------------------------------------------------------------- /typescript/baseDAO/README.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/README.md.license -------------------------------------------------------------------------------- /typescript/baseDAO/etc/basedao-sdk.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/etc/basedao-sdk.api.md -------------------------------------------------------------------------------- /typescript/baseDAO/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/package.json -------------------------------------------------------------------------------- /typescript/baseDAO/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/api.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/common.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Accept_ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Accept_ownership.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/ConcreteEp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/ConcreteEp.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/CustomEp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/CustomEp.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Drop_proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Drop_proposal.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Flush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Flush.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Freeze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Freeze.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Lookup_registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Lookup_registry.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Parameter.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Propose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Propose.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/RegistryCepDummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/RegistryCepDummy.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Transfer_contract_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Transfer_contract_tokens.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Transfer_ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Transfer_ownership.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Unfreeze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Unfreeze.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Unstake_vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Unstake_vote.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Update_delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Update_delegate.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/generated/Vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/generated/Vote.ts -------------------------------------------------------------------------------- /typescript/baseDAO/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/src/index.ts -------------------------------------------------------------------------------- /typescript/baseDAO/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/tsconfig.json -------------------------------------------------------------------------------- /typescript/baseDAO/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezos-commons/baseDAO/HEAD/typescript/baseDAO/yarn.lock --------------------------------------------------------------------------------