├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── artifacts └── metadata.scale ├── bin ├── processor │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── server │ ├── Cargo.toml │ └── src │ │ └── main.rs └── tracker │ ├── Cargo.toml │ └── src │ ├── cli.rs │ └── main.rs ├── chaindata.json ├── config.toml ├── parachains.json ├── registry.json ├── routes ├── Cargo.toml ├── config.toml ├── mock-out │ └── out │ │ └── placeholder ├── mock-parachains.json ├── src │ ├── consumption.rs │ ├── extend_subscription.rs │ ├── lib.rs │ ├── register.rs │ └── registry.rs └── tests │ ├── consumption.rs │ ├── extend_subscription.rs │ ├── mock.rs │ ├── register.rs │ └── registry.rs ├── scripts ├── init.sh ├── process.sh ├── reset_env.sh └── watchdog.sh ├── shared ├── Cargo.toml └── src │ ├── chaindata.rs │ ├── config.rs │ ├── consumption.rs │ ├── lib.rs │ ├── payment.rs │ └── registry.rs ├── src └── api.rs └── types ├── Cargo.toml └── src └── lib.rs /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /out 3 | parachains.json 4 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/README.md -------------------------------------------------------------------------------- /artifacts/metadata.scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/artifacts/metadata.scale -------------------------------------------------------------------------------- /bin/processor/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/bin/processor/Cargo.toml -------------------------------------------------------------------------------- /bin/processor/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/bin/processor/src/main.rs -------------------------------------------------------------------------------- /bin/server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/bin/server/Cargo.toml -------------------------------------------------------------------------------- /bin/server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/bin/server/src/main.rs -------------------------------------------------------------------------------- /bin/tracker/Cargo.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/tracker/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/bin/tracker/src/cli.rs -------------------------------------------------------------------------------- /bin/tracker/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/bin/tracker/src/main.rs -------------------------------------------------------------------------------- /chaindata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/chaindata.json -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/config.toml -------------------------------------------------------------------------------- /parachains.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/registry.json -------------------------------------------------------------------------------- /routes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/Cargo.toml -------------------------------------------------------------------------------- /routes/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/config.toml -------------------------------------------------------------------------------- /routes/mock-out/out/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/mock-parachains.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /routes/src/consumption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/src/consumption.rs -------------------------------------------------------------------------------- /routes/src/extend_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/src/extend_subscription.rs -------------------------------------------------------------------------------- /routes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/src/lib.rs -------------------------------------------------------------------------------- /routes/src/register.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/src/register.rs -------------------------------------------------------------------------------- /routes/src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/src/registry.rs -------------------------------------------------------------------------------- /routes/tests/consumption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/tests/consumption.rs -------------------------------------------------------------------------------- /routes/tests/extend_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/tests/extend_subscription.rs -------------------------------------------------------------------------------- /routes/tests/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/tests/mock.rs -------------------------------------------------------------------------------- /routes/tests/register.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/tests/register.rs -------------------------------------------------------------------------------- /routes/tests/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/routes/tests/registry.rs -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /scripts/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/scripts/process.sh -------------------------------------------------------------------------------- /scripts/reset_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/scripts/reset_env.sh -------------------------------------------------------------------------------- /scripts/watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/scripts/watchdog.sh -------------------------------------------------------------------------------- /shared/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/Cargo.toml -------------------------------------------------------------------------------- /shared/src/chaindata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/src/chaindata.rs -------------------------------------------------------------------------------- /shared/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/src/config.rs -------------------------------------------------------------------------------- /shared/src/consumption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/src/consumption.rs -------------------------------------------------------------------------------- /shared/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/src/lib.rs -------------------------------------------------------------------------------- /shared/src/payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/src/payment.rs -------------------------------------------------------------------------------- /shared/src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/shared/src/registry.rs -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/src/api.rs -------------------------------------------------------------------------------- /types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/types/Cargo.toml -------------------------------------------------------------------------------- /types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoredApe8461/CorespaceWeigher/HEAD/types/src/lib.rs --------------------------------------------------------------------------------