├── LICENSE ├── README.md ├── advanced-testing-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── package-lock.json ├── package.json ├── run.ganache.fork.js ├── run.simulated.transactions.js └── src │ ├── agent.js │ ├── agent.spec.js │ └── constants.js ├── blacklisted-address-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── agent.spec.ts │ └── agent.ts └── tsconfig.json ├── compound-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── agent.ts │ ├── constants.ts │ ├── drip.invoked.ts │ └── high.comp.distribution.ts └── tsconfig.json ├── decrypt-alerts-py ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── package-lock.json ├── package.json ├── private.pem ├── publish.log ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt └── src │ └── agent.py ├── encrypt-alerts-py ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── package-lock.json ├── package.json ├── public.pem ├── publish.log ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt └── src │ └── agent.py ├── filter-event-and-function-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json └── src │ ├── agent.js │ ├── agent.spec.js │ ├── constants.js │ ├── large.transfer.event.js │ ├── large.transfer.event.spec.js │ ├── transfer.from.function.js │ └── transfer.from.function.spec.js ├── filter-event-and-function-py ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── requirements.txt ├── requirements_dev.txt └── src │ ├── __init__.py │ ├── agent.py │ ├── agent_test.py │ ├── constants.py │ ├── large_transfer_event.py │ ├── large_transfer_event_test.py │ ├── transfer_from_function.py │ └── transfer_from_function_test.py ├── flash-loan-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── agent.spec.ts │ └── agent.ts └── tsconfig.json ├── hiding-sensitive-data-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── obfuscation-config.js ├── package-lock.json ├── package.json └── src │ ├── agent.js │ └── agent.spec.js ├── high-gas-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── package-lock.json ├── package.json └── src │ ├── agent.js │ ├── agent.spec.js │ ├── crypto.price.getter.js │ ├── high.gas.fee.js │ ├── high.gas.fee.spec.js │ ├── high.gas.used.js │ └── high.gas.used.spec.js ├── high-gas-py ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── package-lock.json ├── package.json ├── requirements.txt ├── requirements_dev.txt └── src │ ├── agent.py │ └── agent_test.py ├── high-volume-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── package-lock.json ├── package.json └── src │ ├── agent.js │ ├── agent.spec.js │ └── transaction.counter.js ├── long-running-task-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json └── src │ └── agent.js ├── minimum-balance-py ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── package-lock.json ├── package.json ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt └── src │ ├── agent.py │ └── agent_test.py ├── minimum-balance-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── agent.spec.ts │ └── agent.ts └── tsconfig.json ├── oz-gnosis-events-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── jest.config.js ├── package-lock.json ├── package.json ├── publish.log ├── src │ ├── abis │ │ ├── gnosis-safe │ │ │ ├── CreateCall.json │ │ │ ├── EtherPaymentFallback.json │ │ │ ├── FallbackManager.json │ │ │ ├── GnosisSafe.json │ │ │ ├── GnosisSafeL2.json │ │ │ ├── GnosisSafeProxyFactory.json │ │ │ ├── GuardManager.json │ │ │ ├── ModuleManager.json │ │ │ ├── OwnerManager.json │ │ │ └── SignMessageLib.json │ │ └── openzeppelin │ │ │ ├── ERC1967Upgrade.json │ │ │ ├── ERC20Snapshot.json │ │ │ ├── Escrow.json │ │ │ ├── GovernorPreventLateQuorum.json │ │ │ ├── GovernorSettings.json │ │ │ ├── GovernorTimelockCompound.json │ │ │ ├── GovernorTimelockControl.json │ │ │ ├── GovernorVotesQuorumFraction.json │ │ │ ├── IAMB.json │ │ │ ├── IAccessControl.json │ │ │ ├── IArbSys.json │ │ │ ├── IBridge.json │ │ │ ├── ICompoundTimelock.json │ │ │ ├── ICrossDomainMessenger.json │ │ │ ├── IDelayedMessageProvider.json │ │ │ ├── IERC1155.json │ │ │ ├── IERC1820Registry.json │ │ │ ├── IERC20.json │ │ │ ├── IERC2309.json │ │ │ ├── IERC4626.json │ │ │ ├── IERC721.json │ │ │ ├── IERC777.json │ │ │ ├── IGovernor.json │ │ │ ├── IGovernorTimelock.json │ │ │ ├── IOutbox.json │ │ │ ├── IVotes.json │ │ │ ├── Initializable.json │ │ │ ├── Ownable.json │ │ │ ├── Ownable2Step.json │ │ │ ├── Pausable.json │ │ │ ├── PaymentSplitter.json │ │ │ ├── RefundEscrow.json │ │ │ ├── TimelockController.json │ │ │ ├── UpgradeableBeacon.json │ │ │ └── VestingWallet.json │ ├── agent.ts │ └── utils.ts └── tsconfig.json ├── poly-network-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── forta.config.json ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── ERC20Abi.json │ ├── EthCrossChainData.json │ ├── agent.ts │ ├── poly.asset.balance.agent.ts │ └── poly.keeper.changed.agent.ts └── tsconfig.json ├── private-agent-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── decrypt.js ├── generate-keys.js ├── obfuscation-config.js ├── package-lock.json ├── package.json └── src │ └── agent.js ├── querying-other-chains-js ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json └── src │ └── agent.js ├── solana-wormhole-agent ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── src │ └── agent.js └── wormhole.exploit.tx.js ├── tx-message-sentiment-analysis-py ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── publish.log ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt └── src │ ├── agent.py │ ├── agent_test.py │ ├── findings.py │ ├── logger.py │ └── utils.py └── tx-simulation-ts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── jest.config.js ├── package-lock.json ├── package.json ├── src ├── agent.spec.ts └── agent.ts └── tsconfig.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/README.md -------------------------------------------------------------------------------- /advanced-testing-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /advanced-testing-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /advanced-testing-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/Dockerfile -------------------------------------------------------------------------------- /advanced-testing-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/README.md -------------------------------------------------------------------------------- /advanced-testing-js/forta.config.json: -------------------------------------------------------------------------------- 1 | { 2 | //"jsonRpcUrl": "http://127.0.0.1:7545" 3 | } 4 | -------------------------------------------------------------------------------- /advanced-testing-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/package-lock.json -------------------------------------------------------------------------------- /advanced-testing-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/package.json -------------------------------------------------------------------------------- /advanced-testing-js/run.ganache.fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/run.ganache.fork.js -------------------------------------------------------------------------------- /advanced-testing-js/run.simulated.transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/run.simulated.transactions.js -------------------------------------------------------------------------------- /advanced-testing-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/src/agent.js -------------------------------------------------------------------------------- /advanced-testing-js/src/agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/src/agent.spec.js -------------------------------------------------------------------------------- /advanced-testing-js/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/advanced-testing-js/src/constants.js -------------------------------------------------------------------------------- /blacklisted-address-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /blacklisted-address-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /blacklisted-address-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/Dockerfile -------------------------------------------------------------------------------- /blacklisted-address-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/README.md -------------------------------------------------------------------------------- /blacklisted-address-ts/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/forta.config.json -------------------------------------------------------------------------------- /blacklisted-address-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/jest.config.js -------------------------------------------------------------------------------- /blacklisted-address-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/package-lock.json -------------------------------------------------------------------------------- /blacklisted-address-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/package.json -------------------------------------------------------------------------------- /blacklisted-address-ts/src/agent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/src/agent.spec.ts -------------------------------------------------------------------------------- /blacklisted-address-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/src/agent.ts -------------------------------------------------------------------------------- /blacklisted-address-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/blacklisted-address-ts/tsconfig.json -------------------------------------------------------------------------------- /compound-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /compound-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /compound-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/Dockerfile -------------------------------------------------------------------------------- /compound-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/README.md -------------------------------------------------------------------------------- /compound-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/jest.config.js -------------------------------------------------------------------------------- /compound-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/package-lock.json -------------------------------------------------------------------------------- /compound-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/package.json -------------------------------------------------------------------------------- /compound-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/src/agent.ts -------------------------------------------------------------------------------- /compound-ts/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/src/constants.ts -------------------------------------------------------------------------------- /compound-ts/src/drip.invoked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/src/drip.invoked.ts -------------------------------------------------------------------------------- /compound-ts/src/high.comp.distribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/src/high.comp.distribution.ts -------------------------------------------------------------------------------- /compound-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/compound-ts/tsconfig.json -------------------------------------------------------------------------------- /decrypt-alerts-py/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /decrypt-alerts-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/.gitignore -------------------------------------------------------------------------------- /decrypt-alerts-py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/Dockerfile -------------------------------------------------------------------------------- /decrypt-alerts-py/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/LICENSE.md -------------------------------------------------------------------------------- /decrypt-alerts-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/README.md -------------------------------------------------------------------------------- /decrypt-alerts-py/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/package-lock.json -------------------------------------------------------------------------------- /decrypt-alerts-py/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/package.json -------------------------------------------------------------------------------- /decrypt-alerts-py/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/private.pem -------------------------------------------------------------------------------- /decrypt-alerts-py/publish.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/publish.log -------------------------------------------------------------------------------- /decrypt-alerts-py/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/pytest.ini -------------------------------------------------------------------------------- /decrypt-alerts-py/requirements.txt: -------------------------------------------------------------------------------- 1 | forta_agent>=0.1.16 2 | setuptools>=61.3.1 3 | python-gnupg>=0.5.0 -------------------------------------------------------------------------------- /decrypt-alerts-py/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/requirements_dev.txt -------------------------------------------------------------------------------- /decrypt-alerts-py/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/decrypt-alerts-py/src/agent.py -------------------------------------------------------------------------------- /encrypt-alerts-py/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /encrypt-alerts-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/.gitignore -------------------------------------------------------------------------------- /encrypt-alerts-py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/Dockerfile -------------------------------------------------------------------------------- /encrypt-alerts-py/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/LICENSE.md -------------------------------------------------------------------------------- /encrypt-alerts-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/README.md -------------------------------------------------------------------------------- /encrypt-alerts-py/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/package-lock.json -------------------------------------------------------------------------------- /encrypt-alerts-py/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/package.json -------------------------------------------------------------------------------- /encrypt-alerts-py/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/public.pem -------------------------------------------------------------------------------- /encrypt-alerts-py/publish.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/publish.log -------------------------------------------------------------------------------- /encrypt-alerts-py/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/pytest.ini -------------------------------------------------------------------------------- /encrypt-alerts-py/requirements.txt: -------------------------------------------------------------------------------- 1 | forta_agent>=0.1.16 2 | setuptools>=61.3.1 3 | python-gnupg>=0.5.0 -------------------------------------------------------------------------------- /encrypt-alerts-py/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/requirements_dev.txt -------------------------------------------------------------------------------- /encrypt-alerts-py/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/encrypt-alerts-py/src/agent.py -------------------------------------------------------------------------------- /filter-event-and-function-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /filter-event-and-function-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /filter-event-and-function-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/Dockerfile -------------------------------------------------------------------------------- /filter-event-and-function-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/README.md -------------------------------------------------------------------------------- /filter-event-and-function-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/package-lock.json -------------------------------------------------------------------------------- /filter-event-and-function-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/package.json -------------------------------------------------------------------------------- /filter-event-and-function-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/agent.js -------------------------------------------------------------------------------- /filter-event-and-function-js/src/agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/agent.spec.js -------------------------------------------------------------------------------- /filter-event-and-function-js/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/constants.js -------------------------------------------------------------------------------- /filter-event-and-function-js/src/large.transfer.event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/large.transfer.event.js -------------------------------------------------------------------------------- /filter-event-and-function-js/src/large.transfer.event.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/large.transfer.event.spec.js -------------------------------------------------------------------------------- /filter-event-and-function-js/src/transfer.from.function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/transfer.from.function.js -------------------------------------------------------------------------------- /filter-event-and-function-js/src/transfer.from.function.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-js/src/transfer.from.function.spec.js -------------------------------------------------------------------------------- /filter-event-and-function-py/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /filter-event-and-function-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/.gitignore -------------------------------------------------------------------------------- /filter-event-and-function-py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/Dockerfile -------------------------------------------------------------------------------- /filter-event-and-function-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/README.md -------------------------------------------------------------------------------- /filter-event-and-function-py/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/package-lock.json -------------------------------------------------------------------------------- /filter-event-and-function-py/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/package.json -------------------------------------------------------------------------------- /filter-event-and-function-py/requirements.txt: -------------------------------------------------------------------------------- 1 | forta_agent>=0.1.0 2 | setuptools>=61.3.1 -------------------------------------------------------------------------------- /filter-event-and-function-py/requirements_dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest==6.2.5 -------------------------------------------------------------------------------- /filter-event-and-function-py/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter-event-and-function-py/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/agent.py -------------------------------------------------------------------------------- /filter-event-and-function-py/src/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/agent_test.py -------------------------------------------------------------------------------- /filter-event-and-function-py/src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/constants.py -------------------------------------------------------------------------------- /filter-event-and-function-py/src/large_transfer_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/large_transfer_event.py -------------------------------------------------------------------------------- /filter-event-and-function-py/src/large_transfer_event_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/large_transfer_event_test.py -------------------------------------------------------------------------------- /filter-event-and-function-py/src/transfer_from_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/transfer_from_function.py -------------------------------------------------------------------------------- /filter-event-and-function-py/src/transfer_from_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/filter-event-and-function-py/src/transfer_from_function_test.py -------------------------------------------------------------------------------- /flash-loan-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /flash-loan-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /flash-loan-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/Dockerfile -------------------------------------------------------------------------------- /flash-loan-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/README.md -------------------------------------------------------------------------------- /flash-loan-ts/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/forta.config.json -------------------------------------------------------------------------------- /flash-loan-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/jest.config.js -------------------------------------------------------------------------------- /flash-loan-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/package-lock.json -------------------------------------------------------------------------------- /flash-loan-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/package.json -------------------------------------------------------------------------------- /flash-loan-ts/src/agent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/src/agent.spec.ts -------------------------------------------------------------------------------- /flash-loan-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/src/agent.ts -------------------------------------------------------------------------------- /flash-loan-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/flash-loan-ts/tsconfig.json -------------------------------------------------------------------------------- /hiding-sensitive-data-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /hiding-sensitive-data-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /hiding-sensitive-data-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/Dockerfile -------------------------------------------------------------------------------- /hiding-sensitive-data-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/README.md -------------------------------------------------------------------------------- /hiding-sensitive-data-js/obfuscation-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/obfuscation-config.js -------------------------------------------------------------------------------- /hiding-sensitive-data-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/package-lock.json -------------------------------------------------------------------------------- /hiding-sensitive-data-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/package.json -------------------------------------------------------------------------------- /hiding-sensitive-data-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/src/agent.js -------------------------------------------------------------------------------- /hiding-sensitive-data-js/src/agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/hiding-sensitive-data-js/src/agent.spec.js -------------------------------------------------------------------------------- /high-gas-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /high-gas-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /high-gas-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/Dockerfile -------------------------------------------------------------------------------- /high-gas-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/README.md -------------------------------------------------------------------------------- /high-gas-js/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/forta.config.json -------------------------------------------------------------------------------- /high-gas-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/package-lock.json -------------------------------------------------------------------------------- /high-gas-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/package.json -------------------------------------------------------------------------------- /high-gas-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/agent.js -------------------------------------------------------------------------------- /high-gas-js/src/agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/agent.spec.js -------------------------------------------------------------------------------- /high-gas-js/src/crypto.price.getter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/crypto.price.getter.js -------------------------------------------------------------------------------- /high-gas-js/src/high.gas.fee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/high.gas.fee.js -------------------------------------------------------------------------------- /high-gas-js/src/high.gas.fee.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/high.gas.fee.spec.js -------------------------------------------------------------------------------- /high-gas-js/src/high.gas.used.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/high.gas.used.js -------------------------------------------------------------------------------- /high-gas-js/src/high.gas.used.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-js/src/high.gas.used.spec.js -------------------------------------------------------------------------------- /high-gas-py/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /high-gas-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/.gitignore -------------------------------------------------------------------------------- /high-gas-py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/Dockerfile -------------------------------------------------------------------------------- /high-gas-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/README.md -------------------------------------------------------------------------------- /high-gas-py/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/forta.config.json -------------------------------------------------------------------------------- /high-gas-py/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/package-lock.json -------------------------------------------------------------------------------- /high-gas-py/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/package.json -------------------------------------------------------------------------------- /high-gas-py/requirements.txt: -------------------------------------------------------------------------------- 1 | forta_agent>=0.1.0 2 | setuptools>=61.3.1 -------------------------------------------------------------------------------- /high-gas-py/requirements_dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest==6.2.5 -------------------------------------------------------------------------------- /high-gas-py/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/src/agent.py -------------------------------------------------------------------------------- /high-gas-py/src/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-gas-py/src/agent_test.py -------------------------------------------------------------------------------- /high-volume-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /high-volume-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /high-volume-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/Dockerfile -------------------------------------------------------------------------------- /high-volume-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/README.md -------------------------------------------------------------------------------- /high-volume-js/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/forta.config.json -------------------------------------------------------------------------------- /high-volume-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/package-lock.json -------------------------------------------------------------------------------- /high-volume-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/package.json -------------------------------------------------------------------------------- /high-volume-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/src/agent.js -------------------------------------------------------------------------------- /high-volume-js/src/agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/src/agent.spec.js -------------------------------------------------------------------------------- /high-volume-js/src/transaction.counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/high-volume-js/src/transaction.counter.js -------------------------------------------------------------------------------- /long-running-task-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /long-running-task-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /long-running-task-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/long-running-task-js/Dockerfile -------------------------------------------------------------------------------- /long-running-task-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/long-running-task-js/README.md -------------------------------------------------------------------------------- /long-running-task-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/long-running-task-js/package-lock.json -------------------------------------------------------------------------------- /long-running-task-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/long-running-task-js/package.json -------------------------------------------------------------------------------- /long-running-task-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/long-running-task-js/src/agent.js -------------------------------------------------------------------------------- /minimum-balance-py/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /minimum-balance-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/.gitignore -------------------------------------------------------------------------------- /minimum-balance-py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/Dockerfile -------------------------------------------------------------------------------- /minimum-balance-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/README.md -------------------------------------------------------------------------------- /minimum-balance-py/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/forta.config.json -------------------------------------------------------------------------------- /minimum-balance-py/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/package-lock.json -------------------------------------------------------------------------------- /minimum-balance-py/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/package.json -------------------------------------------------------------------------------- /minimum-balance-py/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/pytest.ini -------------------------------------------------------------------------------- /minimum-balance-py/requirements.txt: -------------------------------------------------------------------------------- 1 | forta_agent>=0.1.0 2 | setuptools>=61.3.1 -------------------------------------------------------------------------------- /minimum-balance-py/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/requirements_dev.txt -------------------------------------------------------------------------------- /minimum-balance-py/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/src/agent.py -------------------------------------------------------------------------------- /minimum-balance-py/src/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-py/src/agent_test.py -------------------------------------------------------------------------------- /minimum-balance-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /minimum-balance-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /minimum-balance-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/Dockerfile -------------------------------------------------------------------------------- /minimum-balance-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/README.md -------------------------------------------------------------------------------- /minimum-balance-ts/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/forta.config.json -------------------------------------------------------------------------------- /minimum-balance-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/jest.config.js -------------------------------------------------------------------------------- /minimum-balance-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/package-lock.json -------------------------------------------------------------------------------- /minimum-balance-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/package.json -------------------------------------------------------------------------------- /minimum-balance-ts/src/agent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/src/agent.spec.ts -------------------------------------------------------------------------------- /minimum-balance-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/src/agent.ts -------------------------------------------------------------------------------- /minimum-balance-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/minimum-balance-ts/tsconfig.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/Dockerfile -------------------------------------------------------------------------------- /oz-gnosis-events-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/README.md -------------------------------------------------------------------------------- /oz-gnosis-events-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/jest.config.js -------------------------------------------------------------------------------- /oz-gnosis-events-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/package-lock.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/package.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/publish.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/publish.log -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/CreateCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/CreateCall.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/EtherPaymentFallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/EtherPaymentFallback.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/FallbackManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/FallbackManager.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/GnosisSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/GnosisSafe.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/GnosisSafeL2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/GnosisSafeL2.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/GnosisSafeProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/GnosisSafeProxyFactory.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/GuardManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/GuardManager.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/ModuleManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/ModuleManager.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/OwnerManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/OwnerManager.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/gnosis-safe/SignMessageLib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/gnosis-safe/SignMessageLib.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/ERC1967Upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/ERC1967Upgrade.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/ERC20Snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/ERC20Snapshot.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/Escrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/Escrow.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/GovernorPreventLateQuorum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/GovernorPreventLateQuorum.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/GovernorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/GovernorSettings.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/GovernorTimelockCompound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/GovernorTimelockCompound.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/GovernorTimelockControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/GovernorTimelockControl.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/GovernorVotesQuorumFraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/GovernorVotesQuorumFraction.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IAMB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IAMB.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IAccessControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IAccessControl.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IArbSys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IArbSys.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IBridge.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/ICompoundTimelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/ICompoundTimelock.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/ICrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/ICrossDomainMessenger.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IDelayedMessageProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IDelayedMessageProvider.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC1155.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC1820Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC1820Registry.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC20.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC2309.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC2309.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC4626.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC4626.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC721.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IERC777.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IERC777.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IGovernor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IGovernor.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IGovernorTimelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IGovernorTimelock.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IOutbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IOutbox.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/IVotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/IVotes.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/Initializable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/Initializable.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/Ownable.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/Ownable2Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/Ownable2Step.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/Pausable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/Pausable.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/PaymentSplitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/PaymentSplitter.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/RefundEscrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/RefundEscrow.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/TimelockController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/TimelockController.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/UpgradeableBeacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/UpgradeableBeacon.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/abis/openzeppelin/VestingWallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/abis/openzeppelin/VestingWallet.json -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/agent.ts -------------------------------------------------------------------------------- /oz-gnosis-events-ts/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/src/utils.ts -------------------------------------------------------------------------------- /oz-gnosis-events-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/oz-gnosis-events-ts/tsconfig.json -------------------------------------------------------------------------------- /poly-network-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /poly-network-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /poly-network-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/Dockerfile -------------------------------------------------------------------------------- /poly-network-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/README.md -------------------------------------------------------------------------------- /poly-network-ts/forta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/forta.config.json -------------------------------------------------------------------------------- /poly-network-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/jest.config.js -------------------------------------------------------------------------------- /poly-network-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/package-lock.json -------------------------------------------------------------------------------- /poly-network-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/package.json -------------------------------------------------------------------------------- /poly-network-ts/src/ERC20Abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/src/ERC20Abi.json -------------------------------------------------------------------------------- /poly-network-ts/src/EthCrossChainData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/src/EthCrossChainData.json -------------------------------------------------------------------------------- /poly-network-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/src/agent.ts -------------------------------------------------------------------------------- /poly-network-ts/src/poly.asset.balance.agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/src/poly.asset.balance.agent.ts -------------------------------------------------------------------------------- /poly-network-ts/src/poly.keeper.changed.agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/src/poly.keeper.changed.agent.ts -------------------------------------------------------------------------------- /poly-network-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/poly-network-ts/tsconfig.json -------------------------------------------------------------------------------- /private-agent-js/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/.dockerignore -------------------------------------------------------------------------------- /private-agent-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/.gitignore -------------------------------------------------------------------------------- /private-agent-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/Dockerfile -------------------------------------------------------------------------------- /private-agent-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/README.md -------------------------------------------------------------------------------- /private-agent-js/decrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/decrypt.js -------------------------------------------------------------------------------- /private-agent-js/generate-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/generate-keys.js -------------------------------------------------------------------------------- /private-agent-js/obfuscation-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/obfuscation-config.js -------------------------------------------------------------------------------- /private-agent-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/package-lock.json -------------------------------------------------------------------------------- /private-agent-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/package.json -------------------------------------------------------------------------------- /private-agent-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/private-agent-js/src/agent.js -------------------------------------------------------------------------------- /querying-other-chains-js/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /querying-other-chains-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /querying-other-chains-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/querying-other-chains-js/Dockerfile -------------------------------------------------------------------------------- /querying-other-chains-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/querying-other-chains-js/README.md -------------------------------------------------------------------------------- /querying-other-chains-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/querying-other-chains-js/package-lock.json -------------------------------------------------------------------------------- /querying-other-chains-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/querying-other-chains-js/package.json -------------------------------------------------------------------------------- /querying-other-chains-js/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/querying-other-chains-js/src/agent.js -------------------------------------------------------------------------------- /solana-wormhole-agent/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /solana-wormhole-agent/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /solana-wormhole-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/solana-wormhole-agent/Dockerfile -------------------------------------------------------------------------------- /solana-wormhole-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/solana-wormhole-agent/README.md -------------------------------------------------------------------------------- /solana-wormhole-agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/solana-wormhole-agent/package-lock.json -------------------------------------------------------------------------------- /solana-wormhole-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/solana-wormhole-agent/package.json -------------------------------------------------------------------------------- /solana-wormhole-agent/src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/solana-wormhole-agent/src/agent.js -------------------------------------------------------------------------------- /solana-wormhole-agent/wormhole.exploit.tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/solana-wormhole-agent/wormhole.exploit.tx.js -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/.dockerignore -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/.gitignore -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/Dockerfile -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/README.md -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/package-lock.json -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/package.json -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/publish.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/publish.log -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/pytest.ini -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/requirements.txt -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/requirements_dev.txt -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/src/agent.py -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/src/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/src/agent_test.py -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/src/findings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/src/findings.py -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/src/logger.py -------------------------------------------------------------------------------- /tx-message-sentiment-analysis-py/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-message-sentiment-analysis-py/src/utils.py -------------------------------------------------------------------------------- /tx-simulation-ts/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /tx-simulation-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json -------------------------------------------------------------------------------- /tx-simulation-ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/Dockerfile -------------------------------------------------------------------------------- /tx-simulation-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/README.md -------------------------------------------------------------------------------- /tx-simulation-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/jest.config.js -------------------------------------------------------------------------------- /tx-simulation-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/package-lock.json -------------------------------------------------------------------------------- /tx-simulation-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/package.json -------------------------------------------------------------------------------- /tx-simulation-ts/src/agent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/src/agent.spec.ts -------------------------------------------------------------------------------- /tx-simulation-ts/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/src/agent.ts -------------------------------------------------------------------------------- /tx-simulation-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forta-network/forta-bot-examples/HEAD/tx-simulation-ts/tsconfig.json --------------------------------------------------------------------------------