All workflows
Workflow
fx_cross_currency
jeremyjsx/fx-cross-currency
v1.0.0May 25, 2026
Chain two FX lookups — EUR/USD then USD/ARS — using step references for the intermediate currency.
Install
Pull this version with wallbit-cli.
wallbit workflow pull jeremyjsx/fx-cross-currency@1.0.0 -o fx-cross-currency.yaml
Copy command
Workflow YAML
Published version v1.0.0
fx-cross-currency.yaml
Copy
Download
version: 1
name: fx_cross_currency
description: Chain two FX lookups — EUR/USD then USD/ARS — using step references for the intermediate currency.
steps:
- id: eur_usd
run: rates.get
with:
source: EUR
dest: USD
- id: usd_ars
run: rates.get
with:
source: ${steps.eur_usd.data.Data.DestCurrency}
dest: ARS