You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function returns a link to access a specific pool on the Balancer app. The first argument is the chain, and the second argument is the pool Id (provided as varchar).
This function returns a link to access a specific pool on the Balancer app. The first argument is the chain, and the second argument is the pool Id (provided as varbinary).
103
+
104
+
```sql
105
+
SELECT
106
+
get_balancer_link(blockchain, pool_id)
107
+
FROMbalancer.trades
108
+
limit100
109
+
```
110
+
87
111
#### all_evm_chains()
88
112
**``all_evm_chains()``** → array(varchar)
89
113
@@ -93,3 +117,13 @@ SELECT
93
117
```
94
118
95
119
This function returns an array listing all the EVM chains available on Dune.
120
+
121
+
#### all_op_chains()
122
+
**``all_op_chains()``** → array(varchar)
123
+
124
+
```sql
125
+
SELECT
126
+
all_op_chains()
127
+
```
128
+
129
+
This function returns an array listing all the Optimism chains available on Dune.
0 commit comments