├── .env.example ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── __tests__ └── CoreActions.test.ts ├── docs ├── agentic.md ├── examples.md ├── executor.md ├── img │ ├── banner.png │ ├── execution_steps.png │ ├── kernel.png │ ├── participants.png │ ├── register_executor.png │ └── subscription.png ├── introduction.md ├── kernel.md └── subscriptions.md ├── funding.json ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── abi │ ├── index.ts │ └── safeAbi.ts ├── constants.ts ├── helpers │ ├── AutomationContext │ │ ├── index.ts │ │ └── types.ts │ ├── BuilderCaller │ │ ├── index.ts │ │ └── types.ts │ ├── Communicator.ts │ ├── CoreActions │ │ ├── index.ts │ │ └── types.ts │ ├── MessageFormatter.ts │ ├── PublicDeployer │ │ ├── index.ts │ │ └── types.ts │ └── index.ts ├── index.ts ├── kit.ts ├── routes.ts ├── types.ts ├── utils.ts └── wagmi.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | API_KEY= 2 | BASE_URL= 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store 3 | *.jpeg 4 | node_modules 5 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/CoreActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/__tests__/CoreActions.test.ts -------------------------------------------------------------------------------- /docs/agentic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/agentic.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/executor.md -------------------------------------------------------------------------------- /docs/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/img/banner.png -------------------------------------------------------------------------------- /docs/img/execution_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/img/execution_steps.png -------------------------------------------------------------------------------- /docs/img/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/img/kernel.png -------------------------------------------------------------------------------- /docs/img/participants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/img/participants.png -------------------------------------------------------------------------------- /docs/img/register_executor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/img/register_executor.png -------------------------------------------------------------------------------- /docs/img/subscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/img/subscription.png -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/kernel.md -------------------------------------------------------------------------------- /docs/subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/docs/subscriptions.md -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/funding.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/abi/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./safeAbi"; 2 | -------------------------------------------------------------------------------- /src/abi/safeAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/abi/safeAbi.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/helpers/AutomationContext/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/AutomationContext/index.ts -------------------------------------------------------------------------------- /src/helpers/AutomationContext/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/AutomationContext/types.ts -------------------------------------------------------------------------------- /src/helpers/BuilderCaller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/BuilderCaller/index.ts -------------------------------------------------------------------------------- /src/helpers/BuilderCaller/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/BuilderCaller/types.ts -------------------------------------------------------------------------------- /src/helpers/Communicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/Communicator.ts -------------------------------------------------------------------------------- /src/helpers/CoreActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/CoreActions/index.ts -------------------------------------------------------------------------------- /src/helpers/CoreActions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/CoreActions/types.ts -------------------------------------------------------------------------------- /src/helpers/MessageFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/MessageFormatter.ts -------------------------------------------------------------------------------- /src/helpers/PublicDeployer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/PublicDeployer/index.ts -------------------------------------------------------------------------------- /src/helpers/PublicDeployer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/PublicDeployer/types.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/kit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/kit.ts -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/wagmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/src/wagmi.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brahma-fi/console-kit/HEAD/yarn.lock --------------------------------------------------------------------------------