
STRATEGY & OPERATIONS
E X P E R I E N C E

Basalt Protocol
Sep 2025 - Jan 2026

Convertica AI
Mar 2025 - Aug 2025

Utmost International
Dec 2023 - Jun 2025

ION Group
Mar 2022 - Feb 2023

SAP
Sep 2020 - Jan 2022
S K I L L S & T O O L S
E D U C A T I O N
Diploma in Fintech Risk & Compliance
BSc (Hons) Business Information Systems
D E M O S
Hands-on builds - 3 projects, pick one to step through.
Every report on euro stablecoins measures how much exists. I measured how much moves, and when. Payments follow the working week because banks close at weekends. Trading runs all seven days because digital assets never sleep. I chose the tokens, verified them and wrote the queries. Step through it:
Open dashboard on DuneEvery euro stablecoin, pulled from DefiLlama's public API: $849.7M in total, against $308.10B of dollar stablecoins. Euro is 0.28% of the dollar market. I took the figures myself because published reports run a month behind and miss issuers entirely.
queries/defillama_euro_stablecoins.py
API_URL = "https://stablecoins.llama.fi/stablecoins?includePrices=true"
def summarise(assets, peg_type):
rows = []
for asset in assets:
if asset.get("pegType") != peg_type:
continue
supply = circulating(asset, "circulating", peg_type)
usd_value = supply * (asset.get("price") or 1.0)
if usd_value < MIN_CIRCULATING_USD:
continue
rows.append({...})
return sorted(rows, key=lambda r: r["circulating_usd"], reverse=True)| Token | Issuer | In circulation | 30-day change |
|---|---|---|---|
| EURC | Circle | $520.9M | +3.8% |
| EURCV | Société Générale FORGE | $182.3M | +34.4% |
| EURI | Banking Circle | $44.1M | -2.1% |
| EURE | Monerium | $37.3M | +9.5% |
| REUR | Royal Euro | $17.3M | new |
| EUROP | Schuman Financial | $16.9M | +85.4% |
| EURS | Stasis | $9.7M | 0.0% |
| EURQ | Quantoz | $8.9M | -11.5% |
Pulled 6 August 2026, everything converted to dollars so the two pegs compare like for like. The leader has nearly stopped growing while two challengers grew by a third or more in thirty days. Seven more sit below these, down to the $1M cutoff I set.
Public data only, pulled 6 August 2026, the transfers all on Ethereum: the one network these three tokens share. Transfer counts are not payment counts, because they include trading this data cannot separate out. Checking each token's contract against its issuer's own documentation caught a widely used data source serving an old version of one token, which would have made a healthy token look like a dying one.
P R O J E C T S

A 14-page guide to Ireland's digital asset regulation, written from primary sources. Every activity a builder might run is sorted into one of four buckets: CBI authorisation, lawyer first, lawyer recommended, or monitor only. The guide's closing argument: treat compliance not as a cost but as a competitive advantage.

An AI platform that detects misinformation using LLM embeddings and semantic analysis, scoring content in real time. Blockchain adds a tamper-proof record of each verification, creating a fact-checking layer nobody can quietly edit.

An AI platform that brings verifiable, trusted data to rental transactions, cutting the information gap between landlords and tenants. Blockchain provides the verification layer underneath.

Real-time AML compliance that automatically flags politically exposed persons (PEPs). Built to take the screening work regulated institutions still do by hand and turn it into an automated, always-on layer, with every check recorded on-chain.