agent_name: hello_world author: valory version: 0.1.0 license: Apache-2.0 description: Hello World ABCI example. aea_version: '>=1.0.0, <2.0.0' fingerprint: README.md: bafybeifzdekpjcas6egpwxj24tir5ozzffmkq5ecyi6rw3i6fqfd763etu fingerprint_ignore_patterns: [] connections: - valory/abci:0.1.0:bafybeidtrrzpngswqpctfftqvkx7d7ln2seo74emx5k6kcdhait3p6kf4u - valory/http_client:0.1.0:bafybeiajlo43jrfdhtkpagjtj4izm2rc24ysbnzbtxnu5qqc2pxoov66z4 - valory/p2p_libp2p_client:0.1.0:bafybeigvayl4ykzqf6o6bw2irv7am3qvczjoeu7yjhzn27ajiwvcio3lxm contracts: [] protocols: - open_aea/signing:1.0.0:bafybeid6f5ceool4evgaxdegs5pkjoivqjk3mo3ehctalswngb5m5c32wm - valory/abci:0.1.0:bafybeic4ioeoxrosuuffap3lakejaaj6pi63cl2brwwcocf2s27hthdgfe - valory/http:1.0.0:bafybeienmids6f5pcey2bnywmiup2faawqgmdhhz65qfciuhkntugztvpi skills: - valory/abstract_abci:0.1.0:bafybeic3dy6vtad4bylhc25mprvl2rl5xiy3zop3arnbeqmiwsbbeyf36u - valory/abstract_round_abci:0.1.0:bafybeihrktukokli5xxch7gexdl6wtnj23pnapbe6znmvlphyseotsqlre - valory/hello_world_abci:0.1.0:bafybeieme7ogwdex7tosvhevfyeu644br4kil2omopjzbsmmhc5vpz5dti default_ledger: ethereum required_ledgers: - ethereum default_routing: {} connection_private_key_paths: {} private_key_paths: {} logging_config: version: 1 disable_existing_loggers: false formatters: standard: format: '[%(asctime)s] [%(levelname)s] %(message)s' handlers: logfile: class: logging.FileHandler formatter: standard filename: ${LOG_FILE:str:log.txt} level: INFO console: class: logging.StreamHandler formatter: standard stream: ext://sys.stdout loggers: aea: handlers: - logfile - console propagate: false dependencies: open-aea-ledger-ethereum: {} default_connection: null --- public_id: valory/hello_world_abci:0.1.0 type: skill models: params: args: tendermint_url: ${TENDERMINT_URL:str:http://localhost:26657} tendermint_com_url: ${TENDERMINT_COM_URL:str:http://localhost:8080} --- public_id: valory/abci:0.1.0 type: connection config: target_skill_id: valory/hello_world_abci:0.1.0 host: ${ABCI_HOST:str:localhost} port: ${ABCI_PORT:int:26658} use_tendermint: ${ABCI_USE_TENDERMINT:bool:false} --- public_id: valory/p2p_libp2p_client:0.1.0 type: connection config: nodes: - uri: ${P2P_URI:str:acn.staging.autonolas.tech:9005} public_key: ${P2P_PUBLIC_KEY:str:02d3a830c9d6ea1ae91936951430dee11f4662f33118b02190693be835359a9d77} - uri: ${P2P_URI:str:acn.staging.autonolas.tech:9006} public_key: ${P2P_PUBLIC_KEY:str:02e741c62d706e1dcf6986bf37fa74b98681bc32669623ac9ee6ff72488d4f59e8} cert_requests: - identifier: acn ledger_id: ethereum message_format: '{public_key}' not_after: '2023-01-01' not_before: '2022-01-01' public_key: ${P2P_PUBLIC_KEY:str:02d3a830c9d6ea1ae91936951430dee11f4662f33118b02190693be835359a9d77} save_path: .certs/acn_cosmos_9005.txt - identifier: acn ledger_id: ethereum message_format: '{public_key}' not_after: '2023-01-01' not_before: '2022-01-01' public_key: ${P2P_PUBLIC_KEY:str:02e741c62d706e1dcf6986bf37fa74b98681bc32669623ac9ee6ff72488d4f59e8} save_path: .certs/acn_cosmos_9006.txt is_abstract: true