dForce name fix

This commit is contained in:
mattromano 2023-12-11 12:04:16 -08:00
parent 8c4efdb628
commit b259eecb8b
5 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ dforce_borrows AS (
segmented_data [3] :: STRING
) :: INTEGER AS totalBorrows,
contract_address AS token,
'Dforce' AS platform,
'dForce' AS platform,
_inserted_timestamp,
_log_id
FROM

View File

@ -39,7 +39,7 @@ dforce_deposits AS (
segmented_data [2] :: STRING
) :: INTEGER AS mintAmount_raw,
CONCAT('0x', SUBSTR(segmented_data [0] :: STRING, 25, 40)) AS supplier,
'dforce' AS platform,
'dForce' AS platform,
_inserted_timestamp,
_log_id
FROM

View File

@ -42,7 +42,7 @@ dforce_liquidations AS (
segmented_data [2] :: STRING
) :: INTEGER AS repayAmount_raw,
CONCAT('0x', SUBSTR(segmented_data [3] :: STRING, 25, 40)) AS tokenCollateral,
'dforce' AS platform,
'dForce' AS platform,
_inserted_timestamp,
_log_id
FROM

View File

@ -37,7 +37,7 @@ dforce_repayments AS (
utils.udf_hex_to_int(
segmented_data [2] :: STRING
) :: INTEGER AS repayed_amount_raw,
'dforce' AS platform,
'dForce' AS platform,
_inserted_timestamp,
_log_id
FROM

View File

@ -39,7 +39,7 @@ dforce_redemptions AS (
segmented_data [2] :: STRING
) :: INTEGER AS redeemed_token_raw,
CONCAT('0x', SUBSTR(segmented_data [0] :: STRING, 25, 40)) AS redeemer,
'dforce' AS platform,
'dForce' AS platform,
_inserted_timestamp,
_log_id
FROM