tig-monorepo/README.md
FiveMovesAhead 4ab829c92c
Some checks are pending
Test Workspace / Test Workspace (push) Waiting to run
Update scripts.
2025-05-29 11:35:06 +01:00

2.6 KiB

The Innovation Game

This repository contains the implementation of The Innovation Game (TIG).

Repo Contents

  • tig-algorithms - A Rust crate that hosts algorithm submissions made by Innovators in TIG
  • tig-benchmarker - Python scripts for running TIG's benchmarker in master/slave configuration
  • tig-binary - A Rust crate that wraps an algorithm from tig-algorithm for compilation into a shared object.
  • tig-breakthroughs - A folder that hosts submissions of algorithmic methods made by Innovators in TIG.
  • tig-challenges - A Rust crate that contains the implementation of TIG's challenges (computational problems adapted for proof-of-work)
  • tig-protocol - A Rust crate that contains the implementation of TIG's core protocol logic.
  • tig-runtime - A Rust crate that execute an algorithm (compiled from tig-binary) for a single nonce, generating runtime signature and fuel consumed for verification.
  • tig-structs - A Rust crate that contains the definitions of structs used throughout TIG
  • tig-token - Solidity contract for TIG's ERC20 token that is deployed on Ethereum L2 Base chain
  • tig-utils - A Rust crate that contains utility functions used throughout TIG
  • tig-verifier - A Rust crate that verifies a single solution or Merkle proof.

Docker Images

TIG docker images are hosted on Github Packages:

  • dev - environment for Innovators who are developing algorithms
  • runtime - environment for Benchmarkers who are running slaves

Useful Scripts

Under scripts/ folder is a bunch of useful scripts:

  • download_algorithm
  • list_algorithms
  • list_challenges
  • test_algorithms

These are available on PATH in the dev and runtime docker images

License

See README for individual folders