├── .env.example ├── .github └── workflows │ └── pull-data.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── icon.svg ├── package.json ├── report.md ├── src ├── abi │ └── Ethereum │ │ ├── dai.json │ │ ├── mana.json │ │ ├── usdc.json │ │ ├── usdt.json │ │ ├── vesting.json │ │ └── vesting_v2.json ├── budgets.json ├── entities │ ├── Networks.ts │ ├── Tags.ts │ ├── Teams.ts │ ├── Tokens.ts │ └── Wallets.ts ├── export-api-v2.ts ├── export-api.ts ├── export-balances.ts ├── export-budgets.test.ts ├── export-budgets.ts ├── export-collections.ts ├── export-curations.ts ├── export-financials.ts ├── export-kpis.ts ├── export-members.ts ├── export-projects.ts ├── export-proposals.ts ├── export-report.ts ├── export-teams.ts ├── export-transactions.ts ├── export-votes.ts ├── export-wearables.ts ├── fetchCoingeckoPrices.ts ├── interfaces │ ├── Api.ts │ ├── Balance.ts │ ├── Collection.ts │ ├── Covalent.ts │ ├── Curation.ts │ ├── Financial.ts │ ├── GovernanceProposal.ts │ ├── KPIs.ts │ ├── Members.ts │ ├── Project.ts │ ├── Proposal.ts │ ├── Transactions │ │ ├── Events.ts │ │ ├── TokenPrices.ts │ │ ├── Transactions.ts │ │ └── Transfers.ts │ ├── Vote.ts │ └── Wearable.ts ├── kpis-utils.test.ts ├── kpis-utils.ts ├── rollbar.ts ├── upload.ts ├── utils.test.ts ├── utils.ts ├── utils │ └── addresses.ts ├── vp-utils.test.ts └── vp-utils.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/pull-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/.github/workflows/pull-data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | public/ 3 | .env 4 | .DS_Store 5 | build/ -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/README.md -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/icon.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/package.json -------------------------------------------------------------------------------- /report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/report.md -------------------------------------------------------------------------------- /src/abi/Ethereum/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/abi/Ethereum/dai.json -------------------------------------------------------------------------------- /src/abi/Ethereum/mana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/abi/Ethereum/mana.json -------------------------------------------------------------------------------- /src/abi/Ethereum/usdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/abi/Ethereum/usdc.json -------------------------------------------------------------------------------- /src/abi/Ethereum/usdt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/abi/Ethereum/usdt.json -------------------------------------------------------------------------------- /src/abi/Ethereum/vesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/abi/Ethereum/vesting.json -------------------------------------------------------------------------------- /src/abi/Ethereum/vesting_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/abi/Ethereum/vesting_v2.json -------------------------------------------------------------------------------- /src/budgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/budgets.json -------------------------------------------------------------------------------- /src/entities/Networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/entities/Networks.ts -------------------------------------------------------------------------------- /src/entities/Tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/entities/Tags.ts -------------------------------------------------------------------------------- /src/entities/Teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/entities/Teams.ts -------------------------------------------------------------------------------- /src/entities/Tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/entities/Tokens.ts -------------------------------------------------------------------------------- /src/entities/Wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/entities/Wallets.ts -------------------------------------------------------------------------------- /src/export-api-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-api-v2.ts -------------------------------------------------------------------------------- /src/export-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-api.ts -------------------------------------------------------------------------------- /src/export-balances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-balances.ts -------------------------------------------------------------------------------- /src/export-budgets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-budgets.test.ts -------------------------------------------------------------------------------- /src/export-budgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-budgets.ts -------------------------------------------------------------------------------- /src/export-collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-collections.ts -------------------------------------------------------------------------------- /src/export-curations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-curations.ts -------------------------------------------------------------------------------- /src/export-financials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-financials.ts -------------------------------------------------------------------------------- /src/export-kpis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-kpis.ts -------------------------------------------------------------------------------- /src/export-members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-members.ts -------------------------------------------------------------------------------- /src/export-projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-projects.ts -------------------------------------------------------------------------------- /src/export-proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-proposals.ts -------------------------------------------------------------------------------- /src/export-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-report.ts -------------------------------------------------------------------------------- /src/export-teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-teams.ts -------------------------------------------------------------------------------- /src/export-transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-transactions.ts -------------------------------------------------------------------------------- /src/export-votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-votes.ts -------------------------------------------------------------------------------- /src/export-wearables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/export-wearables.ts -------------------------------------------------------------------------------- /src/fetchCoingeckoPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/fetchCoingeckoPrices.ts -------------------------------------------------------------------------------- /src/interfaces/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Api.ts -------------------------------------------------------------------------------- /src/interfaces/Balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Balance.ts -------------------------------------------------------------------------------- /src/interfaces/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Collection.ts -------------------------------------------------------------------------------- /src/interfaces/Covalent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Covalent.ts -------------------------------------------------------------------------------- /src/interfaces/Curation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Curation.ts -------------------------------------------------------------------------------- /src/interfaces/Financial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Financial.ts -------------------------------------------------------------------------------- /src/interfaces/GovernanceProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/GovernanceProposal.ts -------------------------------------------------------------------------------- /src/interfaces/KPIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/KPIs.ts -------------------------------------------------------------------------------- /src/interfaces/Members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Members.ts -------------------------------------------------------------------------------- /src/interfaces/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Project.ts -------------------------------------------------------------------------------- /src/interfaces/Proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Proposal.ts -------------------------------------------------------------------------------- /src/interfaces/Transactions/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Transactions/Events.ts -------------------------------------------------------------------------------- /src/interfaces/Transactions/TokenPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Transactions/TokenPrices.ts -------------------------------------------------------------------------------- /src/interfaces/Transactions/Transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Transactions/Transactions.ts -------------------------------------------------------------------------------- /src/interfaces/Transactions/Transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Transactions/Transfers.ts -------------------------------------------------------------------------------- /src/interfaces/Vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Vote.ts -------------------------------------------------------------------------------- /src/interfaces/Wearable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/interfaces/Wearable.ts -------------------------------------------------------------------------------- /src/kpis-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/kpis-utils.test.ts -------------------------------------------------------------------------------- /src/kpis-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/kpis-utils.ts -------------------------------------------------------------------------------- /src/rollbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/rollbar.ts -------------------------------------------------------------------------------- /src/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/upload.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/utils/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/utils/addresses.ts -------------------------------------------------------------------------------- /src/vp-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/vp-utils.test.ts -------------------------------------------------------------------------------- /src/vp-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/src/vp-utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decentraland-DAO/transparency/HEAD/tsconfig.json --------------------------------------------------------------------------------