This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Peer 1 | |
pc.createOffer( | |
offer => { | |
pc.setLocalDescription( | |
offer, | |
() => { | |
// send the offer sdp to the other peer | |
}, | |
e => console.log(e), | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH initial_price as ( | |
SELECT transaction_hash, | |
index, | |
blocks.number as block_number, | |
blocks.timestamp as block_timestamp, | |
sqrt_ratio as sqrt_ratio_after | |
FROM initializations | |
JOIN blocks ON initializations.block_number = blocks.number | |
WHERE pool_key_hash = 3444297103257838275074422089987936420839083129914207634282919550416207684544 | |
), |
OlderNewer