diff --git a/.github/workflows/drips-charts.yml b/.github/workflows/drips-charts.yml new file mode 100644 index 0000000..16d0b21 --- /dev/null +++ b/.github/workflows/drips-charts.yml @@ -0,0 +1,41 @@ +name: Drips💧 Charts + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11"] + + defaults: + run: + working-directory: drips/charts + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Generate Charts + run: | + python generate-charts.py diff --git a/.github/workflows/drips-csvs-nightly.yml b/.github/workflows/drips-csvs-nightly.yml new file mode 100644 index 0000000..abf23c2 --- /dev/null +++ b/.github/workflows/drips-csvs-nightly.yml @@ -0,0 +1,43 @@ +name: Drips💧 CSVs - Nightly + +on: + schedule: + - cron: 49 23 * * * + +jobs: + build: + + runs-on: ubuntu-latest + + defaults: + run: + working-directory: drips/csvs + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js 20.x + uses: actions/setup-node@v4 + with: + node-version: 20.x + cache: 'npm' + cache-dependency-path: drips/csvs/package-lock.json + + - run: npm ci + - run: npx tsc + + - run: node query-events.js + + - name: Git Config + run: | + git config user.name 'Nya Ξlimu' + git config user.email 'info@elimu.ai' + + - name: Git Commit + run: | + git add *.csv + git commit -m 'chore(drips💧): nightly build' --allow-empty + + - name: Git Push + run: | + git push diff --git a/.github/workflows/drips-csvs.yml b/.github/workflows/drips-csvs.yml new file mode 100644 index 0000000..89684d1 --- /dev/null +++ b/.github/workflows/drips-csvs.yml @@ -0,0 +1,32 @@ +name: Drips💧 CSVs + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + defaults: + run: + working-directory: drips/csvs + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + cache-dependency-path: drips/csvs/package-lock.json + - run: npm ci + - run: npx tsc diff --git a/.github/workflows/node.js-nightly.yml b/.github/workflows/funding-splits-nightly.yml similarity index 81% rename from .github/workflows/node.js-nightly.yml rename to .github/workflows/funding-splits-nightly.yml index c62d431..9065f59 100644 --- a/.github/workflows/node.js-nightly.yml +++ b/.github/workflows/funding-splits-nightly.yml @@ -1,11 +1,11 @@ -name: Node.js CI - Nightly +name: Funding Splits - Nightly on: schedule: - cron: 59 23 * * * jobs: - nightly_build: + build: runs-on: ubuntu-latest @@ -26,7 +26,7 @@ jobs: - run: npm ci - run: npx tsc - - run: node ./query-events.js + - run: node query-events.js - name: Git Config run: | @@ -36,7 +36,7 @@ jobs: - name: Git Commit run: | git add *.csv - git commit -m 'chore(distribution): nightly build' --allow-empty + git commit -m 'chore(funding-splits): nightly build' --allow-empty - name: Git Push run: | diff --git a/.github/workflows/node.js.yml b/.github/workflows/funding-splits.yml similarity index 97% rename from .github/workflows/node.js.yml rename to .github/workflows/funding-splits.yml index bb7641b..3d4ff06 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/funding-splits.yml @@ -1,4 +1,4 @@ -name: Node.js CI +name: Funding Splits on: push: diff --git a/drips/charts/README.md b/drips/charts/README.md new file mode 100644 index 0000000..1039165 --- /dev/null +++ b/drips/charts/README.md @@ -0,0 +1,10 @@ +# Drips Charts + +> Charts based on the CSVs in [`../csvs/`](../csvs/) + +## Run the Python code + +```bash +pip install -r requirements.txt +python generate-charts.py +``` diff --git a/drips/charts/generate-charts.py b/drips/charts/generate-charts.py new file mode 100644 index 0000000..ec985d7 --- /dev/null +++ b/drips/charts/generate-charts.py @@ -0,0 +1,90 @@ +import matplotlib.pyplot as plt +import os +import pandas + +repos = [ + # content.elimu.eth + 'crowdsource', + 'webapp', + + # engineering.elimu.eth + 'content-provider', + 'keyboard', + 'kukariri', + 'ml-event-simulator', + 'ml-storybook-reading-level', + 'ml-storybook-recommender', + 'model', + + # reading.engineering.elimu.eth + 'VoltAir', + 'familiar-word-reading', + 'herufi', + 'image-picker', + 'silabi', + 'sound-cards', + 'storybooks', + 'visemes', + 'vitabu', + 'walezi-android', + + # writing.engineering.elimu.eth + 'chat', + 'handwriting-letters', + 'handwriting-numbers', + + # math.engineering.elimu.eth + 'CameraColorPicker', + 'android_packages_apps_Calculator', + 'missing-number', + 'nambari', + 'nyas-space-quest', + 'nyas-space-quest-qd', + 'shapi', + 'soga', + 'tilt-game', + + # distribution.elimu.eth + 'analytics', + 'appstore', + 'launcher', + 'ml-authentication', + 'start-guide', + 'website', + 'web3-sponsors', +] +for repo in repos: + print() + print('repo:', repo) + + csv_path = f'../csvs/splits_{repo}.csv' + print('csv_path:', csv_path) + if not os.path.isfile(csv_path): + print('\033[93m' + 'File not found' + '\033[0m') + continue + + splits_csv = pandas.read_csv(csv_path) + print('splits_csv: \n', splits_csv) + print('splits_csv.columns:', splits_csv.columns) + print('splits_csv.columns[1:]:', splits_csv.columns[1:]) + + # Sort values based on the most recent split event + last_column = splits_csv.columns[-1] + print('last_column:', last_column) + splits_csv = splits_csv.sort_values(by=last_column, ascending=False) + print('splits_csv: \n', splits_csv) + + splits_set_event_blocks = splits_csv.columns[1:].values + print('splits_set_event_blocks:', splits_set_event_blocks) + + ethereum_addresses = splits_csv['ethereum_address'].values + print('ethereum_addresses: \n', ethereum_addresses) + + impact_percentages = splits_csv[splits_set_event_blocks].values + print('impact_percentages: \n', impact_percentages) + + plt.figure(figsize=(12.8, 4.8)) + plt.stackplot(splits_set_event_blocks, impact_percentages, labels=ethereum_addresses) + plt.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + plt.tight_layout() + plt.savefig(f'splits_{repo}.png') diff --git a/drips/charts/requirements.txt b/drips/charts/requirements.txt new file mode 100644 index 0000000..1cbd3ff --- /dev/null +++ b/drips/charts/requirements.txt @@ -0,0 +1,2 @@ +matplotlib==3.8.2 +pandas==2.2.2 diff --git a/drips/charts/splits_VoltAir.png b/drips/charts/splits_VoltAir.png new file mode 100644 index 0000000..686e0a8 Binary files /dev/null and b/drips/charts/splits_VoltAir.png differ diff --git a/drips/charts/splits_analytics.png b/drips/charts/splits_analytics.png new file mode 100644 index 0000000..daa80e6 Binary files /dev/null and b/drips/charts/splits_analytics.png differ diff --git a/drips/charts/splits_appstore.png b/drips/charts/splits_appstore.png new file mode 100644 index 0000000..9134d4b Binary files /dev/null and b/drips/charts/splits_appstore.png differ diff --git a/drips/charts/splits_launcher.png b/drips/charts/splits_launcher.png new file mode 100644 index 0000000..c7fe353 Binary files /dev/null and b/drips/charts/splits_launcher.png differ diff --git a/drips/charts/splits_nyas-space-quest.png b/drips/charts/splits_nyas-space-quest.png new file mode 100644 index 0000000..64b354b Binary files /dev/null and b/drips/charts/splits_nyas-space-quest.png differ diff --git a/drips/charts/splits_soga.png b/drips/charts/splits_soga.png new file mode 100644 index 0000000..f3f53a6 Binary files /dev/null and b/drips/charts/splits_soga.png differ diff --git a/drips/charts/splits_start-guide.png b/drips/charts/splits_start-guide.png new file mode 100644 index 0000000..2510a63 Binary files /dev/null and b/drips/charts/splits_start-guide.png differ diff --git a/drips/charts/splits_vitabu.png b/drips/charts/splits_vitabu.png new file mode 100644 index 0000000..17515ee Binary files /dev/null and b/drips/charts/splits_vitabu.png differ diff --git a/drips/charts/splits_webapp.png b/drips/charts/splits_webapp.png new file mode 100644 index 0000000..5d14a4c Binary files /dev/null and b/drips/charts/splits_webapp.png differ diff --git a/drips/charts/splits_website.png b/drips/charts/splits_website.png new file mode 100644 index 0000000..6cb2ab7 Binary files /dev/null and b/drips/charts/splits_website.png differ diff --git a/drips/csvs/.gitignore b/drips/csvs/.gitignore new file mode 100644 index 0000000..23a608b --- /dev/null +++ b/drips/csvs/.gitignore @@ -0,0 +1,2 @@ +node_modules +*.js diff --git a/drips/csvs/README.md b/drips/csvs/README.md new file mode 100644 index 0000000..4156603 --- /dev/null +++ b/drips/csvs/README.md @@ -0,0 +1,21 @@ +# Drips CSVs + +> CSVs with data per split event + +## Install Dependencies + +```bash +npm install +``` + +## Run the TypeScript Compiler + +```bash +npx tsc +``` + +## Run the JavaScript + +```bash +node query-events.js +``` diff --git a/drips/csvs/abis/Drips.json b/drips/csvs/abis/Drips.json new file mode 100644 index 0000000..3a73f5c --- /dev/null +++ b/drips/csvs/abis/Drips.json @@ -0,0 +1,757 @@ +{ + "abi": [ + { + "inputs": [{ "internalType": "uint32", "name": "cycleSecs_", "type": "uint32" }], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "bytes32", "name": "key", "type": "bytes32" }, + { "indexed": false, "internalType": "bytes", "name": "value", "type": "bytes" } + ], + "name": "AccountMetadataEmitted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": false, "internalType": "address", "name": "previousAdmin", "type": "address" }, + { "indexed": false, "internalType": "address", "name": "newAdmin", "type": "address" } + ], + "name": "AdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": true, "internalType": "address", "name": "beacon", "type": "address" }], + "name": "BeaconUpgraded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": false, "internalType": "uint128", "name": "amt", "type": "uint128" } + ], + "name": "Collectable", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": false, "internalType": "uint128", "name": "collected", "type": "uint128" } + ], + "name": "Collected", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint32", "name": "driverId", "type": "uint32" }, + { "indexed": true, "internalType": "address", "name": "oldDriverAddr", "type": "address" }, + { "indexed": true, "internalType": "address", "name": "newDriverAddr", "type": "address" } + ], + "name": "DriverAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint32", "name": "driverId", "type": "uint32" }, + { "indexed": true, "internalType": "address", "name": "driverAddr", "type": "address" } + ], + "name": "DriverRegistered", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "uint256", "name": "receiver", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": false, "internalType": "uint128", "name": "amt", "type": "uint128" } + ], + "name": "Given", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "address", "name": "currentAdmin", "type": "address" }, + { "indexed": true, "internalType": "address", "name": "newAdmin", "type": "address" } + ], + "name": "NewAdminProposed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": true, "internalType": "address", "name": "pauser", "type": "address" }], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "address", "name": "pauser", "type": "address" }, + { "indexed": true, "internalType": "address", "name": "admin", "type": "address" } + ], + "name": "PauserGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "address", "name": "pauser", "type": "address" }, + { "indexed": true, "internalType": "address", "name": "admin", "type": "address" } + ], + "name": "PauserRevoked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": false, "internalType": "uint128", "name": "amt", "type": "uint128" }, + { "indexed": false, "internalType": "uint32", "name": "receivableCycles", "type": "uint32" } + ], + "name": "ReceivedStreams", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "uint256", "name": "receiver", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": false, "internalType": "uint128", "name": "amt", "type": "uint128" } + ], + "name": "Split", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "bytes32", "name": "receiversHash", "type": "bytes32" }, + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": false, "internalType": "uint32", "name": "weight", "type": "uint32" } + ], + "name": "SplitsReceiverSeen", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "bytes32", "name": "receiversHash", "type": "bytes32" } + ], + "name": "SplitsSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": true, "internalType": "uint256", "name": "senderId", "type": "uint256" }, + { "indexed": false, "internalType": "uint128", "name": "amt", "type": "uint128" }, + { "indexed": false, "internalType": "bytes32[]", "name": "streamsHistoryHashes", "type": "bytes32[]" } + ], + "name": "SqueezedStreams", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "bytes32", "name": "receiversHash", "type": "bytes32" }, + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": false, "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "name": "StreamReceiverSeen", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": true, "internalType": "bytes32", "name": "receiversHash", "type": "bytes32" }, + { "indexed": false, "internalType": "bytes32", "name": "streamsHistoryHash", "type": "bytes32" }, + { "indexed": false, "internalType": "uint128", "name": "balance", "type": "uint128" }, + { "indexed": false, "internalType": "uint32", "name": "maxEnd", "type": "uint32" } + ], + "name": "StreamsSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": true, "internalType": "address", "name": "pauser", "type": "address" }], + "name": "Unpaused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": true, "internalType": "address", "name": "implementation", "type": "address" }], + "name": "Upgraded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "indexed": true, "internalType": "address", "name": "receiver", "type": "address" }, + { "indexed": false, "internalType": "uint256", "name": "amt", "type": "uint256" } + ], + "name": "Withdrawn", + "type": "event" + }, + { + "inputs": [], + "name": "AMT_PER_SEC_EXTRA_DECIMALS", + "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "AMT_PER_SEC_MULTIPLIER", + "outputs": [{ "internalType": "uint160", "name": "", "type": "uint160" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DRIVER_ID_OFFSET", + "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "MAX_SPLITS_RECEIVERS", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "MAX_STREAMS_RECEIVERS", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "MAX_TOTAL_BALANCE", + "outputs": [{ "internalType": "uint128", "name": "", "type": "uint128" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TOTAL_SPLITS_WEIGHT", + "outputs": [{ "internalType": "uint32", "name": "", "type": "uint32" }], + "stateMutability": "view", + "type": "function" + }, + { "inputs": [], "name": "acceptAdmin", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [], + "name": "admin", + "outputs": [{ "internalType": "address", "name": "", "type": "address" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "allPausers", + "outputs": [{ "internalType": "address[]", "name": "pausersList", "type": "address[]" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "internalType": "struct StreamReceiver[]", + "name": "currReceivers", + "type": "tuple[]" + }, + { "internalType": "uint32", "name": "timestamp", "type": "uint32" } + ], + "name": "balanceAt", + "outputs": [{ "internalType": "uint128", "name": "balance", "type": "uint128" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "internalType": "contract IERC20", "name": "erc20", "type": "address" }], + "name": "balances", + "outputs": [ + { "internalType": "uint128", "name": "streamsBalance", "type": "uint128" }, + { "internalType": "uint128", "name": "splitsBalance", "type": "uint128" } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" } + ], + "name": "collect", + "outputs": [{ "internalType": "uint128", "name": "amt", "type": "uint128" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" } + ], + "name": "collectable", + "outputs": [{ "internalType": "uint128", "name": "amt", "type": "uint128" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "cycleSecs", + "outputs": [{ "internalType": "uint32", "name": "", "type": "uint32" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "internalType": "uint32", "name": "driverId", "type": "uint32" }], + "name": "driverAddress", + "outputs": [{ "internalType": "address", "name": "driverAddr", "type": "address" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { + "components": [ + { "internalType": "bytes32", "name": "key", "type": "bytes32" }, + { "internalType": "bytes", "name": "value", "type": "bytes" } + ], + "internalType": "struct AccountMetadata[]", + "name": "accountMetadata", + "type": "tuple[]" + } + ], + "name": "emitAccountMetadata", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "uint256", "name": "receiver", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "internalType": "uint128", "name": "amt", "type": "uint128" } + ], + "name": "give", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [{ "internalType": "address", "name": "pauser", "type": "address" }], + "name": "grantPauser", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "uint32", "name": "weight", "type": "uint32" } + ], + "internalType": "struct SplitsReceiver[]", + "name": "receivers", + "type": "tuple[]" + } + ], + "name": "hashSplits", + "outputs": [{ "internalType": "bytes32", "name": "receiversHash", "type": "bytes32" }], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "internalType": "struct StreamReceiver[]", + "name": "receivers", + "type": "tuple[]" + } + ], + "name": "hashStreams", + "outputs": [{ "internalType": "bytes32", "name": "streamsHash", "type": "bytes32" }], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { "internalType": "bytes32", "name": "oldStreamsHistoryHash", "type": "bytes32" }, + { "internalType": "bytes32", "name": "streamsHash", "type": "bytes32" }, + { "internalType": "uint32", "name": "updateTime", "type": "uint32" }, + { "internalType": "uint32", "name": "maxEnd", "type": "uint32" } + ], + "name": "hashStreamsHistory", + "outputs": [{ "internalType": "bytes32", "name": "streamsHistoryHash", "type": "bytes32" }], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "implementation", + "outputs": [{ "internalType": "address", "name": "", "type": "address" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "isPaused", + "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "internalType": "address", "name": "pauser", "type": "address" }], + "name": "isPauser", + "outputs": [{ "internalType": "bool", "name": "isAddrPauser", "type": "bool" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "minAmtPerSec", + "outputs": [{ "internalType": "uint160", "name": "", "type": "uint160" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "nextDriverId", + "outputs": [{ "internalType": "uint32", "name": "driverId", "type": "uint32" }], + "stateMutability": "view", + "type": "function" + }, + { "inputs": [], "name": "pause", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [{ "internalType": "address", "name": "newAdmin", "type": "address" }], + "name": "proposeNewAdmin", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "proposedAdmin", + "outputs": [{ "internalType": "address", "name": "", "type": "address" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proxiableUUID", + "outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" } + ], + "name": "receivableStreamsCycles", + "outputs": [{ "internalType": "uint32", "name": "cycles", "type": "uint32" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "internalType": "uint32", "name": "maxCycles", "type": "uint32" } + ], + "name": "receiveStreams", + "outputs": [{ "internalType": "uint128", "name": "receivedAmt", "type": "uint128" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "internalType": "uint32", "name": "maxCycles", "type": "uint32" } + ], + "name": "receiveStreamsResult", + "outputs": [{ "internalType": "uint128", "name": "receivableAmt", "type": "uint128" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "internalType": "address", "name": "driverAddr", "type": "address" }], + "name": "registerDriver", + "outputs": [{ "internalType": "uint32", "name": "driverId", "type": "uint32" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { "inputs": [], "name": "renounceAdmin", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [{ "internalType": "address", "name": "pauser", "type": "address" }], + "name": "revokePauser", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "uint32", "name": "weight", "type": "uint32" } + ], + "internalType": "struct SplitsReceiver[]", + "name": "receivers", + "type": "tuple[]" + } + ], + "name": "setSplits", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "internalType": "struct StreamReceiver[]", + "name": "currReceivers", + "type": "tuple[]" + }, + { "internalType": "int128", "name": "balanceDelta", "type": "int128" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "internalType": "struct StreamReceiver[]", + "name": "newReceivers", + "type": "tuple[]" + }, + { "internalType": "uint32", "name": "maxEndHint1", "type": "uint32" }, + { "internalType": "uint32", "name": "maxEndHint2", "type": "uint32" } + ], + "name": "setStreams", + "outputs": [{ "internalType": "int128", "name": "realBalanceDelta", "type": "int128" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "uint32", "name": "weight", "type": "uint32" } + ], + "internalType": "struct SplitsReceiver[]", + "name": "currReceivers", + "type": "tuple[]" + } + ], + "name": "split", + "outputs": [ + { "internalType": "uint128", "name": "collectableAmt", "type": "uint128" }, + { "internalType": "uint128", "name": "splitAmt", "type": "uint128" } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "uint32", "name": "weight", "type": "uint32" } + ], + "internalType": "struct SplitsReceiver[]", + "name": "currReceivers", + "type": "tuple[]" + }, + { "internalType": "uint128", "name": "amount", "type": "uint128" } + ], + "name": "splitResult", + "outputs": [ + { "internalType": "uint128", "name": "collectableAmt", "type": "uint128" }, + { "internalType": "uint128", "name": "splitAmt", "type": "uint128" } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "internalType": "uint256", "name": "accountId", "type": "uint256" }], + "name": "splitsHash", + "outputs": [{ "internalType": "bytes32", "name": "currSplitsHash", "type": "bytes32" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" } + ], + "name": "splittable", + "outputs": [{ "internalType": "uint128", "name": "amt", "type": "uint128" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "internalType": "uint256", "name": "senderId", "type": "uint256" }, + { "internalType": "bytes32", "name": "historyHash", "type": "bytes32" }, + { + "components": [ + { "internalType": "bytes32", "name": "streamsHash", "type": "bytes32" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "internalType": "struct StreamReceiver[]", + "name": "receivers", + "type": "tuple[]" + }, + { "internalType": "uint32", "name": "updateTime", "type": "uint32" }, + { "internalType": "uint32", "name": "maxEnd", "type": "uint32" } + ], + "internalType": "struct StreamsHistory[]", + "name": "streamsHistory", + "type": "tuple[]" + } + ], + "name": "squeezeStreams", + "outputs": [{ "internalType": "uint128", "name": "amt", "type": "uint128" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "internalType": "uint256", "name": "senderId", "type": "uint256" }, + { "internalType": "bytes32", "name": "historyHash", "type": "bytes32" }, + { + "components": [ + { "internalType": "bytes32", "name": "streamsHash", "type": "bytes32" }, + { + "components": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "StreamConfig", "name": "config", "type": "uint256" } + ], + "internalType": "struct StreamReceiver[]", + "name": "receivers", + "type": "tuple[]" + }, + { "internalType": "uint32", "name": "updateTime", "type": "uint32" }, + { "internalType": "uint32", "name": "maxEnd", "type": "uint32" } + ], + "internalType": "struct StreamsHistory[]", + "name": "streamsHistory", + "type": "tuple[]" + } + ], + "name": "squeezeStreamsResult", + "outputs": [{ "internalType": "uint128", "name": "amt", "type": "uint128" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "accountId", "type": "uint256" }, + { "internalType": "contract IERC20", "name": "erc20", "type": "address" } + ], + "name": "streamsState", + "outputs": [ + { "internalType": "bytes32", "name": "streamsHash", "type": "bytes32" }, + { "internalType": "bytes32", "name": "streamsHistoryHash", "type": "bytes32" }, + { "internalType": "uint32", "name": "updateTime", "type": "uint32" }, + { "internalType": "uint128", "name": "balance", "type": "uint128" }, + { "internalType": "uint32", "name": "maxEnd", "type": "uint32" } + ], + "stateMutability": "view", + "type": "function" + }, + { "inputs": [], "name": "unpause", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { "internalType": "uint32", "name": "driverId", "type": "uint32" }, + { "internalType": "address", "name": "newDriverAddr", "type": "address" } + ], + "name": "updateDriverAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [{ "internalType": "address", "name": "newImplementation", "type": "address" }], + "name": "upgradeTo", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "newImplementation", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "upgradeToAndCall", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "contract IERC20", "name": "erc20", "type": "address" }, + { "internalType": "address", "name": "receiver", "type": "address" }, + { "internalType": "uint256", "name": "amt", "type": "uint256" } + ], + "name": "withdraw", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ] +} diff --git a/drips/csvs/package-lock.json b/drips/csvs/package-lock.json new file mode 100644 index 0000000..61344e6 --- /dev/null +++ b/drips/csvs/package-lock.json @@ -0,0 +1,123 @@ +{ + "name": "csvs", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "csvs", + "version": "0.0.1", + "license": "MIT", + "dependencies": { + "csvs": "file:", + "ethers": "^6.13.2", + "typescript": "^5.5.4" + } + }, + "node_modules/@adraffy/ens-normalize": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz", + "integrity": "sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==" + }, + "node_modules/@noble/curves": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz", + "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==", + "dependencies": { + "@noble/hashes": "1.3.2" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz", + "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@types/node": { + "version": "18.15.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz", + "integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==" + }, + "node_modules/aes-js": { + "version": "4.0.0-beta.5", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz", + "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==" + }, + "node_modules/csvs": { + "resolved": "", + "link": true + }, + "node_modules/ethers": { + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.2.tgz", + "integrity": "sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/ethers-io/" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "dependencies": { + "@adraffy/ens-normalize": "1.10.1", + "@noble/curves": "1.2.0", + "@noble/hashes": "1.3.2", + "@types/node": "18.15.13", + "aes-js": "4.0.0-beta.5", + "tslib": "2.4.0", + "ws": "8.17.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "node_modules/typescript": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + } + } +} diff --git a/drips/csvs/package.json b/drips/csvs/package.json new file mode 100644 index 0000000..200b70b --- /dev/null +++ b/drips/csvs/package.json @@ -0,0 +1,16 @@ +{ + "name": "csvs", + "version": "0.0.1", + "description": "CSVs with data per split event", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Ξlimu DAO", + "license": "MIT", + "dependencies": { + "csvs": "file:", + "ethers": "^6.13.2", + "typescript": "^5.5.4" + } +} diff --git a/drips/csvs/query-events.ts b/drips/csvs/query-events.ts new file mode 100644 index 0000000..32c5914 --- /dev/null +++ b/drips/csvs/query-events.ts @@ -0,0 +1,177 @@ +import { Contract, ethers, getDefaultProvider, Result } from 'ethers' +import Drips from './abis/Drips.json' +import fs from 'node:fs' + +const provider = getDefaultProvider() + +/** + * https://etherscan.io/address/0xd0dd053392db676d57317cd4fe96fc2ccf42d0b4#code + */ +const dripsContract: Contract = new ethers.Contract( + '0xd0Dd053392db676D57317CD4fe96Fc2cCf42D0b4', + Drips.abi, + provider +) + +query() + +async function query() { + console.log('query') + + const splitsSetEvents = await dripsContract.queryFilter( + 'SplitsSet', + 18533142 // https://etherscan.io/tx/0xa5d7aec9edd4874221d0e984912d967d8cd96b297a0fc23b1d8265a03230f90e + ) + console.log('splitsSetEvents.length:', splitsSetEvents.length) + + const splitsReceiverSeenEvents = await dripsContract.queryFilter( + 'SplitsReceiverSeen', + 18533142 // https://etherscan.io/tx/0xa5d7aec9edd4874221d0e984912d967d8cd96b297a0fc23b1d8265a03230f90e + ) + console.log('splitsReceiverSeenEvents.length:', splitsReceiverSeenEvents.length) + + const repos = [ + // content.elimu.eth + 'crowdsource', + 'webapp', + + // engineering.elimu.eth + 'content-provider', + 'keyboard', + 'kukariri', + 'ml-event-simulator', + 'ml-storybook-reading-level', + 'ml-storybook-recommender', + 'model', + + // reading.engineering.elimu.eth + 'VoltAir', + 'familiar-word-reading', + 'herufi', + 'image-picker', + 'silabi', + 'sound-cards', + 'storybooks', + 'visemes', + 'vitabu', + 'walezi-android', + + // writing.engineering.elimu.eth + 'chat', + 'handwriting-letters', + 'handwriting-numbers', + + // math.engineering.elimu.eth + 'CameraColorPicker', + 'android_packages_apps_Calculator', + 'missing-number', + 'nambari', + 'nyas-space-quest', + 'nyas-space-quest-qd', + 'shapi', + 'soga', + 'tilt-game', + + // distribution.elimu.eth + 'analytics', + 'appstore', + 'launcher', + 'ml-authentication', + 'start-guide', + 'website', + 'web3-sponsors', + ] + for (const repo of repos) { + console.log() + console.log('repo:', repo) + const repoAsHex: string = String(ethers.hexlify(ethers.toUtf8Bytes(repo))) + console.log('repoAsHex:', repoAsHex) + const repoAsHexWithoutPrefix: string = repoAsHex.substring(2) + console.log('repoAsHexWithoutPrefix:', repoAsHexWithoutPrefix) + + let ethereumAddresses: string[] = [] + for (const splitsSetEvent of splitsSetEvents) { + const userId: string = String(splitsSetEvent['topics'][1]) + if (userId.indexOf(repoAsHexWithoutPrefix) > -1) { + const receiversHash: string = String(splitsSetEvent['topics'][2]) + for (const splitsReceiverSeenEvent of splitsReceiverSeenEvents) { + const splitsReceiverSeenEventReceiverHash: string = String(splitsReceiverSeenEvent['topics'][1]) + if (splitsReceiverSeenEventReceiverHash == receiversHash) { + const splitsReceiverSeenEventUserId: string = String(splitsReceiverSeenEvent['topics'][2]) + if (ethereumAddresses.indexOf(splitsReceiverSeenEventUserId) == -1) { + ethereumAddresses.push(splitsReceiverSeenEventUserId) + } + } + } + } + } + console.log('ethereumAddresses:', ethereumAddresses) + + let splitsSetEventBlocks: number[] = [] + for (const splitsSetEvent of splitsSetEvents) { + const userId: string = String(splitsSetEvent['topics'][1]) + if (userId.indexOf(repoAsHexWithoutPrefix) > -1) { + const blockNumber: number = splitsSetEvent['blockNumber'] + splitsSetEventBlocks.push(blockNumber) + } + } + console.log('splitsSetEventBlocks:', splitsSetEventBlocks) + + if (ethereumAddresses.length > 0) { + let jsonData: any[] = [] + for (const ethereumAddress of ethereumAddresses) { + let dataRow: any = { + ethereum_address: ethereumAddress + } + for (const blockNumber of splitsSetEventBlocks) { + dataRow[`splits_at_${blockNumber}`] = 0 + } + + for (const splitsSetEvent of splitsSetEvents) { + const userId: string = String(splitsSetEvent['topics'][1]) + if (userId.indexOf(repoAsHexWithoutPrefix) > -1) { + const receiversHash: string = String(splitsSetEvent['topics'][2]) + for (const splitsReceiverSeenEvent of splitsReceiverSeenEvents) { + const splitsReceiverSeenEventReceiverHash: string = String(splitsReceiverSeenEvent['topics'][1]) + if (splitsReceiverSeenEventReceiverHash == receiversHash) { + const splitsReceiverSeenEventUserId: string = String(splitsReceiverSeenEvent['topics'][2]) + if (splitsReceiverSeenEventUserId == ethereumAddress) { + // console.log(ethereumAddress, splitsReceiverSeenEvent.blockNumber, Number(ethers.formatUnits(splitsReceiverSeenEvent['data'], 4))) + dataRow[`splits_at_${splitsReceiverSeenEvent.blockNumber}`] = Number(ethers.formatUnits(splitsReceiverSeenEvent['data'], 4)) + } + } + } + } + } + + jsonData.push(dataRow) + } + exportToCSV(repo, jsonData) + } + } +} + +function exportToCSV(repo: string, jsonData: any) { + console.log('exportToCSV') + + const header = Object.keys(jsonData[0]) + console.log('header:', header) + + const csvData = [ + header.join(','), + ...jsonData.map((row: any) => { + return header.map(headerName => { + return JSON.stringify(row[headerName]) + }).join(',') + }) + ].join('\r\n') + console.log('csvData:\n', csvData) + + const csvFile: string = `splits_${repo}.csv` + console.log('csvFile:', csvFile) + try { + fs.writeFileSync(csvFile, csvData) + } catch (err) { + console.error(err) + } +} diff --git a/drips/csvs/splits_VoltAir.csv b/drips/csvs/splits_VoltAir.csv new file mode 100644 index 0000000..dff2d0c --- /dev/null +++ b/drips/csvs/splits_VoltAir.csv @@ -0,0 +1,11 @@ +ethereum_address,splits_at_20448586 +"0x0000000000000000000000000000000000000000000000000000000000000000",18.6081 +"0x0000000000000000000000005d388ec24cc2c0c77458338696aa63afb706a7b1",6.8318 +"0x00000000000000000000000079b58d333e77c01256a2d14f63e18f398068cbcb",26.616 +"0x000000000000000000000000d46cc93e3ee6a4fb532d9b48e95be7ed8f8f1da0",27.944 +"0x000000030062656e6c61752f7174636900000000000000000000000000000000",3 +"0x0000000300676f6f676c652d636f64652d6578706f72742f706f6c7932747269",2 +"0x0000000300676f6f676c652f566f6c7441697200000000000000000000000000",6 +"0x0000000300676f6f676c652f6c697175696466756e0000000000000000000000",4 +"0x000000030071742f717435000000000000000000000000000000000000000000",3 +"0x00000003007472617669732d63692f7472617669732d63690000000000000000",2.0001 \ No newline at end of file diff --git a/drips/csvs/splits_analytics.csv b/drips/csvs/splits_analytics.csv new file mode 100644 index 0000000..3dd3e9e --- /dev/null +++ b/drips/csvs/splits_analytics.csv @@ -0,0 +1,13 @@ +ethereum_address,splits_at_20444139 +"0x0000000000000000000000000000000000000000000000000000000000000000",2.6 +"0x0000000000000000000000001d5878059679effa13ec0dc2c894e008307050bc",42.608 +"0x000000000000000000000000342faeb14127a79735144bbdc772abb6b1bbe343",0.04 +"0x00000000000000000000000048ac1399035bcce8c7996d8c60e014b9373b3962",0.344 +"0x000000000000000000000000c6ac0d6abd1bbb371db2b3ef7cbc9fc972c700a6",0.448 +"0x000000000000000000000000ea4529d359a6aa73515cda46896b2a51d48e6d46",0.128 +"0x000000000000000000000000ef836b1b90e42c8c69f3cef628eb10983c10e792",33.832 +"0x00000003004a616b6557686172746f6e2f74696d626572000000000000000000",4 +"0x00000003006170616368652f636f6d6d6f6e732d637376000000000000000000",4 +"0x00000003006170616368652f636f6d6d6f6e732d696f00000000000000000000",4 +"0x00000003006a756e69742d7465616d2f6a756e69743500000000000000000000",4 +"0x00000003007371756172652f726574726f666974000000000000000000000000",4 \ No newline at end of file diff --git a/drips/csvs/splits_appstore.csv b/drips/csvs/splits_appstore.csv new file mode 100644 index 0000000..14792c3 --- /dev/null +++ b/drips/csvs/splits_appstore.csv @@ -0,0 +1,12 @@ +ethereum_address,splits_at_20446875 +"0x0000000000000000000000000000000000000000000000000000000000000000",20.424 +"0x0000000000000000000000001d5878059679effa13ec0dc2c894e008307050bc",45.944 +"0x0000000000000000000000001f1319c79f1496357781691a22b1f37dac9d844f",0.2 +"0x00000000000000000000000048ac1399035bcce8c7996d8c60e014b9373b3962",2.432 +"0x000000000000000000000000819e4f5e912abb36c8f6c03790e7508e03cc37a3",0.088 +"0x0000000000000000000000009d8dc28e9d9c4c5a387a858182edf9ab8b90f565",1.72 +"0x000000000000000000000000b7bcebd47e00ced9caf7430a16ebfac8ec074380",0.664 +"0x000000000000000000000000ef836b1b90e42c8c69f3cef628eb10983c10e792",8.528 +"0x00000003004a616b6557686172746f6e2f74696d626572000000000000000000",6.6666 +"0x00000003006a756e69742d7465616d2f6a756e69743500000000000000000000",6.6668 +"0x00000003007371756172652f726574726f666974000000000000000000000000",6.6666 \ No newline at end of file diff --git a/drips/csvs/splits_launcher.csv b/drips/csvs/splits_launcher.csv new file mode 100644 index 0000000..b902bb4 --- /dev/null +++ b/drips/csvs/splits_launcher.csv @@ -0,0 +1,12 @@ +ethereum_address,splits_at_20447010 +"0x0000000000000000000000001d5878059679effa13ec0dc2c894e008307050bc",38.552 +"0x0000000000000000000000001f1319c79f1496357781691a22b1f37dac9d844f",15.936 +"0x00000000000000000000000048ac1399035bcce8c7996d8c60e014b9373b3962",0.4879 +"0x000000000000000000000000819e4f5e912abb36c8f6c03790e7508e03cc37a3",0.448 +"0x000000000000000000000000c6ac0d6abd1bbb371db2b3ef7cbc9fc972c700a6",1.048 +"0x000000000000000000000000ef836b1b90e42c8c69f3cef628eb10983c10e792",23.528 +"0x000000000000000000000000f02a861adf72d340336ec79f4a789e70267a8cc1",4.0001 +"0x00000003004a616b6557686172746f6e2f74696d626572000000000000000000",4 +"0x000000030061666f6c6c65737461642f6d6174657269616c2d6469616c6f6773",4 +"0x00000003006a756e69742d7465616d2f6a756e69743500000000000000000000",4 +"0x0000000301e283914b1f603333e04c66c9dfa38c3740da363fe398161fc93f8d",4 \ No newline at end of file diff --git a/drips/csvs/splits_nyas-space-quest.csv b/drips/csvs/splits_nyas-space-quest.csv new file mode 100644 index 0000000..3490f03 --- /dev/null +++ b/drips/csvs/splits_nyas-space-quest.csv @@ -0,0 +1,7 @@ +ethereum_address,splits_at_20450389 +"0x0000000000000000000000005d388ec24cc2c0c77458338696aa63afb706a7b1",6.928 +"0x000000000000000000000000b77c19804f102312c8cf66221da8886c1bf2c431",45.688 +"0x000000000000000000000000d46cc93e3ee6a4fb532d9b48e95be7ed8f8f1da0",27.384 +"0x00000003004b6974776172652f434d616b650000000000000000000000000000",1 +"0x0000000300636f636f7332642f636f636f7332642d7800000000000000000000",16 +"0x000000030073696c6e7273692f666f6e742d616e64696b610000000000000000",3 \ No newline at end of file diff --git a/drips/csvs/splits_soga.csv b/drips/csvs/splits_soga.csv new file mode 100644 index 0000000..fdb1502 --- /dev/null +++ b/drips/csvs/splits_soga.csv @@ -0,0 +1,7 @@ +ethereum_address,splits_at_20495788 +"0x000000000000000000000000342faeb14127a79735144bbdc772abb6b1bbe343",9.192 +"0x00000000000000000000000052671ed206b7789f30f2fc36e73e24702d2c9b41",16.72 +"0x0000000000000000000000005d388ec24cc2c0c77458338696aa63afb706a7b1",6.496 +"0x000000000000000000000000d46cc93e3ee6a4fb532d9b48e95be7ed8f8f1da0",47.592 +"0x0000000300636f696c2d6b742f636f696c000000000000000000000000000000",16 +"0x00000003006a756e69742d7465616d2f6a756e69743500000000000000000000",4 \ No newline at end of file diff --git a/drips/csvs/splits_start-guide.csv b/drips/csvs/splits_start-guide.csv new file mode 100644 index 0000000..7f2a25a --- /dev/null +++ b/drips/csvs/splits_start-guide.csv @@ -0,0 +1,8 @@ +ethereum_address,splits_at_20482125 +"0x0000000000000000000000001d5878059679effa13ec0dc2c894e008307050bc",27.072 +"0x0000000000000000000000001f1319c79f1496357781691a22b1f37dac9d844f",39.6639 +"0x000000000000000000000000342faeb14127a79735144bbdc772abb6b1bbe343",0.096 +"0x00000000000000000000000048ac1399035bcce8c7996d8c60e014b9373b3962",6.664 +"0x000000000000000000000000ef836b1b90e42c8c69f3cef628eb10983c10e792",6.504 +"0x00000003006a756e69742d7465616d2f6a756e69743500000000000000000000",10 +"0x0000000301125695ccdef8b9135af5771059d0ca2dcac9ad971e44d9456c654b",10.0001 \ No newline at end of file diff --git a/drips/csvs/splits_vitabu.csv b/drips/csvs/splits_vitabu.csv new file mode 100644 index 0000000..2090401 --- /dev/null +++ b/drips/csvs/splits_vitabu.csv @@ -0,0 +1,10 @@ +ethereum_address,splits_at_20181540 +"0x0000000000000000000000000000000000000000000000000000000000000000",1.664 +"0x0000000000000000000000001f1319c79f1496357781691a22b1f37dac9d844f",22.944 +"0x000000000000000000000000342faeb14127a79735144bbdc772abb6b1bbe343",0.24 +"0x0000000000000000000000004ef632a33a86fe4170cf90fb5735d5aedf9b7c8d",1.392 +"0x0000000000000000000000005d388ec24cc2c0c77458338696aa63afb706a7b1",39.44 +"0x0000000000000000000000006321286f9b73f427c72e1f9f1bc6b3d25ef06605",1.8239 +"0x000000000000000000000000d46cc93e3ee6a4fb532d9b48e95be7ed8f8f1da0",12.496 +"0x0000000300616a6f626572737461722f67726769740000000000000000000000",10 +"0x00000003006a69747061636b2f6a69747061636b2e696f000000000000000000",10.0001 \ No newline at end of file diff --git a/drips/csvs/splits_webapp.csv b/drips/csvs/splits_webapp.csv new file mode 100644 index 0000000..2de7d69 --- /dev/null +++ b/drips/csvs/splits_webapp.csv @@ -0,0 +1,23 @@ +ethereum_address,splits_at_18533142,splits_at_18860628,splits_at_18860837,splits_at_19592288,splits_at_20383501,splits_at_20597000 +"0x00000000000000000000000054e67ae7f27bcd6e6e90aa11ff3ec06e6c4ebe15",12,0,0,0,0,0 +"0x000000000000000000000000883753beab357a2c29f3766c6ad158e72a78ce51",48,30,30,0,0,0 +"0x000000030070736965676d616e2f657075626c69620000000000000000000000",40,13.3333,20,20,8.0001,8.0014 +"0x0000000000000000000000001703ed1bfacc04b7eb654b297aa4e52ebc008722",0,30,12,0,0,0 +"0x00000003006873696166616e2f61706b2d706172736572000000000000000000",0,13.3333,8,8,3.2,3.1999 +"0x0000000300776562336a2f776562336a00000000000000000000000000000000",0,13.3333,12,12,4.8,4.8 +"0x000000000000000000000000d452c1321e03c6e34ad8c6f60b694b1e780c4b75",0,0,18,0,0,0 +"0x0000000000000000000000000000000000000000000000000000000000000000",0,0,0,3.3719,4.3841,4.6161 +"0x0000000000000000000000003965d420cde24fe00f742cb31257ca90e04556a7",0,0,0,0.72,0.84,0.7999 +"0x0000000000000000000000004709ebf314c6492d57f4c6d4f57357d5b2bb074e",0,0,0,0.336,0.424,0.4959 +"0x0000000000000000000000005367a6d4f5991327bb20466684790e394be000de",0,0,0,0.456,0.536,0.5119 +"0x0000000000000000000000005d388ec24cc2c0c77458338696aa63afb706a7b1",0,0,0,30.612,37.592,36.4559 +"0x0000000000000000000000006321286f9b73f427c72e1f9f1bc6b3d25ef06605",0,0,0,0.3419,0.408,0.3839 +"0x000000000000000000000000819e4f5e912abb36c8f6c03790e7508e03cc37a3",0,0,0,0.672,0.7919,0.7519 +"0x000000000000000000000000914dbee36bcab63b2d15faed08839be43797b421",0,0,0,0.228,0.408,0.2559 +"0x000000000000000000000000d46cc93e3ee6a4fb532d9b48e95be7ed8f8f1da0",0,0,0,23.262,31.296,31.3679 +"0x000000000000000000000000342faeb14127a79735144bbdc772abb6b1bbe343",0,0,0,0,2.208,2.9519 +"0x00000000000000000000000038c19bc91fc35f8bcad07f177cc2f11098b1f3ff",0,0,0,0,0.248,0.2319 +"0x000000000000000000000000513dcee2929a6e0cd115fb65ec926d6569d98aff",0,0,0,0,0.536,0.6559 +"0x00000000000000000000000078888390aa08d9a25f3bdb8a1b35351d7c7f8a12",0,0,0,0,0.3279,0.3119 +"0x0000000300446f6766616c6f2f6d6174657269616c697a650000000000000000",0,0,0,0,4,3.9999 +"0x00000000000000000000000022d83d2681c8f04877b60f907d8288f011b314f8",0,0,0,0,0,0.2079 \ No newline at end of file diff --git a/drips/csvs/splits_website.csv b/drips/csvs/splits_website.csv new file mode 100644 index 0000000..6100584 --- /dev/null +++ b/drips/csvs/splits_website.csv @@ -0,0 +1,10 @@ +ethereum_address,splits_at_20125009,splits_at_20125639,splits_at_20383788 +"0x0000000000000000000000000000000000000000000000000000000000000000",5.124,3.1079,4.4 +"0x0000000000000000000000001d5878059679effa13ec0dc2c894e008307050bc",33.9059,33.9058,46.816 +"0x0000000000000000000000004709ebf314c6492d57f4c6d4f57357d5b2bb074e",1.062,1.0619,1.376 +"0x000000000000000000000000ef836b1b90e42c8c69f3cef628eb10983c10e792",19.908,19.908,24.808 +"0x000000030065736c696e742f65736c696e740000000000000000000000000000",10,10.0006,5.0005 +"0x00000003007461696c77696e646c6162732f7461696c77696e64637373000000",10,9.9999,4.9998 +"0x00000003012ffd348eb2b961ef4e0ea4d1fdf966f649e25647f9a594b8d4f534",10.0001,10.0001,4.9999 +"0x0000000301cabbc9028942eaef39ff5947a1f03adc65f8bca14a22358c6681da",10,9.9999,4.9998 +"0x000000000000000000000000342faeb14127a79735144bbdc772abb6b1bbe343",0,2.0159,2.6 \ No newline at end of file diff --git a/drips/csvs/tsconfig.json b/drips/csvs/tsconfig.json new file mode 100644 index 0000000..958e7cd --- /dev/null +++ b/drips/csvs/tsconfig.json @@ -0,0 +1,108 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + + /* Language and Environment */ + "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "jsx": "preserve", /* Specify what JSX code is generated. */ + // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ + // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ + // "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */ + // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */ + // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */ + // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */ + "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + // "noResolve": true, /* Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project. */ + + /* JavaScript Support */ + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ + // "outDir": "./", /* Specify an output folder for all emitted files. */ + // "removeComments": true, /* Disable emitting comments. */ + // "noEmit": true, /* Disable emitting files from a compilation. */ + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + + /* Interop Constraints */ + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ + // "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */ + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ + // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + } +} diff --git a/funding-splits/content/README.md b/funding-splits/content/README.md new file mode 100644 index 0000000..eac2bea --- /dev/null +++ b/funding-splits/content/README.md @@ -0,0 +1,5 @@ +# content + +> Drip List funding splits for Content Creation 🎶🎙️ + +See [`../../DRIP_LIST_FUNDING_SPLITS.md#content`](../../DRIP_LIST_FUNDING_SPLITS.md#content) diff --git a/funding-splits/distribution/package-lock.json b/funding-splits/distribution/package-lock.json index 4573045..3bb129b 100644 --- a/funding-splits/distribution/package-lock.json +++ b/funding-splits/distribution/package-lock.json @@ -9,7 +9,8 @@ "version": "0.0.1", "license": "MIT", "dependencies": { - "csv-writer": "^1.6.0" + "csv-writer": "^1.6.0", + "distribution": "file:" }, "devDependencies": { "ethers": "^6.13.2", @@ -63,6 +64,10 @@ "resolved": "https://registry.npmjs.org/csv-writer/-/csv-writer-1.6.0.tgz", "integrity": "sha512-NOx7YDFWEsM/fTRAJjRpPp8t+MKRVvniAg9wQlUKx20MFrPs73WLJhFf5iteqrxNYnsy924K3Iroh3yNHeYd2g==" }, + "node_modules/distribution": { + "resolved": "", + "link": true + }, "node_modules/ethers": { "version": "6.13.2", "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.2.tgz", diff --git a/funding-splits/distribution/package.json b/funding-splits/distribution/package.json index 2f68159..c82ee4b 100644 --- a/funding-splits/distribution/package.json +++ b/funding-splits/distribution/package.json @@ -13,6 +13,7 @@ "typescript": "^5.5.4" }, "dependencies": { - "csv-writer": "^1.6.0" + "csv-writer": "^1.6.0", + "distribution": "file:" } } diff --git a/funding-splits/engineering/README.md b/funding-splits/engineering/README.md index 550fe9d..c593ba5 100644 --- a/funding-splits/engineering/README.md +++ b/funding-splits/engineering/README.md @@ -1 +1,5 @@ +# engineering + +> Drip List funding splits for Engineering & AI/ML 👩🏽‍💻📱 + Find links to funding split CSVs at [`../../DRIP_LIST_FUNDING_SPLITS.md#engineering`](../../DRIP_LIST_FUNDING_SPLITS.md#engineering)