├── .circleci └── config.yml ├── .dockerignore ├── .env.example ├── .gitignore ├── .gitmodules ├── .husky ├── .gitignore ├── pre-commit └── pre-push ├── .prettierignore ├── .prettierrc.json ├── .solhint.json ├── .solhintignore ├── .vscode └── settings.json ├── .yarn ├── install-state.gz └── releases │ └── yarn-4.2.2.cjs ├── .yarnrc.yml ├── Dockerfile ├── README.md ├── audits └── Audit_Report_by_WatchPug_16_Aug_2022.pdf ├── codechecks.yml ├── contracts ├── Automate.sol ├── AutomateStorage.sol ├── functions │ ├── FExec.sol │ └── FUtils.sol ├── integrations │ ├── AutomateModuleHelper.sol │ ├── AutomateReady.sol │ ├── AutomateReadyUpgradeable.sol │ ├── AutomateTaskCreator.sol │ ├── AutomateTaskCreatorUpgradeable.sol │ ├── Types.sol │ └── examples │ │ ├── contractCreator │ │ ├── withTreasury │ │ │ ├── CounterResolverTaskCreator.sol │ │ │ ├── CounterSingleExecTaskCreator.sol │ │ │ ├── CounterTriggerTaskCreator.sol │ │ │ └── CounterWeb3Function.sol │ │ └── withoutTreasury │ │ │ ├── CounterResolverTaskCreatorWT.sol │ │ │ ├── CounterSingleExecTaskCreatorWT.sol │ │ │ └── CounterTriggerTaskCreatorWT.sol │ │ └── userCreator │ │ ├── withTreasury │ │ ├── Counter.sol │ │ └── CounterResolver.sol │ │ └── withoutTreasury │ │ ├── CounterResolverWT.sol │ │ └── CounterWT.sol ├── interfaces │ ├── IAutomate.sol │ ├── IERC20Extended.sol │ ├── IGelato1Balance.sol │ ├── IOpsProxy.sol │ ├── IOpsProxyFactory.sol │ ├── IResolver.sol │ └── ITaskModule.sol ├── libraries │ ├── LibBypassModule.sol │ ├── LibDataTypes.sol │ ├── LibEvents.sol │ ├── LibTaskId.sol │ ├── LibTaskModule.sol │ └── LibTaskModuleConfig.sol ├── opsProxy │ ├── OpsProxy.sol │ ├── OpsProxyFactory.sol │ └── OpsProxyFactoryZkSync.sol ├── taskModules │ ├── ProxyModule.sol │ ├── ResolverModule.sol │ ├── SingleExecModule.sol │ ├── TaskModuleBase.sol │ ├── TriggerModule.sol │ └── Web3FunctionModule.sol ├── tests │ ├── AutomateTaskCreatorTest.sol │ ├── AutomateTaskCreatorUpgradeableTest .sol │ ├── CounterTest.sol │ ├── CounterTestWT.sol │ └── CounterWL.sol └── vendor │ ├── gelato │ ├── GelatoBytes.sol │ ├── Gelatofied.sol │ └── OpsReady.sol │ └── proxy │ └── EIP173 │ ├── EIP173OpsProxy.sol │ ├── EIP173Proxy.sol │ ├── Proxied.sol │ └── Proxy.sol ├── deploy ├── Automate.deploy.ts ├── OpsProxy.deploy.ts ├── OpsProxyFactory.deploy.ts ├── OpsProxyFactoryZkSync.deploy.ts ├── ProxyModule.deploy.ts ├── ResolverModule.deploy.ts ├── SingleExecModule.deploy.ts ├── TriggerModule.deploy.ts ├── Web3FunctionModule.deploy.ts └── tests │ ├── CounterResolver.deploy.ts │ ├── CounterTest.deploy.ts │ ├── CounterTestWT.deploy.ts │ └── CounterWL.ts ├── deployments ├── abstract │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactoryZkSync.json │ ├── OpsProxyFactoryZkSync_Implementation.json │ ├── OpsProxyFactoryZkSync_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ └── 45f8f3695cf10f0e422a8895bb222f29.json ├── alephzero │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── alephzerotestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── amoy │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── amoyDev │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── anomalyandromeda │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── arbgoerli │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 4c3997c751624844d586fc396a4e130d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── arbitrum │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryL2.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 345f2b6f2ea28a56ce5ea8e59baf45ba.json │ │ ├── 4c3997c751624844d586fc396a4e130d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── 8bbf75e674a7470c3c5715f3b28e416b.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── arbitrumdev │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── arbsepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── c0ad8ac892af039154187898a9ce3bb5.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── astarzkevm │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── astarzkyoto │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── avalanche │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── base │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 670219dda0f8109761da4a5c84be6285.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── baseGoerli │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── d6cc3544d269e22d65b20b2f35a54661.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── basecamptestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── basesepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 23c8d55ca35a3967cedae666a5af7ac1.json │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── bepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── berachain │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── berachainbartio │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── blackberry │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ ├── b5c1514366518a6113ef1a5e8af3c9ad.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── blast │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── blastsepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── bonito │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 5ec0b75b82308a43c369e536d3b31fb6.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── botanix │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── botanixtestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── bsc │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── camp │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── campnetworktestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── carvtestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── clinkmainnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── clinktestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── connextsepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── coredao │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── cornmaizenet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── etherlink │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── etherlinktestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── everclear │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── fantom │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── filecoin │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── flow │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── gelatoorbittestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── gelatoorbittestnetDev │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── gelopcelestiatestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── geloptestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── c0ad8ac892af039154187898a9ce3bb5.json ├── gnosis │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── goerli │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryL2.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 345f2b6f2ea28a56ce5ea8e59baf45ba.json │ │ ├── 4c3997c751624844d586fc396a4e130d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── 8bbf75e674a7470c3c5715f3b28e416b.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── hyperevm │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── hyperevmtestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── inksepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── linea │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 41a8600e180880fe88609322a6b2ac21.json │ │ ├── 670219dda0f8109761da4a5c84be6285.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── lisk │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── lisksepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── ludicotetromino │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── mainnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryL2.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 345f2b6f2ea28a56ce5ea8e59baf45ba.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── 8bbf75e674a7470c3c5715f3b28e416b.json │ │ ├── 9d34b82b022e2cf3e8e5ca7f658d20ac.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── megaethtestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── metis │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── miketestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── mitosismainnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── mode │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── monadtestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── mumbai │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryL2.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 345f2b6f2ea28a56ce5ea8e59baf45ba.json │ │ ├── 4c3997c751624844d586fc396a4e130d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── 8bbf75e674a7470c3c5715f3b28e416b.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── mumbaiDev │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 41a8600e180880fe88609322a6b2ac21.json │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── abd3113e37ecb12ae12cd049955d2cdc.json │ │ ├── c0ad8ac892af039154187898a9ce3bb5.json │ │ └── d6cc3544d269e22d65b20b2f35a54661.json ├── nibiru │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── nibirutestnet2 │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── novastrotestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── ogoerli │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── bfc226566b52179bbffade0762565ef0.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── opencampuscodex │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── optimism │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryL2.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 345f2b6f2ea28a56ce5ea8e59baf45ba.json │ │ ├── 4c3997c751624844d586fc396a4e130d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── 8bbf75e674a7470c3c5715f3b28e416b.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── osepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── c0ad8ac892af039154187898a9ce3bb5.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── plasma │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── plasmatestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── plasmatestnetreset │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── playblock │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── polygon │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryL2.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 2db89642daf7ebd20cbbef9f4540b20d.json │ │ ├── 345f2b6f2ea28a56ce5ea8e59baf45ba.json │ │ ├── 4c3997c751624844d586fc396a4e130d.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── 77f620c289a408fcb75c281cb93af647.json │ │ ├── 8bbf75e674a7470c3c5715f3b28e416b.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── polygonzk │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 670219dda0f8109761da4a5c84be6285.json │ │ ├── 777eca0a3d318c9063ea80e69f3e08ab.json │ │ ├── cbdbea7c3520531d2f6235911ca6ac38.json │ │ └── fd1b76802500775947a533ba345ef6f3.json ├── popberry │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── prism │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── real │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── reyacronos │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── ac588dd44444707f4851370ced0acc50.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── reyanetwork │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── rootstock │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── sepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── shape │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── singularitytestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── storyaeneidtestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── storymainnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── storyodysseytestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── storytestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── synfuturesabctestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── synfuturestestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── takibitestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── thrivetestnet │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── unichain │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── unichainsepolia │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── unreal │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── c0ad8ac892af039154187898a9ce3bb5.json ├── unrealorbit │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── 6b8e62dda7b180fb31163b9e8eb5473d.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json ├── volmex │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── zircuit │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ └── 5ec0b75b82308a43c369e536d3b31fb6.json ├── zkatana │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactory.json │ ├── OpsProxyFactory_Implementation.json │ ├── OpsProxyFactory_Proxy.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ │ ├── 4a46ee6c1a29be400c9fab1ecc28e172.json │ │ ├── c0ad8ac892af039154187898a9ce3bb5.json │ │ └── cbdbea7c3520531d2f6235911ca6ac38.json └── zksync │ ├── .chainId │ ├── Automate.json │ ├── Automate_Implementation.json │ ├── Automate_Proxy.json │ ├── OpsProxy.json │ ├── OpsProxyFactoryZkSync.json │ ├── OpsProxyFactoryZkSync_Proxy.json │ ├── OpsProxyFactoryZkSync_implementation.json │ ├── OpsProxyFactory_Implementation.json │ ├── ProxyModule.json │ ├── ResolverModule.json │ ├── SingleExecModule.json │ ├── TaskTreasuryUpgradable.json │ ├── TaskTreasuryUpgradable_Implementation.json │ ├── TaskTreasuryUpgradable_Proxy.json │ ├── TimeModule.json │ ├── TriggerModule.json │ ├── Web3FunctionModule.json │ └── solcInputs │ ├── a55a0720c0d0238808136c5effb03d4d.json │ ├── f6720d2f982abef48409cc010871036a.json │ └── fbb096d9d0d89484881940eff08a507d.json ├── eslint.config.js ├── foundry.toml ├── hardhat.config.ts ├── hardhat └── config │ └── addresses.ts ├── package.json ├── remappings.txt ├── scripts ├── dev-modules.ts ├── dev-transfer-automate-ownership.ts ├── dev-transfer-opsProxyFactory-ownership.ts ├── dev-update-ops-implementation.ts └── dev-zk-verify.ts ├── src ├── addresses.ts ├── scripts │ └── deploy-docker.sh ├── solc │ └── soljson-v0.8.14+commit.80d49f37.js ├── type-extensions.ts └── utils │ └── index.ts ├── test ├── Automate-deprecated.test.ts ├── Automate-multiModule.test.ts ├── Automate-proxy.test.ts ├── Automate-resolver.test.ts ├── Automate-singleExec.test.ts ├── Automate-withoutTreasury.test.ts ├── AutomateTaskCreator.test.ts ├── OpsProxyFactoryZkSync.test.ts ├── foundry │ ├── gas-reporting │ │ ├── VRFGasReport.t.sol │ │ └── vrf │ │ │ ├── GelatoVRFConsumer.sol │ │ │ ├── GelatoVRFConsumerBase.sol │ │ │ └── IGelatoVRFConsumer.sol │ └── utils │ │ ├── Base.t.sol │ │ └── Contracts.t.sol └── utils │ ├── 1balance.ts │ ├── faucet.ts │ ├── index.ts │ ├── modules.ts │ ├── task.ts │ └── time.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **node_modules 2 | **dist 3 | .git/ 4 | **.env** -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn test 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.solhintignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.2.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.yarn/releases/yarn-4.2.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/README.md -------------------------------------------------------------------------------- /codechecks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/codechecks.yml -------------------------------------------------------------------------------- /contracts/Automate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/Automate.sol -------------------------------------------------------------------------------- /contracts/AutomateStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/AutomateStorage.sol -------------------------------------------------------------------------------- /contracts/functions/FExec.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/functions/FExec.sol -------------------------------------------------------------------------------- /contracts/functions/FUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/functions/FUtils.sol -------------------------------------------------------------------------------- /contracts/integrations/AutomateReady.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/integrations/AutomateReady.sol -------------------------------------------------------------------------------- /contracts/integrations/Types.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/integrations/Types.sol -------------------------------------------------------------------------------- /contracts/interfaces/IAutomate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/IAutomate.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20Extended.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/IERC20Extended.sol -------------------------------------------------------------------------------- /contracts/interfaces/IGelato1Balance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/IGelato1Balance.sol -------------------------------------------------------------------------------- /contracts/interfaces/IOpsProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/IOpsProxy.sol -------------------------------------------------------------------------------- /contracts/interfaces/IOpsProxyFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/IOpsProxyFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IResolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/IResolver.sol -------------------------------------------------------------------------------- /contracts/interfaces/ITaskModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/interfaces/ITaskModule.sol -------------------------------------------------------------------------------- /contracts/libraries/LibBypassModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/libraries/LibBypassModule.sol -------------------------------------------------------------------------------- /contracts/libraries/LibDataTypes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/libraries/LibDataTypes.sol -------------------------------------------------------------------------------- /contracts/libraries/LibEvents.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/libraries/LibEvents.sol -------------------------------------------------------------------------------- /contracts/libraries/LibTaskId.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/libraries/LibTaskId.sol -------------------------------------------------------------------------------- /contracts/libraries/LibTaskModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/libraries/LibTaskModule.sol -------------------------------------------------------------------------------- /contracts/libraries/LibTaskModuleConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/libraries/LibTaskModuleConfig.sol -------------------------------------------------------------------------------- /contracts/opsProxy/OpsProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/opsProxy/OpsProxy.sol -------------------------------------------------------------------------------- /contracts/opsProxy/OpsProxyFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/opsProxy/OpsProxyFactory.sol -------------------------------------------------------------------------------- /contracts/opsProxy/OpsProxyFactoryZkSync.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/opsProxy/OpsProxyFactoryZkSync.sol -------------------------------------------------------------------------------- /contracts/taskModules/ProxyModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/taskModules/ProxyModule.sol -------------------------------------------------------------------------------- /contracts/taskModules/ResolverModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/taskModules/ResolverModule.sol -------------------------------------------------------------------------------- /contracts/taskModules/SingleExecModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/taskModules/SingleExecModule.sol -------------------------------------------------------------------------------- /contracts/taskModules/TaskModuleBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/taskModules/TaskModuleBase.sol -------------------------------------------------------------------------------- /contracts/taskModules/TriggerModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/taskModules/TriggerModule.sol -------------------------------------------------------------------------------- /contracts/taskModules/Web3FunctionModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/taskModules/Web3FunctionModule.sol -------------------------------------------------------------------------------- /contracts/tests/AutomateTaskCreatorTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/tests/AutomateTaskCreatorTest.sol -------------------------------------------------------------------------------- /contracts/tests/CounterTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/tests/CounterTest.sol -------------------------------------------------------------------------------- /contracts/tests/CounterTestWT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/tests/CounterTestWT.sol -------------------------------------------------------------------------------- /contracts/tests/CounterWL.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/tests/CounterWL.sol -------------------------------------------------------------------------------- /contracts/vendor/gelato/GelatoBytes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/vendor/gelato/GelatoBytes.sol -------------------------------------------------------------------------------- /contracts/vendor/gelato/Gelatofied.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/vendor/gelato/Gelatofied.sol -------------------------------------------------------------------------------- /contracts/vendor/gelato/OpsReady.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/vendor/gelato/OpsReady.sol -------------------------------------------------------------------------------- /contracts/vendor/proxy/EIP173/EIP173Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/vendor/proxy/EIP173/EIP173Proxy.sol -------------------------------------------------------------------------------- /contracts/vendor/proxy/EIP173/Proxied.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/vendor/proxy/EIP173/Proxied.sol -------------------------------------------------------------------------------- /contracts/vendor/proxy/EIP173/Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/contracts/vendor/proxy/EIP173/Proxy.sol -------------------------------------------------------------------------------- /deploy/Automate.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/Automate.deploy.ts -------------------------------------------------------------------------------- /deploy/OpsProxy.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/OpsProxy.deploy.ts -------------------------------------------------------------------------------- /deploy/OpsProxyFactory.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/OpsProxyFactory.deploy.ts -------------------------------------------------------------------------------- /deploy/OpsProxyFactoryZkSync.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/OpsProxyFactoryZkSync.deploy.ts -------------------------------------------------------------------------------- /deploy/ProxyModule.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/ProxyModule.deploy.ts -------------------------------------------------------------------------------- /deploy/ResolverModule.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/ResolverModule.deploy.ts -------------------------------------------------------------------------------- /deploy/SingleExecModule.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/SingleExecModule.deploy.ts -------------------------------------------------------------------------------- /deploy/TriggerModule.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/TriggerModule.deploy.ts -------------------------------------------------------------------------------- /deploy/Web3FunctionModule.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/Web3FunctionModule.deploy.ts -------------------------------------------------------------------------------- /deploy/tests/CounterResolver.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/tests/CounterResolver.deploy.ts -------------------------------------------------------------------------------- /deploy/tests/CounterTest.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/tests/CounterTest.deploy.ts -------------------------------------------------------------------------------- /deploy/tests/CounterTestWT.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/tests/CounterTestWT.deploy.ts -------------------------------------------------------------------------------- /deploy/tests/CounterWL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deploy/tests/CounterWL.ts -------------------------------------------------------------------------------- /deployments/abstract/.chainId: -------------------------------------------------------------------------------- 1 | 2741 -------------------------------------------------------------------------------- /deployments/abstract/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/Automate.json -------------------------------------------------------------------------------- /deployments/abstract/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/abstract/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/OpsProxy.json -------------------------------------------------------------------------------- /deployments/abstract/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/ProxyModule.json -------------------------------------------------------------------------------- /deployments/abstract/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/ResolverModule.json -------------------------------------------------------------------------------- /deployments/abstract/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/abstract/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/TriggerModule.json -------------------------------------------------------------------------------- /deployments/abstract/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/abstract/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/alephzero/.chainId: -------------------------------------------------------------------------------- 1 | 41455 -------------------------------------------------------------------------------- /deployments/alephzero/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/Automate.json -------------------------------------------------------------------------------- /deployments/alephzero/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/alephzero/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/OpsProxy.json -------------------------------------------------------------------------------- /deployments/alephzero/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/alephzero/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/ProxyModule.json -------------------------------------------------------------------------------- /deployments/alephzero/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/ResolverModule.json -------------------------------------------------------------------------------- /deployments/alephzero/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/alephzero/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/TriggerModule.json -------------------------------------------------------------------------------- /deployments/alephzero/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzero/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/alephzerotestnet/.chainId: -------------------------------------------------------------------------------- 1 | 2039 -------------------------------------------------------------------------------- /deployments/alephzerotestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzerotestnet/Automate.json -------------------------------------------------------------------------------- /deployments/alephzerotestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzerotestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/alephzerotestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/alephzerotestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/amoy/.chainId: -------------------------------------------------------------------------------- 1 | 80002 -------------------------------------------------------------------------------- /deployments/amoy/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/Automate.json -------------------------------------------------------------------------------- /deployments/amoy/Automate_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/Automate_Implementation.json -------------------------------------------------------------------------------- /deployments/amoy/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/amoy/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/OpsProxy.json -------------------------------------------------------------------------------- /deployments/amoy/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/amoy/OpsProxyFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/OpsProxyFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/amoy/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/ProxyModule.json -------------------------------------------------------------------------------- /deployments/amoy/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/ResolverModule.json -------------------------------------------------------------------------------- /deployments/amoy/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/amoy/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/TriggerModule.json -------------------------------------------------------------------------------- /deployments/amoy/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoy/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/amoyDev/.chainId: -------------------------------------------------------------------------------- 1 | 80002 -------------------------------------------------------------------------------- /deployments/amoyDev/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/Automate.json -------------------------------------------------------------------------------- /deployments/amoyDev/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/amoyDev/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/OpsProxy.json -------------------------------------------------------------------------------- /deployments/amoyDev/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/amoyDev/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/ProxyModule.json -------------------------------------------------------------------------------- /deployments/amoyDev/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/ResolverModule.json -------------------------------------------------------------------------------- /deployments/amoyDev/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/amoyDev/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/TriggerModule.json -------------------------------------------------------------------------------- /deployments/amoyDev/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/amoyDev/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/anomalyandromeda/.chainId: -------------------------------------------------------------------------------- 1 | 241120 -------------------------------------------------------------------------------- /deployments/anomalyandromeda/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/anomalyandromeda/Automate.json -------------------------------------------------------------------------------- /deployments/anomalyandromeda/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/anomalyandromeda/OpsProxy.json -------------------------------------------------------------------------------- /deployments/anomalyandromeda/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/anomalyandromeda/ProxyModule.json -------------------------------------------------------------------------------- /deployments/arbgoerli/.chainId: -------------------------------------------------------------------------------- 1 | 421613 -------------------------------------------------------------------------------- /deployments/arbgoerli/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/Automate.json -------------------------------------------------------------------------------- /deployments/arbgoerli/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/arbgoerli/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/OpsProxy.json -------------------------------------------------------------------------------- /deployments/arbgoerli/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/arbgoerli/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/ProxyModule.json -------------------------------------------------------------------------------- /deployments/arbgoerli/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/ResolverModule.json -------------------------------------------------------------------------------- /deployments/arbgoerli/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/arbgoerli/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/TimeModule.json -------------------------------------------------------------------------------- /deployments/arbgoerli/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/TriggerModule.json -------------------------------------------------------------------------------- /deployments/arbgoerli/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbgoerli/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/arbitrum/.chainId: -------------------------------------------------------------------------------- 1 | 42161 -------------------------------------------------------------------------------- /deployments/arbitrum/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/Automate.json -------------------------------------------------------------------------------- /deployments/arbitrum/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/arbitrum/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/OpsProxy.json -------------------------------------------------------------------------------- /deployments/arbitrum/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/arbitrum/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/ProxyModule.json -------------------------------------------------------------------------------- /deployments/arbitrum/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/ResolverModule.json -------------------------------------------------------------------------------- /deployments/arbitrum/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/arbitrum/TaskTreasuryL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/TaskTreasuryL2.json -------------------------------------------------------------------------------- /deployments/arbitrum/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/TimeModule.json -------------------------------------------------------------------------------- /deployments/arbitrum/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/TriggerModule.json -------------------------------------------------------------------------------- /deployments/arbitrum/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrum/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/.chainId: -------------------------------------------------------------------------------- 1 | 42161 -------------------------------------------------------------------------------- /deployments/arbitrumdev/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/Automate.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/OpsProxy.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/ProxyModule.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/ResolverModule.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/arbitrumdev/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbitrumdev/TriggerModule.json -------------------------------------------------------------------------------- /deployments/arbsepolia/.chainId: -------------------------------------------------------------------------------- 1 | 421614 -------------------------------------------------------------------------------- /deployments/arbsepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/Automate.json -------------------------------------------------------------------------------- /deployments/arbsepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/arbsepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/arbsepolia/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/arbsepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/arbsepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/arbsepolia/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/arbsepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/arbsepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/astarzkevm/.chainId: -------------------------------------------------------------------------------- 1 | 3776 -------------------------------------------------------------------------------- /deployments/astarzkevm/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/Automate.json -------------------------------------------------------------------------------- /deployments/astarzkevm/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/astarzkevm/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/OpsProxy.json -------------------------------------------------------------------------------- /deployments/astarzkevm/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/astarzkevm/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/ProxyModule.json -------------------------------------------------------------------------------- /deployments/astarzkevm/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/ResolverModule.json -------------------------------------------------------------------------------- /deployments/astarzkevm/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/astarzkevm/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkevm/TriggerModule.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/.chainId: -------------------------------------------------------------------------------- 1 | 6038361 -------------------------------------------------------------------------------- /deployments/astarzkyoto/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/Automate.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/OpsProxy.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/ProxyModule.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/ResolverModule.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/astarzkyoto/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/astarzkyoto/TriggerModule.json -------------------------------------------------------------------------------- /deployments/avalanche/.chainId: -------------------------------------------------------------------------------- 1 | 43114 -------------------------------------------------------------------------------- /deployments/avalanche/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/Automate.json -------------------------------------------------------------------------------- /deployments/avalanche/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/avalanche/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/OpsProxy.json -------------------------------------------------------------------------------- /deployments/avalanche/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/avalanche/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/ProxyModule.json -------------------------------------------------------------------------------- /deployments/avalanche/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/ResolverModule.json -------------------------------------------------------------------------------- /deployments/avalanche/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/avalanche/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/TimeModule.json -------------------------------------------------------------------------------- /deployments/avalanche/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/TriggerModule.json -------------------------------------------------------------------------------- /deployments/avalanche/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/avalanche/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/base/.chainId: -------------------------------------------------------------------------------- 1 | 8453 -------------------------------------------------------------------------------- /deployments/base/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/Automate.json -------------------------------------------------------------------------------- /deployments/base/Automate_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/Automate_Implementation.json -------------------------------------------------------------------------------- /deployments/base/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/base/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/OpsProxy.json -------------------------------------------------------------------------------- /deployments/base/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/base/OpsProxyFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/OpsProxyFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/base/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/ProxyModule.json -------------------------------------------------------------------------------- /deployments/base/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/ResolverModule.json -------------------------------------------------------------------------------- /deployments/base/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/base/TaskTreasuryUpgradable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/TaskTreasuryUpgradable.json -------------------------------------------------------------------------------- /deployments/base/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/TimeModule.json -------------------------------------------------------------------------------- /deployments/base/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/TriggerModule.json -------------------------------------------------------------------------------- /deployments/base/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/base/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/baseGoerli/.chainId: -------------------------------------------------------------------------------- 1 | 84531 -------------------------------------------------------------------------------- /deployments/baseGoerli/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/Automate.json -------------------------------------------------------------------------------- /deployments/baseGoerli/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/baseGoerli/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/OpsProxy.json -------------------------------------------------------------------------------- /deployments/baseGoerli/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/baseGoerli/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/ProxyModule.json -------------------------------------------------------------------------------- /deployments/baseGoerli/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/ResolverModule.json -------------------------------------------------------------------------------- /deployments/baseGoerli/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/baseGoerli/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/TimeModule.json -------------------------------------------------------------------------------- /deployments/baseGoerli/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/baseGoerli/TriggerModule.json -------------------------------------------------------------------------------- /deployments/basecamptestnet/.chainId: -------------------------------------------------------------------------------- 1 | 123420001114 -------------------------------------------------------------------------------- /deployments/basecamptestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basecamptestnet/Automate.json -------------------------------------------------------------------------------- /deployments/basecamptestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basecamptestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/basecamptestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basecamptestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/basesepolia/.chainId: -------------------------------------------------------------------------------- 1 | 84532 -------------------------------------------------------------------------------- /deployments/basesepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/Automate.json -------------------------------------------------------------------------------- /deployments/basesepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/basesepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/basesepolia/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/basesepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/basesepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/basesepolia/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/basesepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/basesepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/bepolia/.chainId: -------------------------------------------------------------------------------- 1 | 80069 -------------------------------------------------------------------------------- /deployments/bepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/Automate.json -------------------------------------------------------------------------------- /deployments/bepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/bepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/bepolia/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/bepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/bepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/bepolia/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/bepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/bepolia/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bepolia/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/berachain/.chainId: -------------------------------------------------------------------------------- 1 | 80094 -------------------------------------------------------------------------------- /deployments/berachain/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/Automate.json -------------------------------------------------------------------------------- /deployments/berachain/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/berachain/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/OpsProxy.json -------------------------------------------------------------------------------- /deployments/berachain/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/berachain/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/ProxyModule.json -------------------------------------------------------------------------------- /deployments/berachain/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/ResolverModule.json -------------------------------------------------------------------------------- /deployments/berachain/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/berachain/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/TriggerModule.json -------------------------------------------------------------------------------- /deployments/berachain/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachain/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/berachainbartio/.chainId: -------------------------------------------------------------------------------- 1 | 80084 -------------------------------------------------------------------------------- /deployments/berachainbartio/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachainbartio/Automate.json -------------------------------------------------------------------------------- /deployments/berachainbartio/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachainbartio/OpsProxy.json -------------------------------------------------------------------------------- /deployments/berachainbartio/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/berachainbartio/ProxyModule.json -------------------------------------------------------------------------------- /deployments/blackberry/.chainId: -------------------------------------------------------------------------------- 1 | 94204209 -------------------------------------------------------------------------------- /deployments/blackberry/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/Automate.json -------------------------------------------------------------------------------- /deployments/blackberry/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/blackberry/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/OpsProxy.json -------------------------------------------------------------------------------- /deployments/blackberry/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/blackberry/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/ProxyModule.json -------------------------------------------------------------------------------- /deployments/blackberry/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/ResolverModule.json -------------------------------------------------------------------------------- /deployments/blackberry/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/blackberry/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blackberry/TriggerModule.json -------------------------------------------------------------------------------- /deployments/blast/.chainId: -------------------------------------------------------------------------------- 1 | 81457 -------------------------------------------------------------------------------- /deployments/blast/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/Automate.json -------------------------------------------------------------------------------- /deployments/blast/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/blast/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/OpsProxy.json -------------------------------------------------------------------------------- /deployments/blast/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/blast/OpsProxyFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/OpsProxyFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/blast/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/ProxyModule.json -------------------------------------------------------------------------------- /deployments/blast/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/ResolverModule.json -------------------------------------------------------------------------------- /deployments/blast/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/blast/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/TriggerModule.json -------------------------------------------------------------------------------- /deployments/blast/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blast/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/blastsepolia/.chainId: -------------------------------------------------------------------------------- 1 | 168587773 -------------------------------------------------------------------------------- /deployments/blastsepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/Automate.json -------------------------------------------------------------------------------- /deployments/blastsepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/blastsepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/blastsepolia/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/blastsepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/blastsepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/blastsepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/blastsepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/bonito/.chainId: -------------------------------------------------------------------------------- 1 | 69658185 -------------------------------------------------------------------------------- /deployments/bonito/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/Automate.json -------------------------------------------------------------------------------- /deployments/bonito/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/bonito/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/OpsProxy.json -------------------------------------------------------------------------------- /deployments/bonito/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/bonito/OpsProxyFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/OpsProxyFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/bonito/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/ProxyModule.json -------------------------------------------------------------------------------- /deployments/bonito/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/ResolverModule.json -------------------------------------------------------------------------------- /deployments/bonito/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/bonito/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/TriggerModule.json -------------------------------------------------------------------------------- /deployments/bonito/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bonito/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/botanix/.chainId: -------------------------------------------------------------------------------- 1 | 3637 -------------------------------------------------------------------------------- /deployments/botanix/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/Automate.json -------------------------------------------------------------------------------- /deployments/botanix/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/botanix/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/OpsProxy.json -------------------------------------------------------------------------------- /deployments/botanix/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/botanix/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/ProxyModule.json -------------------------------------------------------------------------------- /deployments/botanix/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/ResolverModule.json -------------------------------------------------------------------------------- /deployments/botanix/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/botanix/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/TriggerModule.json -------------------------------------------------------------------------------- /deployments/botanix/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanix/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/botanixtestnet/.chainId: -------------------------------------------------------------------------------- 1 | 3636 -------------------------------------------------------------------------------- /deployments/botanixtestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanixtestnet/Automate.json -------------------------------------------------------------------------------- /deployments/botanixtestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanixtestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/botanixtestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanixtestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/botanixtestnet/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/botanixtestnet/TriggerModule.json -------------------------------------------------------------------------------- /deployments/bsc/.chainId: -------------------------------------------------------------------------------- 1 | 56 -------------------------------------------------------------------------------- /deployments/bsc/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/Automate.json -------------------------------------------------------------------------------- /deployments/bsc/Automate_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/Automate_Implementation.json -------------------------------------------------------------------------------- /deployments/bsc/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/bsc/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/OpsProxy.json -------------------------------------------------------------------------------- /deployments/bsc/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/bsc/OpsProxyFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/OpsProxyFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/bsc/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/ProxyModule.json -------------------------------------------------------------------------------- /deployments/bsc/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/ResolverModule.json -------------------------------------------------------------------------------- /deployments/bsc/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/bsc/TaskTreasuryUpgradable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/TaskTreasuryUpgradable.json -------------------------------------------------------------------------------- /deployments/bsc/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/TimeModule.json -------------------------------------------------------------------------------- /deployments/bsc/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/TriggerModule.json -------------------------------------------------------------------------------- /deployments/bsc/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/bsc/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/camp/.chainId: -------------------------------------------------------------------------------- 1 | 484 -------------------------------------------------------------------------------- /deployments/camp/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/Automate.json -------------------------------------------------------------------------------- /deployments/camp/Automate_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/Automate_Implementation.json -------------------------------------------------------------------------------- /deployments/camp/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/camp/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/OpsProxy.json -------------------------------------------------------------------------------- /deployments/camp/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/camp/OpsProxyFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/OpsProxyFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/camp/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/ProxyModule.json -------------------------------------------------------------------------------- /deployments/camp/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/ResolverModule.json -------------------------------------------------------------------------------- /deployments/camp/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/camp/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/TriggerModule.json -------------------------------------------------------------------------------- /deployments/camp/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/camp/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/campnetworktestnet/.chainId: -------------------------------------------------------------------------------- 1 | 325000 -------------------------------------------------------------------------------- /deployments/campnetworktestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/campnetworktestnet/Automate.json -------------------------------------------------------------------------------- /deployments/campnetworktestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/campnetworktestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/carvtestnet/.chainId: -------------------------------------------------------------------------------- 1 | 123420000567 -------------------------------------------------------------------------------- /deployments/carvtestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/Automate.json -------------------------------------------------------------------------------- /deployments/carvtestnet/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/carvtestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/carvtestnet/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/carvtestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/carvtestnet/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/ResolverModule.json -------------------------------------------------------------------------------- /deployments/carvtestnet/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/carvtestnet/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/carvtestnet/TriggerModule.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/.chainId: -------------------------------------------------------------------------------- 1 | 8818 -------------------------------------------------------------------------------- /deployments/clinkmainnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/Automate.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/ResolverModule.json -------------------------------------------------------------------------------- /deployments/clinkmainnet/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinkmainnet/TriggerModule.json -------------------------------------------------------------------------------- /deployments/clinktestnet/.chainId: -------------------------------------------------------------------------------- 1 | 123420000987 -------------------------------------------------------------------------------- /deployments/clinktestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/Automate.json -------------------------------------------------------------------------------- /deployments/clinktestnet/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/clinktestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/clinktestnet/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/clinktestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/clinktestnet/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/ResolverModule.json -------------------------------------------------------------------------------- /deployments/clinktestnet/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/clinktestnet/TriggerModule.json -------------------------------------------------------------------------------- /deployments/connextsepolia/.chainId: -------------------------------------------------------------------------------- 1 | 6398 -------------------------------------------------------------------------------- /deployments/connextsepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/connextsepolia/Automate.json -------------------------------------------------------------------------------- /deployments/connextsepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/connextsepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/connextsepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/connextsepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/connextsepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/connextsepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/coredao/.chainId: -------------------------------------------------------------------------------- 1 | 1116 -------------------------------------------------------------------------------- /deployments/coredao/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/Automate.json -------------------------------------------------------------------------------- /deployments/coredao/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/coredao/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/OpsProxy.json -------------------------------------------------------------------------------- /deployments/coredao/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/coredao/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/ProxyModule.json -------------------------------------------------------------------------------- /deployments/coredao/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/ResolverModule.json -------------------------------------------------------------------------------- /deployments/coredao/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/coredao/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/TriggerModule.json -------------------------------------------------------------------------------- /deployments/coredao/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/coredao/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/cornmaizenet/.chainId: -------------------------------------------------------------------------------- 1 | 324 -------------------------------------------------------------------------------- /deployments/cornmaizenet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/cornmaizenet/Automate.json -------------------------------------------------------------------------------- /deployments/cornmaizenet/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/cornmaizenet/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/cornmaizenet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/cornmaizenet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/cornmaizenet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/cornmaizenet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/etherlink/.chainId: -------------------------------------------------------------------------------- 1 | 42793 -------------------------------------------------------------------------------- /deployments/etherlink/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/Automate.json -------------------------------------------------------------------------------- /deployments/etherlink/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/etherlink/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/OpsProxy.json -------------------------------------------------------------------------------- /deployments/etherlink/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/etherlink/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/ProxyModule.json -------------------------------------------------------------------------------- /deployments/etherlink/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/ResolverModule.json -------------------------------------------------------------------------------- /deployments/etherlink/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlink/TriggerModule.json -------------------------------------------------------------------------------- /deployments/etherlinktestnet/.chainId: -------------------------------------------------------------------------------- 1 | 128123 -------------------------------------------------------------------------------- /deployments/etherlinktestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlinktestnet/Automate.json -------------------------------------------------------------------------------- /deployments/etherlinktestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/etherlinktestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/everclear/.chainId: -------------------------------------------------------------------------------- 1 | 25327 -------------------------------------------------------------------------------- /deployments/everclear/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/Automate.json -------------------------------------------------------------------------------- /deployments/everclear/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/everclear/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/OpsProxy.json -------------------------------------------------------------------------------- /deployments/everclear/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/everclear/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/ProxyModule.json -------------------------------------------------------------------------------- /deployments/everclear/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/ResolverModule.json -------------------------------------------------------------------------------- /deployments/everclear/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/everclear/TriggerModule.json -------------------------------------------------------------------------------- /deployments/fantom/.chainId: -------------------------------------------------------------------------------- 1 | 250 -------------------------------------------------------------------------------- /deployments/fantom/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/Automate.json -------------------------------------------------------------------------------- /deployments/fantom/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/fantom/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/OpsProxy.json -------------------------------------------------------------------------------- /deployments/fantom/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/fantom/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/ProxyModule.json -------------------------------------------------------------------------------- /deployments/fantom/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/ResolverModule.json -------------------------------------------------------------------------------- /deployments/fantom/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/fantom/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/TimeModule.json -------------------------------------------------------------------------------- /deployments/fantom/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/TriggerModule.json -------------------------------------------------------------------------------- /deployments/fantom/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/fantom/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/filecoin/.chainId: -------------------------------------------------------------------------------- 1 | 314 -------------------------------------------------------------------------------- /deployments/filecoin/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/Automate.json -------------------------------------------------------------------------------- /deployments/filecoin/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/filecoin/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/OpsProxy.json -------------------------------------------------------------------------------- /deployments/filecoin/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/filecoin/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/ProxyModule.json -------------------------------------------------------------------------------- /deployments/filecoin/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/ResolverModule.json -------------------------------------------------------------------------------- /deployments/filecoin/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/filecoin/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/filecoin/TriggerModule.json -------------------------------------------------------------------------------- /deployments/flow/.chainId: -------------------------------------------------------------------------------- 1 | 747 -------------------------------------------------------------------------------- /deployments/flow/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/Automate.json -------------------------------------------------------------------------------- /deployments/flow/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/flow/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/OpsProxy.json -------------------------------------------------------------------------------- /deployments/flow/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/flow/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/ProxyModule.json -------------------------------------------------------------------------------- /deployments/flow/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/ResolverModule.json -------------------------------------------------------------------------------- /deployments/flow/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/flow/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/TriggerModule.json -------------------------------------------------------------------------------- /deployments/flow/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/flow/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/gelatoorbittestnet/.chainId: -------------------------------------------------------------------------------- 1 | 88153591557 -------------------------------------------------------------------------------- /deployments/gelatoorbittestnetDev/.chainId: -------------------------------------------------------------------------------- 1 | 88153591557 -------------------------------------------------------------------------------- /deployments/gelopcelestiatestnet/.chainId: -------------------------------------------------------------------------------- 1 | 123420111 -------------------------------------------------------------------------------- /deployments/geloptestnet/.chainId: -------------------------------------------------------------------------------- 1 | 42069 -------------------------------------------------------------------------------- /deployments/geloptestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/geloptestnet/Automate.json -------------------------------------------------------------------------------- /deployments/geloptestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/geloptestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/geloptestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/geloptestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/gnosis/.chainId: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /deployments/gnosis/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/Automate.json -------------------------------------------------------------------------------- /deployments/gnosis/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/gnosis/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/OpsProxy.json -------------------------------------------------------------------------------- /deployments/gnosis/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/gnosis/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/ProxyModule.json -------------------------------------------------------------------------------- /deployments/gnosis/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/ResolverModule.json -------------------------------------------------------------------------------- /deployments/gnosis/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/gnosis/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/TriggerModule.json -------------------------------------------------------------------------------- /deployments/gnosis/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/gnosis/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/goerli/.chainId: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /deployments/goerli/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/Automate.json -------------------------------------------------------------------------------- /deployments/goerli/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/goerli/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/OpsProxy.json -------------------------------------------------------------------------------- /deployments/goerli/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/goerli/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/ProxyModule.json -------------------------------------------------------------------------------- /deployments/goerli/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/ResolverModule.json -------------------------------------------------------------------------------- /deployments/goerli/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/goerli/TaskTreasuryL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/TaskTreasuryL2.json -------------------------------------------------------------------------------- /deployments/goerli/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/TimeModule.json -------------------------------------------------------------------------------- /deployments/goerli/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/TriggerModule.json -------------------------------------------------------------------------------- /deployments/goerli/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/goerli/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/hyperevm/.chainId: -------------------------------------------------------------------------------- 1 | 999 -------------------------------------------------------------------------------- /deployments/hyperevm/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/Automate.json -------------------------------------------------------------------------------- /deployments/hyperevm/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/hyperevm/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/OpsProxy.json -------------------------------------------------------------------------------- /deployments/hyperevm/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/hyperevm/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/ProxyModule.json -------------------------------------------------------------------------------- /deployments/hyperevm/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/ResolverModule.json -------------------------------------------------------------------------------- /deployments/hyperevm/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/hyperevm/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevm/TriggerModule.json -------------------------------------------------------------------------------- /deployments/hyperevmtestnet/.chainId: -------------------------------------------------------------------------------- 1 | 998 -------------------------------------------------------------------------------- /deployments/hyperevmtestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevmtestnet/Automate.json -------------------------------------------------------------------------------- /deployments/hyperevmtestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/hyperevmtestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/inksepolia/.chainId: -------------------------------------------------------------------------------- 1 | 763373 -------------------------------------------------------------------------------- /deployments/inksepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/inksepolia/Automate.json -------------------------------------------------------------------------------- /deployments/inksepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/inksepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/inksepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/inksepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/inksepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/inksepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/inksepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/inksepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/inksepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/inksepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/linea/.chainId: -------------------------------------------------------------------------------- 1 | 59144 -------------------------------------------------------------------------------- /deployments/linea/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/Automate.json -------------------------------------------------------------------------------- /deployments/linea/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/linea/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/OpsProxy.json -------------------------------------------------------------------------------- /deployments/linea/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/linea/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/ProxyModule.json -------------------------------------------------------------------------------- /deployments/linea/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/ResolverModule.json -------------------------------------------------------------------------------- /deployments/linea/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/linea/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/TimeModule.json -------------------------------------------------------------------------------- /deployments/linea/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/TriggerModule.json -------------------------------------------------------------------------------- /deployments/linea/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/linea/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/lisk/.chainId: -------------------------------------------------------------------------------- 1 | 1135 -------------------------------------------------------------------------------- /deployments/lisk/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/Automate.json -------------------------------------------------------------------------------- /deployments/lisk/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/lisk/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/OpsProxy.json -------------------------------------------------------------------------------- /deployments/lisk/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/lisk/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/ProxyModule.json -------------------------------------------------------------------------------- /deployments/lisk/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/ResolverModule.json -------------------------------------------------------------------------------- /deployments/lisk/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/lisk/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/TriggerModule.json -------------------------------------------------------------------------------- /deployments/lisk/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisk/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/lisksepolia/.chainId: -------------------------------------------------------------------------------- 1 | 4202 -------------------------------------------------------------------------------- /deployments/lisksepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisksepolia/Automate.json -------------------------------------------------------------------------------- /deployments/lisksepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisksepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/lisksepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisksepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/lisksepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/lisksepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/ludicotetromino/.chainId: -------------------------------------------------------------------------------- 1 | 4444 -------------------------------------------------------------------------------- /deployments/ludicotetromino/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ludicotetromino/Automate.json -------------------------------------------------------------------------------- /deployments/ludicotetromino/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ludicotetromino/OpsProxy.json -------------------------------------------------------------------------------- /deployments/mainnet/.chainId: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /deployments/mainnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/Automate.json -------------------------------------------------------------------------------- /deployments/mainnet/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/mainnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/mainnet/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/mainnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/mainnet/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/ResolverModule.json -------------------------------------------------------------------------------- /deployments/mainnet/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/mainnet/TaskTreasuryL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/TaskTreasuryL2.json -------------------------------------------------------------------------------- /deployments/mainnet/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/TimeModule.json -------------------------------------------------------------------------------- /deployments/mainnet/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mainnet/TriggerModule.json -------------------------------------------------------------------------------- /deployments/megaethtestnet/.chainId: -------------------------------------------------------------------------------- 1 | 6342 -------------------------------------------------------------------------------- /deployments/megaethtestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/megaethtestnet/Automate.json -------------------------------------------------------------------------------- /deployments/megaethtestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/megaethtestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/metis/.chainId: -------------------------------------------------------------------------------- 1 | 1088 -------------------------------------------------------------------------------- /deployments/metis/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/Automate.json -------------------------------------------------------------------------------- /deployments/metis/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/metis/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/OpsProxy.json -------------------------------------------------------------------------------- /deployments/metis/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/metis/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/ProxyModule.json -------------------------------------------------------------------------------- /deployments/metis/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/ResolverModule.json -------------------------------------------------------------------------------- /deployments/metis/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/metis/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/TriggerModule.json -------------------------------------------------------------------------------- /deployments/metis/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/metis/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/miketestnet/.chainId: -------------------------------------------------------------------------------- 1 | 123420001692 -------------------------------------------------------------------------------- /deployments/miketestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/miketestnet/Automate.json -------------------------------------------------------------------------------- /deployments/miketestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/miketestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/miketestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/miketestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/miketestnet/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/miketestnet/TriggerModule.json -------------------------------------------------------------------------------- /deployments/mitosismainnet/.chainId: -------------------------------------------------------------------------------- 1 | 124816 -------------------------------------------------------------------------------- /deployments/mitosismainnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mitosismainnet/Automate.json -------------------------------------------------------------------------------- /deployments/mitosismainnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mitosismainnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/mode/.chainId: -------------------------------------------------------------------------------- 1 | 34443 -------------------------------------------------------------------------------- /deployments/mode/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/Automate.json -------------------------------------------------------------------------------- /deployments/mode/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/mode/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/OpsProxy.json -------------------------------------------------------------------------------- /deployments/mode/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/mode/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/ProxyModule.json -------------------------------------------------------------------------------- /deployments/mode/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/ResolverModule.json -------------------------------------------------------------------------------- /deployments/mode/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/mode/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/TriggerModule.json -------------------------------------------------------------------------------- /deployments/mode/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mode/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/monadtestnet/.chainId: -------------------------------------------------------------------------------- 1 | 10143 -------------------------------------------------------------------------------- /deployments/monadtestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/monadtestnet/Automate.json -------------------------------------------------------------------------------- /deployments/monadtestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/monadtestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/monadtestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/monadtestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/mumbai/.chainId: -------------------------------------------------------------------------------- 1 | 80001 -------------------------------------------------------------------------------- /deployments/mumbai/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/Automate.json -------------------------------------------------------------------------------- /deployments/mumbai/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/mumbai/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/OpsProxy.json -------------------------------------------------------------------------------- /deployments/mumbai/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/mumbai/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/ProxyModule.json -------------------------------------------------------------------------------- /deployments/mumbai/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/ResolverModule.json -------------------------------------------------------------------------------- /deployments/mumbai/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/mumbai/TaskTreasuryL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/TaskTreasuryL2.json -------------------------------------------------------------------------------- /deployments/mumbai/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/TimeModule.json -------------------------------------------------------------------------------- /deployments/mumbai/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/TriggerModule.json -------------------------------------------------------------------------------- /deployments/mumbai/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbai/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/.chainId: -------------------------------------------------------------------------------- 1 | 80001 -------------------------------------------------------------------------------- /deployments/mumbaiDev/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/Automate.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/OpsProxy.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/ProxyModule.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/ResolverModule.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/TimeModule.json -------------------------------------------------------------------------------- /deployments/mumbaiDev/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/mumbaiDev/TriggerModule.json -------------------------------------------------------------------------------- /deployments/nibiru/.chainId: -------------------------------------------------------------------------------- 1 | 6900 -------------------------------------------------------------------------------- /deployments/nibiru/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/Automate.json -------------------------------------------------------------------------------- /deployments/nibiru/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/nibiru/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/OpsProxy.json -------------------------------------------------------------------------------- /deployments/nibiru/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/nibiru/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/ProxyModule.json -------------------------------------------------------------------------------- /deployments/nibiru/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/ResolverModule.json -------------------------------------------------------------------------------- /deployments/nibiru/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/nibiru/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/TriggerModule.json -------------------------------------------------------------------------------- /deployments/nibiru/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibiru/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/nibirutestnet2/.chainId: -------------------------------------------------------------------------------- 1 | 6911 -------------------------------------------------------------------------------- /deployments/nibirutestnet2/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibirutestnet2/Automate.json -------------------------------------------------------------------------------- /deployments/nibirutestnet2/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/nibirutestnet2/OpsProxy.json -------------------------------------------------------------------------------- /deployments/novastrotestnet/.chainId: -------------------------------------------------------------------------------- 1 | 560098 -------------------------------------------------------------------------------- /deployments/novastrotestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/novastrotestnet/Automate.json -------------------------------------------------------------------------------- /deployments/novastrotestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/novastrotestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/ogoerli/.chainId: -------------------------------------------------------------------------------- 1 | 420 -------------------------------------------------------------------------------- /deployments/ogoerli/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/Automate.json -------------------------------------------------------------------------------- /deployments/ogoerli/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/ogoerli/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/OpsProxy.json -------------------------------------------------------------------------------- /deployments/ogoerli/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/ogoerli/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/ProxyModule.json -------------------------------------------------------------------------------- /deployments/ogoerli/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/ResolverModule.json -------------------------------------------------------------------------------- /deployments/ogoerli/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/ogoerli/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/TimeModule.json -------------------------------------------------------------------------------- /deployments/ogoerli/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/ogoerli/TriggerModule.json -------------------------------------------------------------------------------- /deployments/opencampuscodex/.chainId: -------------------------------------------------------------------------------- 1 | 656476 -------------------------------------------------------------------------------- /deployments/opencampuscodex/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/opencampuscodex/Automate.json -------------------------------------------------------------------------------- /deployments/opencampuscodex/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/opencampuscodex/OpsProxy.json -------------------------------------------------------------------------------- /deployments/optimism/.chainId: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /deployments/optimism/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/Automate.json -------------------------------------------------------------------------------- /deployments/optimism/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/optimism/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/OpsProxy.json -------------------------------------------------------------------------------- /deployments/optimism/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/optimism/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/ProxyModule.json -------------------------------------------------------------------------------- /deployments/optimism/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/ResolverModule.json -------------------------------------------------------------------------------- /deployments/optimism/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/optimism/TaskTreasuryL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/TaskTreasuryL2.json -------------------------------------------------------------------------------- /deployments/optimism/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/TimeModule.json -------------------------------------------------------------------------------- /deployments/optimism/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/optimism/TriggerModule.json -------------------------------------------------------------------------------- /deployments/osepolia/.chainId: -------------------------------------------------------------------------------- 1 | 11155420 -------------------------------------------------------------------------------- /deployments/osepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/Automate.json -------------------------------------------------------------------------------- /deployments/osepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/osepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/osepolia/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/osepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/osepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/osepolia/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/osepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/osepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/plasma/.chainId: -------------------------------------------------------------------------------- 1 | 9745 -------------------------------------------------------------------------------- /deployments/plasma/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/Automate.json -------------------------------------------------------------------------------- /deployments/plasma/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/plasma/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/OpsProxy.json -------------------------------------------------------------------------------- /deployments/plasma/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/plasma/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/ProxyModule.json -------------------------------------------------------------------------------- /deployments/plasma/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/ResolverModule.json -------------------------------------------------------------------------------- /deployments/plasma/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/plasma/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/TriggerModule.json -------------------------------------------------------------------------------- /deployments/plasma/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasma/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/plasmatestnet/.chainId: -------------------------------------------------------------------------------- 1 | 9746 -------------------------------------------------------------------------------- /deployments/plasmatestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasmatestnet/Automate.json -------------------------------------------------------------------------------- /deployments/plasmatestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasmatestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/plasmatestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/plasmatestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/plasmatestnetreset/.chainId: -------------------------------------------------------------------------------- 1 | 9746 -------------------------------------------------------------------------------- /deployments/playblock/.chainId: -------------------------------------------------------------------------------- 1 | 1829 -------------------------------------------------------------------------------- /deployments/playblock/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/Automate.json -------------------------------------------------------------------------------- /deployments/playblock/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/playblock/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/OpsProxy.json -------------------------------------------------------------------------------- /deployments/playblock/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/playblock/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/ProxyModule.json -------------------------------------------------------------------------------- /deployments/playblock/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/ResolverModule.json -------------------------------------------------------------------------------- /deployments/playblock/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/playblock/TriggerModule.json -------------------------------------------------------------------------------- /deployments/polygon/.chainId: -------------------------------------------------------------------------------- 1 | 137 -------------------------------------------------------------------------------- /deployments/polygon/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/Automate.json -------------------------------------------------------------------------------- /deployments/polygon/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/polygon/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/OpsProxy.json -------------------------------------------------------------------------------- /deployments/polygon/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/polygon/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/ProxyModule.json -------------------------------------------------------------------------------- /deployments/polygon/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/ResolverModule.json -------------------------------------------------------------------------------- /deployments/polygon/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/polygon/TaskTreasuryL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/TaskTreasuryL2.json -------------------------------------------------------------------------------- /deployments/polygon/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/TimeModule.json -------------------------------------------------------------------------------- /deployments/polygon/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygon/TriggerModule.json -------------------------------------------------------------------------------- /deployments/polygonzk/.chainId: -------------------------------------------------------------------------------- 1 | 1101 -------------------------------------------------------------------------------- /deployments/polygonzk/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/Automate.json -------------------------------------------------------------------------------- /deployments/polygonzk/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/polygonzk/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/OpsProxy.json -------------------------------------------------------------------------------- /deployments/polygonzk/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/polygonzk/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/ProxyModule.json -------------------------------------------------------------------------------- /deployments/polygonzk/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/ResolverModule.json -------------------------------------------------------------------------------- /deployments/polygonzk/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/TimeModule.json -------------------------------------------------------------------------------- /deployments/polygonzk/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/polygonzk/TriggerModule.json -------------------------------------------------------------------------------- /deployments/popberry/.chainId: -------------------------------------------------------------------------------- 1 | 1233 -------------------------------------------------------------------------------- /deployments/popberry/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/Automate.json -------------------------------------------------------------------------------- /deployments/popberry/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/popberry/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/OpsProxy.json -------------------------------------------------------------------------------- /deployments/popberry/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/popberry/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/ProxyModule.json -------------------------------------------------------------------------------- /deployments/popberry/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/ResolverModule.json -------------------------------------------------------------------------------- /deployments/popberry/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/popberry/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/popberry/TriggerModule.json -------------------------------------------------------------------------------- /deployments/prism/.chainId: -------------------------------------------------------------------------------- 1 | 994873017 -------------------------------------------------------------------------------- /deployments/prism/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/Automate.json -------------------------------------------------------------------------------- /deployments/prism/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/prism/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/OpsProxy.json -------------------------------------------------------------------------------- /deployments/prism/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/prism/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/ProxyModule.json -------------------------------------------------------------------------------- /deployments/prism/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/ResolverModule.json -------------------------------------------------------------------------------- /deployments/prism/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/prism/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/TriggerModule.json -------------------------------------------------------------------------------- /deployments/prism/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/prism/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/real/.chainId: -------------------------------------------------------------------------------- 1 | 111188 -------------------------------------------------------------------------------- /deployments/real/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/Automate.json -------------------------------------------------------------------------------- /deployments/real/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/real/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/OpsProxy.json -------------------------------------------------------------------------------- /deployments/real/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/real/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/ProxyModule.json -------------------------------------------------------------------------------- /deployments/real/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/ResolverModule.json -------------------------------------------------------------------------------- /deployments/real/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/real/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/TriggerModule.json -------------------------------------------------------------------------------- /deployments/real/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/real/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/reyacronos/.chainId: -------------------------------------------------------------------------------- 1 | 89346162 -------------------------------------------------------------------------------- /deployments/reyacronos/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyacronos/Automate.json -------------------------------------------------------------------------------- /deployments/reyacronos/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyacronos/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/reyacronos/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyacronos/OpsProxy.json -------------------------------------------------------------------------------- /deployments/reyacronos/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyacronos/ProxyModule.json -------------------------------------------------------------------------------- /deployments/reyacronos/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyacronos/ResolverModule.json -------------------------------------------------------------------------------- /deployments/reyacronos/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyacronos/TriggerModule.json -------------------------------------------------------------------------------- /deployments/reyanetwork/.chainId: -------------------------------------------------------------------------------- 1 | 1729 -------------------------------------------------------------------------------- /deployments/reyanetwork/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyanetwork/Automate.json -------------------------------------------------------------------------------- /deployments/reyanetwork/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyanetwork/OpsProxy.json -------------------------------------------------------------------------------- /deployments/reyanetwork/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyanetwork/ProxyModule.json -------------------------------------------------------------------------------- /deployments/reyanetwork/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/reyanetwork/TriggerModule.json -------------------------------------------------------------------------------- /deployments/rootstock/.chainId: -------------------------------------------------------------------------------- 1 | 30 -------------------------------------------------------------------------------- /deployments/rootstock/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/Automate.json -------------------------------------------------------------------------------- /deployments/rootstock/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/rootstock/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/OpsProxy.json -------------------------------------------------------------------------------- /deployments/rootstock/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/rootstock/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/ProxyModule.json -------------------------------------------------------------------------------- /deployments/rootstock/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/ResolverModule.json -------------------------------------------------------------------------------- /deployments/rootstock/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/rootstock/TriggerModule.json -------------------------------------------------------------------------------- /deployments/sepolia/.chainId: -------------------------------------------------------------------------------- 1 | 11155111 -------------------------------------------------------------------------------- /deployments/sepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/Automate.json -------------------------------------------------------------------------------- /deployments/sepolia/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/sepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/sepolia/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/sepolia/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/ProxyModule.json -------------------------------------------------------------------------------- /deployments/sepolia/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/ResolverModule.json -------------------------------------------------------------------------------- /deployments/sepolia/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/sepolia/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/sepolia/TriggerModule.json -------------------------------------------------------------------------------- /deployments/shape/.chainId: -------------------------------------------------------------------------------- 1 | 360 -------------------------------------------------------------------------------- /deployments/shape/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/Automate.json -------------------------------------------------------------------------------- /deployments/shape/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/shape/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/OpsProxy.json -------------------------------------------------------------------------------- /deployments/shape/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/shape/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/ProxyModule.json -------------------------------------------------------------------------------- /deployments/shape/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/ResolverModule.json -------------------------------------------------------------------------------- /deployments/shape/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/shape/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/TriggerModule.json -------------------------------------------------------------------------------- /deployments/shape/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/shape/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/singularitytestnet/.chainId: -------------------------------------------------------------------------------- 1 | 751 -------------------------------------------------------------------------------- /deployments/storyaeneidtestnet/.chainId: -------------------------------------------------------------------------------- 1 | 1315 -------------------------------------------------------------------------------- /deployments/storymainnet/.chainId: -------------------------------------------------------------------------------- 1 | 1514 -------------------------------------------------------------------------------- /deployments/storymainnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/storymainnet/Automate.json -------------------------------------------------------------------------------- /deployments/storymainnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/storymainnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/storymainnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/storymainnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/storyodysseytestnet/.chainId: -------------------------------------------------------------------------------- 1 | 1516 -------------------------------------------------------------------------------- /deployments/storytestnet/.chainId: -------------------------------------------------------------------------------- 1 | 1513 -------------------------------------------------------------------------------- /deployments/storytestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/storytestnet/Automate.json -------------------------------------------------------------------------------- /deployments/storytestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/storytestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/storytestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/storytestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/synfuturesabctestnet/.chainId: -------------------------------------------------------------------------------- 1 | 20250903 -------------------------------------------------------------------------------- /deployments/synfuturestestnet/.chainId: -------------------------------------------------------------------------------- 1 | 123420001840 -------------------------------------------------------------------------------- /deployments/takibitestnet/.chainId: -------------------------------------------------------------------------------- 1 | 21372 -------------------------------------------------------------------------------- /deployments/takibitestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/takibitestnet/Automate.json -------------------------------------------------------------------------------- /deployments/takibitestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/takibitestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/takibitestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/takibitestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/thrivetestnet/.chainId: -------------------------------------------------------------------------------- 1 | 1991 -------------------------------------------------------------------------------- /deployments/thrivetestnet/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/thrivetestnet/Automate.json -------------------------------------------------------------------------------- /deployments/thrivetestnet/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/thrivetestnet/OpsProxy.json -------------------------------------------------------------------------------- /deployments/thrivetestnet/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/thrivetestnet/ProxyModule.json -------------------------------------------------------------------------------- /deployments/unichain/.chainId: -------------------------------------------------------------------------------- 1 | 130 -------------------------------------------------------------------------------- /deployments/unichain/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/Automate.json -------------------------------------------------------------------------------- /deployments/unichain/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/unichain/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/OpsProxy.json -------------------------------------------------------------------------------- /deployments/unichain/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/unichain/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/ProxyModule.json -------------------------------------------------------------------------------- /deployments/unichain/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/ResolverModule.json -------------------------------------------------------------------------------- /deployments/unichain/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/unichain/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichain/TriggerModule.json -------------------------------------------------------------------------------- /deployments/unichainsepolia/.chainId: -------------------------------------------------------------------------------- 1 | 1301 -------------------------------------------------------------------------------- /deployments/unichainsepolia/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichainsepolia/Automate.json -------------------------------------------------------------------------------- /deployments/unichainsepolia/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unichainsepolia/OpsProxy.json -------------------------------------------------------------------------------- /deployments/unreal/.chainId: -------------------------------------------------------------------------------- 1 | 18231 -------------------------------------------------------------------------------- /deployments/unreal/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/Automate.json -------------------------------------------------------------------------------- /deployments/unreal/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/unreal/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/OpsProxy.json -------------------------------------------------------------------------------- /deployments/unreal/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/unreal/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/ProxyModule.json -------------------------------------------------------------------------------- /deployments/unreal/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/ResolverModule.json -------------------------------------------------------------------------------- /deployments/unreal/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/unreal/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/TriggerModule.json -------------------------------------------------------------------------------- /deployments/unreal/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unreal/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/unrealorbit/.chainId: -------------------------------------------------------------------------------- 1 | 18233 -------------------------------------------------------------------------------- /deployments/unrealorbit/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unrealorbit/Automate.json -------------------------------------------------------------------------------- /deployments/unrealorbit/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unrealorbit/OpsProxy.json -------------------------------------------------------------------------------- /deployments/unrealorbit/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unrealorbit/ProxyModule.json -------------------------------------------------------------------------------- /deployments/unrealorbit/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/unrealorbit/TriggerModule.json -------------------------------------------------------------------------------- /deployments/volmex/.chainId: -------------------------------------------------------------------------------- 1 | 123420000588 -------------------------------------------------------------------------------- /deployments/volmex/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/Automate.json -------------------------------------------------------------------------------- /deployments/volmex/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/volmex/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/OpsProxy.json -------------------------------------------------------------------------------- /deployments/volmex/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/volmex/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/ProxyModule.json -------------------------------------------------------------------------------- /deployments/volmex/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/ResolverModule.json -------------------------------------------------------------------------------- /deployments/volmex/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/volmex/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/TriggerModule.json -------------------------------------------------------------------------------- /deployments/volmex/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/volmex/Web3FunctionModule.json -------------------------------------------------------------------------------- /deployments/zircuit/.chainId: -------------------------------------------------------------------------------- 1 | 48900 -------------------------------------------------------------------------------- /deployments/zircuit/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/Automate.json -------------------------------------------------------------------------------- /deployments/zircuit/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/zircuit/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/OpsProxy.json -------------------------------------------------------------------------------- /deployments/zircuit/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/zircuit/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/ProxyModule.json -------------------------------------------------------------------------------- /deployments/zircuit/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/ResolverModule.json -------------------------------------------------------------------------------- /deployments/zircuit/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/zircuit/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zircuit/TriggerModule.json -------------------------------------------------------------------------------- /deployments/zkatana/.chainId: -------------------------------------------------------------------------------- 1 | 1261120 -------------------------------------------------------------------------------- /deployments/zkatana/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/Automate.json -------------------------------------------------------------------------------- /deployments/zkatana/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/zkatana/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/OpsProxy.json -------------------------------------------------------------------------------- /deployments/zkatana/OpsProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/OpsProxyFactory.json -------------------------------------------------------------------------------- /deployments/zkatana/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/ProxyModule.json -------------------------------------------------------------------------------- /deployments/zkatana/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/ResolverModule.json -------------------------------------------------------------------------------- /deployments/zkatana/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/zkatana/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zkatana/TriggerModule.json -------------------------------------------------------------------------------- /deployments/zksync/.chainId: -------------------------------------------------------------------------------- 1 | 324 -------------------------------------------------------------------------------- /deployments/zksync/Automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/Automate.json -------------------------------------------------------------------------------- /deployments/zksync/Automate_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/Automate_Proxy.json -------------------------------------------------------------------------------- /deployments/zksync/OpsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/OpsProxy.json -------------------------------------------------------------------------------- /deployments/zksync/ProxyModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/ProxyModule.json -------------------------------------------------------------------------------- /deployments/zksync/ResolverModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/ResolverModule.json -------------------------------------------------------------------------------- /deployments/zksync/SingleExecModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/SingleExecModule.json -------------------------------------------------------------------------------- /deployments/zksync/TimeModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/TimeModule.json -------------------------------------------------------------------------------- /deployments/zksync/TriggerModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/TriggerModule.json -------------------------------------------------------------------------------- /deployments/zksync/Web3FunctionModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/deployments/zksync/Web3FunctionModule.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/eslint.config.js -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/foundry.toml -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /hardhat/config/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/hardhat/config/addresses.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/package.json -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/remappings.txt -------------------------------------------------------------------------------- /scripts/dev-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/scripts/dev-modules.ts -------------------------------------------------------------------------------- /scripts/dev-transfer-automate-ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/scripts/dev-transfer-automate-ownership.ts -------------------------------------------------------------------------------- /scripts/dev-update-ops-implementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/scripts/dev-update-ops-implementation.ts -------------------------------------------------------------------------------- /scripts/dev-zk-verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/scripts/dev-zk-verify.ts -------------------------------------------------------------------------------- /src/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/src/addresses.ts -------------------------------------------------------------------------------- /src/scripts/deploy-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/src/scripts/deploy-docker.sh -------------------------------------------------------------------------------- /src/type-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/src/type-extensions.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /test/Automate-deprecated.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/Automate-deprecated.test.ts -------------------------------------------------------------------------------- /test/Automate-multiModule.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/Automate-multiModule.test.ts -------------------------------------------------------------------------------- /test/Automate-proxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/Automate-proxy.test.ts -------------------------------------------------------------------------------- /test/Automate-resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/Automate-resolver.test.ts -------------------------------------------------------------------------------- /test/Automate-singleExec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/Automate-singleExec.test.ts -------------------------------------------------------------------------------- /test/Automate-withoutTreasury.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/Automate-withoutTreasury.test.ts -------------------------------------------------------------------------------- /test/AutomateTaskCreator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/AutomateTaskCreator.test.ts -------------------------------------------------------------------------------- /test/OpsProxyFactoryZkSync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/OpsProxyFactoryZkSync.test.ts -------------------------------------------------------------------------------- /test/foundry/utils/Base.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/foundry/utils/Base.t.sol -------------------------------------------------------------------------------- /test/foundry/utils/Contracts.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/foundry/utils/Contracts.t.sol -------------------------------------------------------------------------------- /test/utils/1balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/utils/1balance.ts -------------------------------------------------------------------------------- /test/utils/faucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/utils/faucet.ts -------------------------------------------------------------------------------- /test/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/utils/index.ts -------------------------------------------------------------------------------- /test/utils/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/utils/modules.ts -------------------------------------------------------------------------------- /test/utils/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/utils/task.ts -------------------------------------------------------------------------------- /test/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/test/utils/time.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelatodigital/automate/HEAD/yarn.lock --------------------------------------------------------------------------------