├── .gitignore ├── README.md ├── contracts ├── AIFlowAgent.sol ├── AIFlowAgentToken.sol └── AIFlowOracle.sol ├── hardhat.config.ts ├── ignition ├── deployments │ └── chain-97 │ │ ├── artifacts │ │ ├── AIFlow#AIFlowAgent.dbg.json │ │ ├── AIFlow#AIFlowAgent.json │ │ ├── AIFlow#AIFlowOracle.dbg.json │ │ └── AIFlow#AIFlowOracle.json │ │ ├── build-info │ │ └── f01b05c60fb76ee67a36dad0561a2af2.json │ │ ├── deployed_addresses.json │ │ └── journal.jsonl └── modules │ └── AIFlow.ts ├── package.json ├── test └── AIFlowOracle.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/README.md -------------------------------------------------------------------------------- /contracts/AIFlowAgent.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/contracts/AIFlowAgent.sol -------------------------------------------------------------------------------- /contracts/AIFlowAgentToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/contracts/AIFlowAgentToken.sol -------------------------------------------------------------------------------- /contracts/AIFlowOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/contracts/AIFlowOracle.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /ignition/deployments/chain-97/artifacts/AIFlow#AIFlowAgent.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/artifacts/AIFlow#AIFlowAgent.dbg.json -------------------------------------------------------------------------------- /ignition/deployments/chain-97/artifacts/AIFlow#AIFlowAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/artifacts/AIFlow#AIFlowAgent.json -------------------------------------------------------------------------------- /ignition/deployments/chain-97/artifacts/AIFlow#AIFlowOracle.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/artifacts/AIFlow#AIFlowOracle.dbg.json -------------------------------------------------------------------------------- /ignition/deployments/chain-97/artifacts/AIFlow#AIFlowOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/artifacts/AIFlow#AIFlowOracle.json -------------------------------------------------------------------------------- /ignition/deployments/chain-97/build-info/f01b05c60fb76ee67a36dad0561a2af2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/build-info/f01b05c60fb76ee67a36dad0561a2af2.json -------------------------------------------------------------------------------- /ignition/deployments/chain-97/deployed_addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/deployed_addresses.json -------------------------------------------------------------------------------- /ignition/deployments/chain-97/journal.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/deployments/chain-97/journal.jsonl -------------------------------------------------------------------------------- /ignition/modules/AIFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/ignition/modules/AIFlow.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/package.json -------------------------------------------------------------------------------- /test/AIFlowOracle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/test/AIFlowOracle.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapro-club/contracts/HEAD/tsconfig.json --------------------------------------------------------------------------------