Skip to content

Commit

Permalink
Merge pull request #104 from dvilelaf/feat/handles
Browse files Browse the repository at this point in the history
Feat/handles
  • Loading branch information
dvilelaf authored Dec 17, 2024
2 parents 3fa080c + 538c93b commit 3511a81
Show file tree
Hide file tree
Showing 17 changed files with 2,616 additions and 306 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ htmlcov
*.egg-info
packages/open_aea
packages/valory/contracts/*
!packages/valory/contracts/erc20
packages/valory/protocols/
packages/valory/skills/
packages/valory/connections/*
Expand Down
7 changes: 5 additions & 2 deletions packages/dvilela/agents/memeooorr/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ contracts:
- valory/gnosis_safe_proxy_factory:0.1.0:bafybeihi4cvrnf5ne7t5cxcwix3dbtfjucfjux6zn4wouebjx3ldmrmnpm
- valory/multisend:0.1.0:bafybeig5byt5urg2d2bsecufxe5ql7f4mezg3mekfleeh32nmuusx66p4y
- dvilela/meme_factory:0.1.0:bafybeiecfhn33jiprqrz6kx565cexy6yq5pqsg2bltgzq6bbg3uusepj7i
- dvilela/service_registry:0.1.0:bafybeiareztundn6q5fsvuagzf4oqb4ulmnjdnk5mkjkw3qbqvnlf2nprq
protocols:
- open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi
- valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u
Expand All @@ -40,8 +41,8 @@ skills:
- valory/transaction_settlement_abci:0.1.0:bafybeihq2yenstblmaadzcjousowj5kfn5l7ns5pxweq2gcrsczfyq5wzm
- valory/registration_abci:0.1.0:bafybeicnth5q4httefsusywx3zrrq4al47owvge72dqf2fziruicq6hqta
- valory/reset_pause_abci:0.1.0:bafybeievjciqdvxhqxfjd4whqs27h6qbxqzrae7wwj7fpvxlvmtw3x35im
- dvilela/memeooorr_abci:0.1.0:bafybeicpl2oi57zjgmxhob2ext7paeerjwpbk56m64jolsdnryebkfdxzi
- dvilela/memeooorr_chained_abci:0.1.0:bafybeibzgpw45kybbwczmclzd3m7sa72pct62tgmf2r43vqd4fbylu6yje
- dvilela/memeooorr_abci:0.1.0:bafybeiftj42tnqnpjvookch7woq3viid3wos72jxogha65qlxxba5ndp2y
- dvilela/memeooorr_chained_abci:0.1.0:bafybeign6of7arqd6p6mqwb7ilez3aj5hpfegmxk7tl3th72gvnlcgx3ta
default_ledger: ethereum
required_ledgers:
- ethereum
Expand Down Expand Up @@ -198,6 +199,8 @@ models:
feedback_period_max_hours: ${int:3}
home_chain_id: ${str:BASE}
twitter_username: ${str:null}
service_registry_address_base: ${str:0x3C1fF68f5aa342D296d4DEe4Bb1cACCA912D95fE}
service_registry_address_celo: ${str:0xE3607b00E75f6405248323A9417ff6b39B244b50}
---
public_id: valory/http_server:0.22.0:bafybeicblltx7ha3ulthg7bzfccuqqyjmihhrvfeztlgrlcoxhr7kf6nbq
type: connection
Expand Down
1 change: 1 addition & 0 deletions packages/dvilela/contracts/service_registry/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Service registry contract
20 changes: 20 additions & 0 deletions packages/dvilela/contracts/service_registry/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright 2023-2024 Valory AG
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ------------------------------------------------------------------------------

"""This module contains the support resources for the Service Registry contract."""
Loading

0 comments on commit 3511a81

Please sign in to comment.