152 lines
3.4 KiB
Markdown
152 lines
3.4 KiB
Markdown
|
|
# CONVERSION EXAMPLE: WORKED CALCULATION
|
|||
|
|
## Real-World Example of XAU Triangulation Conversion
|
|||
|
|
|
|||
|
|
**Document Number:** DBIS-GRU-EX-001
|
|||
|
|
**Version:** 1.0
|
|||
|
|
**Date:** [Enter date in ISO 8601 format: YYYY-MM-DD]
|
|||
|
|
**Classification:** UNCLASSIFIED
|
|||
|
|
**Authority:** DBIS Financial Operations Department
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## SCENARIO
|
|||
|
|
|
|||
|
|
A member state wishes to convert $5,000,000 USD to Bitcoin (BTC) through the GRU Reserve System.
|
|||
|
|
|
|||
|
|
**Given:**
|
|||
|
|
- Source asset: USD
|
|||
|
|
- Target asset: BTC
|
|||
|
|
- Amount: $5,000,000 USD
|
|||
|
|
- Current prices (at time of conversion):
|
|||
|
|
- USD: $1.00/USD
|
|||
|
|
- XAU: $2,000.00/oz
|
|||
|
|
- BTC: $50,000.00/BTC
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## STEP 1: CALCULATE ALL POSSIBLE PATHS
|
|||
|
|
|
|||
|
|
### Path 1: Direct Conversion (USD → BTC)
|
|||
|
|
|
|||
|
|
**Formula:**
|
|||
|
|
```
|
|||
|
|
C_direct = Q_source × (P_source / P_target)
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
**Calculation:**
|
|||
|
|
```
|
|||
|
|
Q_source = $5,000,000
|
|||
|
|
P_source = $1.00/USD
|
|||
|
|
P_target = $50,000.00/BTC
|
|||
|
|
|
|||
|
|
C_direct = $5,000,000 × ($1.00 / $50,000.00)
|
|||
|
|
= $5,000,000 × 0.00002
|
|||
|
|
= 100 BTC
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
**Cost:**
|
|||
|
|
- Base fee: 100 BTC × 0.1% = 0.1 BTC
|
|||
|
|
- Large transaction fee: 100 BTC × 0.05% = 0.05 BTC
|
|||
|
|
- Total fee: 0.15 BTC
|
|||
|
|
- Net received: 100 - 0.15 = 99.85 BTC
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
### Path 2: Triangulation via XAU (USD → XAU → BTC)
|
|||
|
|
|
|||
|
|
**Step 2a: USD to XAU**
|
|||
|
|
```
|
|||
|
|
Q_USD = $5,000,000
|
|||
|
|
P_USD = $1.00/USD
|
|||
|
|
P_XAU = $2,000.00/oz
|
|||
|
|
|
|||
|
|
Q_XAU = $5,000,000 × ($1.00 / $2,000.00)
|
|||
|
|
= $5,000,000 × 0.0005
|
|||
|
|
= 2,500 oz XAU
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
**Step 2b: XAU to BTC**
|
|||
|
|
```
|
|||
|
|
Q_XAU = 2,500 oz
|
|||
|
|
P_XAU = $2,000.00/oz
|
|||
|
|
P_BTC = $50,000.00/BTC
|
|||
|
|
|
|||
|
|
Q_BTC = 2,500 × ($2,000.00 / $50,000.00)
|
|||
|
|
= 2,500 × 0.04
|
|||
|
|
= 100 BTC
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
**Total via XAU:**
|
|||
|
|
- Gross: 100 BTC
|
|||
|
|
- Base fee (XAU conversion): 2,500 oz × 0.1% = 2.5 oz
|
|||
|
|
- Base fee (BTC conversion): 100 BTC × 0.1% = 0.1 BTC
|
|||
|
|
- Large transaction fee: 100 BTC × 0.05% = 0.05 BTC
|
|||
|
|
- Total fee: 2.5 oz XAU + 0.15 BTC
|
|||
|
|
- Net received: 100 - 0.15 = 99.85 BTC (plus 2.5 oz XAU fee)
|
|||
|
|
|
|||
|
|
**Note:** XAU fee equivalent in BTC: 2.5 oz × ($2,000/oz) / ($50,000/BTC) = 0.1 BTC
|
|||
|
|
**Total fee equivalent:** 0.15 BTC + 0.1 BTC = 0.25 BTC
|
|||
|
|
**Net received:** 99.75 BTC
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## STEP 2: SELECT OPTIMAL PATH
|
|||
|
|
|
|||
|
|
**Comparison:**
|
|||
|
|
- Path 1 (Direct): Net = 99.85 BTC, Fee = 0.15 BTC
|
|||
|
|
- Path 2 (Via XAU): Net = 99.75 BTC, Fee = 0.25 BTC
|
|||
|
|
|
|||
|
|
**Optimal Path:** Path 1 (Direct conversion)
|
|||
|
|
**Reason:** Lower total fees
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## STEP 3: EXECUTE CONVERSION
|
|||
|
|
|
|||
|
|
**Conversion Execution:**
|
|||
|
|
1. Reserve system receives conversion request
|
|||
|
|
2. Validates sufficient USD reserves
|
|||
|
|
3. Validates sufficient BTC reserves (or ability to acquire)
|
|||
|
|
4. Executes conversion at current market price
|
|||
|
|
5. Applies fees
|
|||
|
|
6. Settles transaction
|
|||
|
|
|
|||
|
|
**Actual Execution:**
|
|||
|
|
- Request time: 2024-01-15T10:30:00Z
|
|||
|
|
- Execution time: 2024-01-15T10:30:05Z (5 seconds)
|
|||
|
|
- Execution price: $50,000.00/BTC (no slippage)
|
|||
|
|
- Amount converted: $5,000,000 USD
|
|||
|
|
- BTC received: 100 BTC
|
|||
|
|
- Fees: 0.15 BTC
|
|||
|
|
- Net BTC: 99.85 BTC
|
|||
|
|
- Settlement: Immediate
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## STEP 4: TRANSACTION RECORD
|
|||
|
|
|
|||
|
|
**Transaction Details:**
|
|||
|
|
- Conversion ID: CONV-2024-001-12345
|
|||
|
|
- Source: USD $5,000,000
|
|||
|
|
- Target: BTC 99.85
|
|||
|
|
- Conversion rate: $50,000.00/BTC
|
|||
|
|
- Fees: 0.15 BTC
|
|||
|
|
- Path: Direct
|
|||
|
|
- Status: Completed
|
|||
|
|
- Settlement: 2024-01-15T10:30:05Z
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## NOTES
|
|||
|
|
|
|||
|
|
1. **Price Discovery:** Prices obtained from multiple sources and validated
|
|||
|
|
2. **Slippage:** No slippage in this example (ideal conditions)
|
|||
|
|
3. **Liquidity:** Sufficient liquidity available for transaction
|
|||
|
|
4. **Fees:** Fees calculated and applied per fee structure
|
|||
|
|
5. **Settlement:** Immediate settlement in this example
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
**END OF CONVERSION EXAMPLE**
|
|||
|
|
|