charts/agents/values.yaml
# Default values for agents.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: ghcr.io/synapsecns/sanguine/agents
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "6e3887fc2a05aff0d159453cedbfbe5024b910bf"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
labels:
type: "agents"
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template.
name: ""
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
port: 80
initialDelaySeconds: 20
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
definitions:
- env: &default_env
- name: GOLOG_LOG_FMT
value: "json"
- name: GOLOG_LOG_LEVEL
value: "error"
- name: GOMEMLIMIT
value: "2GiB"
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: METRICS_HANDLER
value: "jaeger"
- name: JAEGER_ENDPOINT
value: "http://agents-devnet-jaeger-collector:14268/api/traces"
notary:
enabled: true
args: ["notary-run", "--config=/config/notary_config1.yaml", "--metrics-port=5080", "--scribe-type=remote", "--scribe-port=80", "--scribe-url=executor-scribe.$(POD_NAMESPACE)"]
podAnnotations: {}
nodeSelector: {}
podSecurityContext: {}
affinity: {}
env: *default_env
tolerations: {}
extraInitContainers:
- name: wait-for-omnirpc
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for omnirpc..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-omnirpc
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: wait-for-mysql
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 3306; do echo "Waiting for mysql..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# This is only used for remote scribe. TODO: make different configs for different notary types
- name: wait-for-scribe
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for scribe..."; sleep 1; done;']
env:
- name: POD_NAME
value: executor-scribe
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
guard:
enabled: true
args: ["guard-run", "--config=/config/guard_config.yaml", "--metrics-port=5082"]
podAnnotations: {}
nodeSelector: {}
podSecurityContext: {}
affinity: {}
env: *default_env
tolerations: {}
extraInitContainers:
- name: wait-for-omnirpc
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for omnirpc..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-omnirpc
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
executor:
type: "remote-fresh"
executor_remote_existing:
# TODO: We need to figure out certificates or how to communicate with the gRPC scribe via gRPC gateway's REST capabilities.
args: ["executor-run", "--config=/config/executor_config.yaml", "--metrics-port=5080", "--scribe-type=remote", "--db=mysql", "--path=root:MysqlPassword@tcp(agents-mysql:3306)/agents?parseTime=true", "--scribe-port=443", "--scribe-url=https://scribe.interoperability.institute"]
podAnnotations: {}
nodeSelector: {}
podSecurityContext: {}
affinity: {}
env: *default_env
tolerations: {}
extraInitContainers:
- name: wait-for-omnirpc
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for omnirpc..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-omnirpc
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# Wait for mysql to show up
# this is mostly for testing
- name: wait-for-mysql
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 3306; do echo "Waiting for mysql..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
executor_remote_fresh:
args: ["executor-run", "--config=/config/executor_config.yaml", "--metrics-port=5080", "--scribe-type=remote", "--db=mysql", "--path=root:MysqlPassword@tcp(agents-mysql:3306)/agents?parseTime=true", "--scribe-port=80", "--scribe-url=executor-scribe.$(POD_NAMESPACE)"]
podAnnotations: {}
nodeSelector: {}
podSecurityContext: {}
affinity: {}
env: *default_env
tolerations: {}
extraInitContainers:
- name: wait-for-omnirpc
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for omnirpc..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-omnirpc
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# Wait for mysql to show up
# this is mostly for testing
- name: wait-for-mysql
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 3306; do echo "Waiting for mysql..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: create-database-agents
image: mysql/mysql-server:latest
imagePullPolicy: IfNotPresent
command: ['bash', '-c', "until mysql -h${POD_NAME}.${POD_NAMESPACE} -uroot -pMysqlPassword -e'CREATE DATABASE IF NOT EXISTS agents;'; do 'echo waiting for db'; sleep 1; done"]
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: wait-for-scribe
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for scribe..."; sleep 1; done;']
env:
- name: POD_NAME
value: executor-scribe
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
executor_embedded:
args: ["executor-run", "--config=/config/executor_config.yaml", "--metrics-port=5080", "--scribe-type=embedded", "--db=mysql", "--path=root:MysqlPassword@tcp(agents-mysql:3306)/agents?parseTime=true", "--scribe-db=mysql", "--scribe-path=root:MysqlPassword@tcp(agents-mysql:3306)/scribe?parseTime=true"]
podAnnotations: {}
nodeSelector: {}
podSecurityContext: {}
affinity: {}
env: *default_env
tolerations: {}
extraInitContainers:
- name: wait-for-omnirpc
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 80; do echo "Waiting for omnirpc..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-omnirpc
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# Wait for mysql to show up
# this is mostly for testing
- name: wait-for-mysql
image: busybox:latest
imagePullPolicy: IfNotPresent
command: ['sh', '-c', 'until nc -vz ${POD_NAME}.${POD_NAMESPACE} 3306; do echo "Waiting for mysql..."; sleep 1; done;']
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: create-database-agents
image: mysql/mysql-server:latest
imagePullPolicy: IfNotPresent
command: ['bash', '-c', "until mysql -h${POD_NAME}.${POD_NAMESPACE} -uroot -pMysqlPassword --execute=\"CREATE DATABASE IF NOT EXISTS agents\"; do 'echo waiting for db'; sleep 10; done"]
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: create-database-scribe
image: mysql/mysql-server:latest
imagePullPolicy: IfNotPresent
command: ['bash', '-c', "until mysql -h${POD_NAME}.${POD_NAMESPACE} -uroot -pMysqlPassword --execute=\"CREATE DATABASE IF NOT EXISTS scribe\"; do 'echo waiting for db'; sleep 10; done"]
env:
- name: POD_NAME
value: agents-mysql
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
mysql:
# uncomment these to speedup builds on arm64 based architectures
# image:
# registry: ghcr.io
# repository: zcube/bitnami-compat/mysql
# tag: 8.0-debian-11-r54
enabled: true
fullnameOverride: agents-mysql
nameOverride: agents-mysql
architecture: standalone
networkPolicy:
enabled: true
metrics:
enabled: false
auth:
createDatabase: true
database: agents
# Note: this should be used in production instead of auth.password
# existingSecret: mysql-password
rootPassword: MysqlPassword
jaeger:
enabled: true
provisionDataStore:
cassandra: false
allInOne:
enabled: true
storage:
type: none
agent:
enabled: false
collector:
enabled: false
query:
enabled: false
omnirpc:
# this can be remote in production, we just want to use the public rpc servers here
enabled: true
fullnameOverride: agents-omnirpc
replicaCount: 3
env: *default_env
scribe:
enabled: true
indexer:
env: *default_env
server:
env: *default_env
image:
tag: "6e3887fc2a05aff0d159453cedbfbe5024b910bf"
fullnameOverride: executor-scribe
files:
config.yaml: |-
chains:
- chain_id: 137
required_confirmations: 50
contract_sub_chunk_size: 20000
contract_chunk_size: 20000
store_concurrency: 100
store_concurrency_threshold: 50000
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 40189736
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 40189736
- chain_id: 10
required_confirmations: 50
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 79864523
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 79864305
- address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
start_block: 79864192
- chain_id: 43114
required_confirmations: 50
contract_sub_chunk_size: 2000
contract_chunk_size: 10000
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 27262747
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 27262744
rpc_url: http://scribe-omnirpc/confirmations
refresh_rate: 0
notary_files:
notary_signer1.txt: |-
04486fc4ef3f3fb489c9f4ed4ff07cb9aa998abc0a244f2464c76164bcfad41d
notary_config1.yaml: |-
refresh_interval_seconds: 10
domains:
domain_client1:
domain_id: 137
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://rpc.interoperability.institute/confirmations/1/rpc/137"
start_height: 39145588
domain_client2:
domain_id: 10
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://mainnet.optimism.io"
start_height: 73536295
domain_client3:
domain_id: 43114
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://api.avax.network/ext/bc/C/rpc"
start_height: 26091228
summit_domain_id: 10
domain_id: 43114
unbonded_signer:
type: "File"
file: "/config/notary_signer1.txt"
bonded_signer:
type: "File"
file: "/config/notary_signer1.txt"
embedded_scribe_config:
chains:
- chain_id: 137
required_confirmations: 50
contract_sub_chunk_size: 1000
contract_chunk_size: 1000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 40189736
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 40189736
- chain_id: 10
required_confirmations: 50
contract_sub_chunk_size: 500
contract_chunk_size: 500
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 79864523
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 79864305
- address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
start_block: 79864192
- chain_id: 43114
required_confirmations: 50
contract_sub_chunk_size: 2000
contract_chunk_size: 10000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 27262747
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 27262744
rpc_url: "https://rpc.interoperability.institute/confirmations"
refresh_rate: 0
notary_signer2.txt: |-
479cc41efe8ccb6dd3fd96951db601beacd7bdade60e6dbd8ae6fab02020cf92
notary_config2.yaml: |-
refresh_interval_seconds: 10
domains:
domain_client1:
domain_id: 137
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://rpc.interoperability.institute/confirmations/1/rpc/137"
start_height: 39145588
domain_client2:
domain_id: 10
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://mainnet.optimism.io"
start_height: 73536295
domain_client3:
domain_id: 43114
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://api.avax.network/ext/bc/C/rpc"
start_height: 26091228
summit_domain_id: 10
domain_id: 137
unbonded_signer:
type: "File"
file: "/config/notary_signer2.txt"
bonded_signer:
type: "File"
file: "/config/notary_signer2.txt"
embedded_scribe_config:
chains:
- chain_id: 137
required_confirmations: 50
contract_sub_chunk_size: 1000
contract_chunk_size: 1000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 40189736
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 40189736
- chain_id: 10
required_confirmations: 50
contract_sub_chunk_size: 500
contract_chunk_size: 500
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 79864523
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 79864305
- address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
start_block: 79864192
- chain_id: 43114
required_confirmations: 50
contract_sub_chunk_size: 2000
contract_chunk_size: 10000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 27262747
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 27262744
rpc_url: "https://rpc.interoperability.institute/confirmations"
refresh_rate: 0
notary_signer3.txt: |-
2633f34da513bb717df6262fb5db89aa4db081a44c1d9ffc30ee38941dd58c0b
notary_config3.yaml: |-
refresh_interval_seconds: 10
domains:
domain_client1:
domain_id: 137
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://rpc.interoperability.institute/confirmations/1/rpc/137"
start_height: 39145588
domain_client2:
domain_id: 10
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://mainnet.optimism.io"
start_height: 73536295
domain_client3:
domain_id: 43114
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://api.avax.network/ext/bc/C/rpc"
start_height: 26091228
summit_domain_id: 10
domain_id: 10
unbonded_signer:
type: "File"
file: "/config/notary_signer3.txt"
bonded_signer:
type: "File"
file: "/config/notary_signer3.txt"
embedded_scribe_config:
chains:
- chain_id: 137
required_confirmations: 50
contract_sub_chunk_size: 1000
contract_chunk_size: 1000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 40189736
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 40189736
- chain_id: 10
required_confirmations: 50
contract_sub_chunk_size: 500
contract_chunk_size: 500
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 79864523
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 79864305
- address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
start_block: 79864192
- chain_id: 43114
required_confirmations: 50
contract_sub_chunk_size: 2000
contract_chunk_size: 10000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 27262747
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 27262744
rpc_url: "https://rpc.interoperability.institute/confirmations"
refresh_rate: 0
guard_files:
guard_signer.txt: |-
dd03ef81893502797024462da191deaf1e90f30879b3b7673acb11ce72f73094
guard_config.yaml: |-
refresh_interval_seconds: 10
scribe_port: 443
scribe_url: "https://scribe.interoperability.institute"
domains:
domain_client1:
domain_id: 137
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://rpc.interoperability.institute/confirmations/1/rpc/137"
start_height: 39145588
domain_client2:
domain_id: 10
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://mainnet.optimism.io"
start_height: 73536295
domain_client3:
domain_id: 43114
type: EVM
required_confirmations: 50
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
rpc_url: "https://api.avax.network/ext/bc/C/rpc"
start_height: 26091228
summit_domain_id: 10
domain_id: 0
unbonded_signer:
type: "File"
file: "/config/guard_signer.txt"
bonded_signer:
type: "File"
file: "/config/guard_signer.txt"
embedded_scribe_config:
chains:
- chain_id: 137
required_confirmations: 50
contract_sub_chunk_size: 1000
contract_chunk_size: 1000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 40189736
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 40189736
- chain_id: 10
required_confirmations: 50
contract_sub_chunk_size: 500
contract_chunk_size: 500
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 79864523
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 79864305
- address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
start_block: 79864192
- chain_id: 43114
required_confirmations: 50
contract_sub_chunk_size: 2000
contract_chunk_size: 10000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 27262747
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 27262744
rpc_url: "https://rpc.interoperability.institute/confirmations"
refresh_rate: 0
executor_remote_existing_files:
executor_signer.txt: |-
16c909570a212af6a328a1cf594a20d7cf6edf56fafa0b50967f2039b1f68445
executor_config.yaml: |-
base_omnirpc_url: "https://rpc.interoperability.institute/confirmations"
execute_interval: 5
summit_chain_id: 10
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
chains:
- chain_id: 137
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
- chain_id: 10
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
- chain_id: 43114
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
unbonded_signer:
type: "File"
file: "/config/executor_signer.txt"
executor_remote_fresh_files:
executor_signer.txt: |-
16c909570a212af6a328a1cf594a20d7cf6edf56fafa0b50967f2039b1f68445
executor_config.yaml: |-
execute_interval: 5
summit_chain_id: 10
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
chains:
- chain_id: 137
temp_rpc: "https://rpc.interoperability.institute/confirmations/1/rpc/137"
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
- chain_id: 10
temp_rpc: "https://mainnet.optimism.io"
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
- chain_id: 43114
temp_rpc: "https://api.avax.network/ext/bc/C/rpc"
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
unbonded_signer:
type: "File"
file: "/config/executor_signer.txt"
executor_embedded_files:
executor_signer.txt: |-
16c909570a212af6a328a1cf594a20d7cf6edf56fafa0b50967f2039b1f68445
executor_config.yaml: |-
base_omnirpc_url: "https://rpc.interoperability.institute/confirmations"
execute_interval: 5
summit_chain_id: 10
summit_address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
chains:
- chain_id: 137
temp_rpc: "https://rpc.interoperability.institute/confirmations/1/rpc/137"
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
- chain_id: 10
temp_rpc: "https://rpc.interoperability.institute/confirmations/1/rpc/10"
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
- chain_id: 43114
temp_rpc: "https://rpc.interoperability.institute/confirmations/1/rpc/43114"
origin_address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
destination_address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
unbonded_signer:
type: "File"
file: "/config/executor_signer.txt"
embedded_scribe_config:
chains:
- chain_id: 137
required_confirmations: 50
contract_sub_chunk_size: 1000
contract_chunk_size: 1000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 40189736
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 40189736
- chain_id: 10
required_confirmations: 50
contract_sub_chunk_size: 500
contract_chunk_size: 500
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 79864523
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 79864305
- address: 0x128fF47f1a614c61beC9935898C33B91486aA04e
start_block: 79864192
- chain_id: 43114
required_confirmations: 50
contract_sub_chunk_size: 2000
contract_chunk_size: 10000
store_concurrency: 1
store_concurrency_threshold: 500
contracts:
- address: 0xF3773BE7cb59235Ced272cF324aaeb0A4115280f
start_block: 27262747
- address: 0xde5BB62aBCF588EC200674757EDB2f6889aCd065
start_block: 27262744
rpc_url: "https://rpc.interoperability.institute/confirmations"
refresh_rate: 0