45 lines
1.6 KiB
YAML
45 lines
1.6 KiB
YAML
---
|
|
- name: Get blocks
|
|
become_user: "{{ compose_service_user }}"
|
|
shell: docker-compose run --rm --entrypoint "node scripts/getValidatorStartBlocks.js" bridge_affirmation
|
|
args:
|
|
chdir: "{{ bridge_path }}/oracle"
|
|
register: BLOCKS
|
|
when: (ORACLE_HOME_START_BLOCK is not defined) or (ORACLE_FOREIGN_START_BLOCK is not defined)
|
|
|
|
- name: Write blocks
|
|
blockinfile:
|
|
path: "{{ bridge_path }}/oracle/.env"
|
|
marker: "## {mark} Calculated by scripts/getValidatorStartBlocks.js"
|
|
block: |
|
|
ORACLE_HOME_START_BLOCK={{ (BLOCKS.stdout | from_json).homeStartBlock }}
|
|
ORACLE_FOREIGN_START_BLOCK={{ (BLOCKS.stdout | from_json).foreignStartBlock }}
|
|
when: (ORACLE_HOME_START_BLOCK is not defined) or (ORACLE_FOREIGN_START_BLOCK is not defined)
|
|
|
|
- name: Get validator address
|
|
become_user: "{{ compose_service_user }}"
|
|
shell: docker-compose run --rm -e ORACLE_VALIDATOR_ADDRESS_PRIVATE_KEY="{{ ORACLE_VALIDATOR_ADDRESS_PRIVATE_KEY }}" --entrypoint "node scripts/privateKeyToAddress.js" bridge_affirmation
|
|
args:
|
|
chdir: "{{ bridge_path }}/oracle"
|
|
register: VADDRESS
|
|
|
|
- name: Set ORACLE_VALIDATOR_ADDRESS variable
|
|
set_fact:
|
|
ORACLE_VALIDATOR_ADDRESS: "{{ VADDRESS.stdout }}"
|
|
|
|
- name: Extend docker compose file for erc to native
|
|
set_fact: composefileoverride="-f docker-compose-transfer.yml"
|
|
when: ORACLE_BRIDGE_MODE == "ERC_TO_NATIVE"
|
|
|
|
- name: Extend docker compose file for amb
|
|
set_fact: composefileoverride="-f docker-compose-amb.yml"
|
|
when: ORACLE_BRIDGE_MODE == "ARBITRARY_MESSAGE"
|
|
|
|
- name: Install .key config
|
|
template:
|
|
src: key.j2
|
|
dest: "/root/.key"
|
|
owner: root
|
|
group: root
|
|
mode: 0600
|