├── .editorconfig ├── .envrc ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── collect-plutus-scripts.mjs ├── collect-reference-inputs.mjs ├── config.mjs ├── config └── points.mjs ├── count.mjs ├── data ├── native_scripts.json ├── native_scripts │ ├── 2024_06.json │ ├── 2024_07.json │ ├── 2024_08.json │ ├── 2024_09.json │ ├── 2024_10.json │ ├── 2024_11.json │ └── 2024_12.json ├── reference_scripts.json ├── reference_scripts │ ├── 2024_06.json │ ├── 2024_07.json │ ├── 2024_08.json │ ├── 2024_09.json │ ├── 2024_10.json │ ├── 2024_11.json │ └── 2024_12.json ├── validators.json └── validators │ ├── 2024_06.json │ ├── 2024_07.json │ ├── 2024_08.json │ ├── 2024_09.json │ ├── 2024_10.json │ ├── 2024_11.json │ └── 2024_12.json ├── package.json ├── src └── main.rs └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | export OGMIOS_HOST=ws://127.0.0.1:1337 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | node_modules 3 | unknowns-* 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/README.md -------------------------------------------------------------------------------- /collect-plutus-scripts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/collect-plutus-scripts.mjs -------------------------------------------------------------------------------- /collect-reference-inputs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/collect-reference-inputs.mjs -------------------------------------------------------------------------------- /config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/config.mjs -------------------------------------------------------------------------------- /config/points.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/config/points.mjs -------------------------------------------------------------------------------- /count.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/count.mjs -------------------------------------------------------------------------------- /data/native_scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts.json -------------------------------------------------------------------------------- /data/native_scripts/2024_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_06.json -------------------------------------------------------------------------------- /data/native_scripts/2024_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_07.json -------------------------------------------------------------------------------- /data/native_scripts/2024_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_08.json -------------------------------------------------------------------------------- /data/native_scripts/2024_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_09.json -------------------------------------------------------------------------------- /data/native_scripts/2024_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_10.json -------------------------------------------------------------------------------- /data/native_scripts/2024_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_11.json -------------------------------------------------------------------------------- /data/native_scripts/2024_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/native_scripts/2024_12.json -------------------------------------------------------------------------------- /data/reference_scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_06.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_07.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_08.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_09.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_10.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_11.json -------------------------------------------------------------------------------- /data/reference_scripts/2024_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/reference_scripts/2024_12.json -------------------------------------------------------------------------------- /data/validators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators.json -------------------------------------------------------------------------------- /data/validators/2024_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_06.json -------------------------------------------------------------------------------- /data/validators/2024_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_07.json -------------------------------------------------------------------------------- /data/validators/2024_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_08.json -------------------------------------------------------------------------------- /data/validators/2024_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_09.json -------------------------------------------------------------------------------- /data/validators/2024_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_10.json -------------------------------------------------------------------------------- /data/validators/2024_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_11.json -------------------------------------------------------------------------------- /data/validators/2024_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/data/validators/2024_12.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/package.json -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/src/main.rs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CardanoSolutions/smart-contracts-analytics/HEAD/yarn.lock --------------------------------------------------------------------------------