Last active
November 13, 2021 12:33
-
-
Save chemiron/451df6579fdad24da326ea9c01f7af8a to your computer and use it in GitHub Desktop.
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
(() => { | |
let questions = { | |
'When will Clipper release a token?': "American company's can't comment on any token-related matters.", | |
"Who are the cofounders of Shipyard Software (Clipper's developers)?": "Mark Lurie + Abe Othman", | |
'How is Clipper governed?': "By a distributed autonomous organization (DAO).", | |
"How are Clipper's pool's funds secured?": "By a multisig contract.", | |
'Where can I see data about Clipper transactions?': "On Clipper.Exchange's data page", | |
'What is Clipper (the product)?': "A decentralized exchange", | |
'How does Clipper mitigate impermanent loss?': "Clipper uses the oracle Chainlink combined with a small pool to minimize slippage.", | |
'Which networks is Clipper on now?': "Ethereum and Polygon.", | |
'What is the current pool cap on Ethereum Mainnet?': "$20 million", | |
'What did Clipper developer Abe Othman write his computer science PhD thesis on?': "Automated market making: Theory and Practice", | |
'What is a Clipper (the name)?': "A small boat that sacrifices cargo space for speed.", | |
"How many people are in Clipper's Discord Server?": "5000+", | |
'How does clipper minimize slippage?': "Oracles and small pools.", | |
'Who is the lead investor for Shipyard Software (The software development company that created Clipper)?': "Polychain", | |
"What are Clipper's ambassadors called?": "Pirates", | |
'Who is the developer of Clipper DEX?': "Shipyard Software", | |
'What is next on the roadmap for Clipper?': "Open Polygon CLP", | |
"How does Clipper's liquidity pool differ from other pools?": "It uses various measures to balance the pool volume at the ideal amount for small trades.", | |
'Does Clipper have a liquidity program?': "Yes, for ETH Mainnet only currently.", | |
'Has Clipper been audited?': "Yes", | |
'Who is F1RST M8?': "A character in Clipper's world", | |
'Who did the audit?': "Both Quantstamp and Solidified", | |
}; | |
Array.from(document.querySelectorAll('.freebirdFormviewerViewNumberedItemContainer [data-params]')).forEach(el => { | |
const question = el.querySelector("[role='heading']").innerText.replace(/\s[*]?$/i, ''); | |
const answer = questions[question]; | |
if (answer) { | |
el.querySelector(`[data-value="${answer}"]`).click(); | |
} | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment