Skip to content

Commit

Permalink
remove dupes
Browse files Browse the repository at this point in the history
  • Loading branch information
viniabussafi committed Jan 6, 2025
1 parent 1575c7e commit c05d7aa
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ UNION ALL
SELECT * FROM child_gauges
WHERE name IS NOT NULL)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM {{ source('balancer_ethereum', 'AvalancheRootGaugeFactory_call_create') }}
LEFT JOIN {{ source('balancer_avalanche_c', 'ChildChainGaugeFactory_call_create') }} child ON child.output_0 = call.recipient
LEFT JOIN {{ source('labels', 'balancer_v2_pools_avalanche_c') }} pools ON pools.address = child.pool)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM {{ source('balancer_ethereum', 'BaseRootGaugeFactory_call_create') }} call
LEFT JOIN {{ source('balancer_base', 'ChildChainGaugeFactory_call_create') }} child ON child.output_0 = call.recipient
LEFT JOIN {{ source('labels', 'balancer_v2_pools_base') }} pools ON pools.address = child.pool)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ FROM
WHERE
blockchain = 'ethereum')

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ FROM {{ source('balancer_ethereum', 'GnosisRootGaugeFactory_call_create') }} cal
LEFT JOIN {{ source('labels', 'balancer_v2_pools_gnosis') }} v2pools ON v2pools.address = child.pool
LEFT JOIN {{ source('labels', 'balancer_v3_pools_gnosis') }} v3pools ON v3pools.address = child.pool)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ UNION ALL
SELECT * FROM child_gauges
WHERE name IS NOT NULL)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ UNION ALL
SELECT * FROM child_gauges
WHERE name IS NOT NULL)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM {{ source('balancer_ethereum', 'PolygonZkEVMRootGaugeFactory_call_create')
LEFT JOIN {{ source('balancer_zkevm', 'ChildChainGaugeFactory_call_create') }} child ON child.output_0 = call.recipient
LEFT JOIN {{ source('labels', 'balancer_v2_pools_zkevm') }} pools ON pools.address = child.pool)

SELECT
SELECT DISTINCT
g.blockchain
, g.address
, g.pool_address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ sources:
- name: PolygonRootGauge_call_killGauge
- name: PolygonZkEVMRootGauge_call_killGauge
- name: LiquidityGauge_call_killGauge
- name: LiquidityGaugeV5_call_killGauge
- name: LiquidityGaugeV5_call_killGauge

- name: balancer_polygon
description: >
Expand Down

0 comments on commit c05d7aa

Please sign in to comment.