Compare commits
No commits in common. "2437ecc426e6b4263a24b8edd8c6aee07a011bdb" and "aaa4205145e9c0a226988b3470d89333e8fffc62" have entirely different histories.
2437ecc426
...
aaa4205145
@ -317,8 +317,8 @@
|
||||
mask-image: url('../img/icons/ethereum.svg');
|
||||
}
|
||||
|
||||
&-ethereum-sepolia {
|
||||
mask-image: url('../img/icons/ethereum.svg');
|
||||
&-ethereum-goerli {
|
||||
mask-image: url('../img/icons/goerli.svg');
|
||||
}
|
||||
|
||||
&-optimism {
|
||||
|
||||
@ -37,27 +37,19 @@
|
||||
<b-button
|
||||
tag="a"
|
||||
type="is-icon"
|
||||
href="https://tornado-cash.medium.com"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
icon-right="medium"
|
||||
></b-button>
|
||||
<b-button
|
||||
tag="a"
|
||||
type="is-icon"
|
||||
href="https://twitter.com/TornadoCash"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
icon-right="twitter"
|
||||
></b-button>
|
||||
<b-button
|
||||
tag="a"
|
||||
type="is-icon"
|
||||
href="https://t.me/TornadoCashOfficialDAO"
|
||||
href="https://t.me/tornadoofficial"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
icon-right="telegram"
|
||||
></b-button>
|
||||
<b-button
|
||||
tag="a"
|
||||
type="is-icon"
|
||||
href="https://git.tornado.ws/tornadocash/classic-ui"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
icon-right="git"
|
||||
></b-button>
|
||||
<b-button
|
||||
tag="a"
|
||||
type="is-icon"
|
||||
@ -120,10 +112,10 @@ export default {
|
||||
const mainnetNetworks = [1, 5]
|
||||
|
||||
if (mainnetNetworks.includes(Number(this.netId))) {
|
||||
return 'https://dune.com/davidcaviar/tornado-cash'
|
||||
return 'https://dune.xyz/poma/tornado-cash_1'
|
||||
}
|
||||
|
||||
return 'https://dune.com/stakingbutterfly/tornado-cash-staking'
|
||||
return 'https://dune.xyz/fennec/Tornado-Cash-Cross-chain-Dashboard'
|
||||
},
|
||||
locales() {
|
||||
return this.$i18n.availableLocales
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
{{ $t('compliance') }}
|
||||
</b-navbar-item>
|
||||
<b-navbar-item
|
||||
href="https://github.com/tornadocash/docs"
|
||||
href="https://docs.tornado.ws"
|
||||
target="_blank"
|
||||
data-test="docs_link"
|
||||
rel="noopener noreferrer"
|
||||
|
||||
@ -17,6 +17,8 @@ export default {
|
||||
switch (this.netId) {
|
||||
case 1:
|
||||
return 'Ethereum'
|
||||
case 5:
|
||||
return 'Goerli'
|
||||
case 56:
|
||||
return 'BSC Mainnet'
|
||||
case 137:
|
||||
@ -25,8 +27,6 @@ export default {
|
||||
return 'Arbitrum'
|
||||
case 43114:
|
||||
return 'Avalanche'
|
||||
case 11155111:
|
||||
return 'Sepolia'
|
||||
default:
|
||||
return this.networkName
|
||||
}
|
||||
|
||||
@ -18,7 +18,9 @@
|
||||
</template>
|
||||
<template v-slot:description>{{ notice.description }}</template>
|
||||
</i18n>
|
||||
|
||||
<a v-if="notice.nova" href="https://nova.tornado.ws/" target="_blank" rel="noopener noreferrer">
|
||||
Tornado Cash Nova
|
||||
</a>
|
||||
<a
|
||||
v-if="notice.txHash"
|
||||
:href="txExplorerUrl(notice.txHash)"
|
||||
|
||||
@ -92,23 +92,6 @@
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
<div class="field">
|
||||
<b-field label="Graph ApiKey" class="has-custom-field"> </b-field>
|
||||
<div class="field has-custom-field">
|
||||
<b-input
|
||||
ref="graphInput"
|
||||
v-model="graphApiKey"
|
||||
type="text"
|
||||
placeholder="Paste your graph ApiKey"
|
||||
:custom-class="hasErrorGraphApiKey.type"
|
||||
:use-html5-validation="false"
|
||||
@input="checkGraphApiKey"
|
||||
></b-input>
|
||||
</div>
|
||||
<p v-if="hasErrorGraphApiKey.msg" class="help" :class="hasErrorGraphApiKey.type">
|
||||
{{ hasErrorGraphApiKey.msg }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="buttons buttons__halfwidth">
|
||||
<b-button type="is-primary" outlined data-test="button_reset_rpc" @mousedown.prevent @click="onReset">
|
||||
{{ $t('reset') }}
|
||||
@ -138,10 +121,8 @@ export default {
|
||||
checkingRpc: false,
|
||||
hasErrorRpc: { type: '', msg: '' },
|
||||
hasErrorEthRpc: { type: '', msg: '' },
|
||||
hasErrorGraphApiKey: { type: '', msg: '' },
|
||||
customRpcUrl: '',
|
||||
customEthUrl: '',
|
||||
graphApiKey: '',
|
||||
selectedRpc: 'custom',
|
||||
selectedEthRpc: 'custom',
|
||||
rpc: { name: 'custom', url: '' },
|
||||
@ -167,10 +148,7 @@ export default {
|
||||
},
|
||||
isDisabledSave() {
|
||||
return (
|
||||
this.hasErrorRpc.type === 'is-warning' ||
|
||||
this.checkingRpc ||
|
||||
(this.isCustomRpc && !this.customRpcUrl) ||
|
||||
this.hasErrorGraphApiKey.type === 'is-warning'
|
||||
this.hasErrorRpc.type === 'is-warning' || this.checkingRpc || (this.isCustomRpc && !this.customRpcUrl)
|
||||
)
|
||||
}
|
||||
},
|
||||
@ -190,11 +168,6 @@ export default {
|
||||
this.customEthRpcUrl = this.ethRpc.url
|
||||
})
|
||||
}
|
||||
// eslint-disable-next-line nuxt/no-globals-in-created
|
||||
const customApiKey = window.localStorage.getItem('graphApiKey')
|
||||
if (customApiKey) {
|
||||
this.graphApiKey = customApiKey
|
||||
}
|
||||
|
||||
this.checkRpc(this.rpc)
|
||||
this.checkEthRpc(this.ethRpc)
|
||||
@ -203,9 +176,7 @@ export default {
|
||||
...mapMutations('settings', ['SAVE_RPC']),
|
||||
onReset() {
|
||||
this.checkingRpc = false
|
||||
this.graphApiKey = ''
|
||||
this.hasErrorRpc = { type: '', msg: '' }
|
||||
this.hasErrorGraphApiKey = { type: '', msg: '' }
|
||||
|
||||
this.rpc = Object.entries(this.networkConfig.rpcUrls)[0][1]
|
||||
this.ethRpc = Object.entries(this.ethNetworkConfig.rpcUrls)[0][1]
|
||||
@ -219,7 +190,6 @@ export default {
|
||||
if (this.netId !== 1) {
|
||||
this.SAVE_RPC({ ...this.ethRpc, netId: 1 })
|
||||
}
|
||||
window.localStorage.setItem('graphApiKey', this.graphApiKey)
|
||||
this.$emit('close')
|
||||
},
|
||||
onCancel() {
|
||||
@ -260,21 +230,6 @@ export default {
|
||||
}
|
||||
debounce(this._checkEthRpc, { name: 'custom', url: trimmedUrl })
|
||||
},
|
||||
checkGraphApiKey(strApiKey) {
|
||||
const apiKey = strApiKey.trim()
|
||||
if (!apiKey) {
|
||||
this.hasErrorGraphApiKey = { type: '', msg: '' }
|
||||
return
|
||||
}
|
||||
if (apiKey.length === 32) {
|
||||
const hexRegex = /^[0-9a-fA-F]+$/
|
||||
if (hexRegex.test(apiKey)) {
|
||||
this.hasErrorGraphApiKey = { type: '', msg: '' }
|
||||
return
|
||||
}
|
||||
}
|
||||
this.hasErrorGraphApiKey = { type: 'is-warning', msg: 'invalid' }
|
||||
},
|
||||
async _checkRpc({ name, url }) {
|
||||
this.checkingRpc = true
|
||||
this.hasErrorRpc = { type: '', msg: '' }
|
||||
|
||||
@ -52,7 +52,7 @@ export default {
|
||||
}),
|
||||
...mapState('relayer', ['isLoadingRelayers', 'validRelayers']),
|
||||
isRelayersAvailable() {
|
||||
return !this.isLoadingRelayers && this.validRelayers.length > 0
|
||||
return !this.isLoadingRelayers && this.validRelayers.length > 0;
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
@ -52,6 +52,9 @@ export const cachedEventsLength = {
|
||||
mainnet: {
|
||||
ENCRYPTED_NOTES: 16898
|
||||
},
|
||||
goerli: {
|
||||
ENCRYPTED_NOTES: 1662
|
||||
},
|
||||
bsc: {
|
||||
ENCRYPTED_NOTES: 11333
|
||||
}
|
||||
@ -87,7 +90,7 @@ export const PROVIDERS = {
|
||||
export const REGISTRY_DEPLOYED_BLOCK = {
|
||||
1: 14173129
|
||||
}
|
||||
export const DONATIONS_ADDRESS = '0xB4ef209ccEe95De23a8e1F7627ac7E676fF0739D'
|
||||
export const DONATIONS_ADDRESS = '0xB008Ce23852Be9e7d43638432617617b2e07B41e'
|
||||
|
||||
export const trees = {
|
||||
PARTS_COUNT: 4,
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "Close notification",
|
||||
"indexNotification": "Tornado Cash is now being maintained by the community, for more information visit {link}",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "Please, do not use Binance wallet addresses for withdrawals. Internal transactions (including Tornado.cash withdrawals) are not currently supported on Binance Exchange. If you have an issue receiving your funds, you should contact Binance support.",
|
||||
"deposit": "Deposit",
|
||||
"depositButton": "Deposit",
|
||||
@ -151,7 +151,7 @@
|
||||
"nullifierHash": "Nullifier Hash",
|
||||
"verified": "Verified",
|
||||
"generatePdfReport": "Generate PDF report",
|
||||
"compliancePrintWarning": "This Compliance Report is for informational purposes only. You should confirm the validity of this report by using Tornado’s Compliance Tool (https://tornadocash.eth.limo/compliance) or via any other cryptographic software that can compute and verify the information contained herein(the \"Tornado Compliance Tool\"). Any discrepancies between information found in this report and provided by the above tool indicate that the information in this report may be inaccurate and/or fraudulent.{newline}THE COMPLIANCE REPORT IS PROVIDED \"AS IS,\" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OF THE TORNADO.CASH COMPLIANCE TOOL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THIS COMPLIANCE REPORT.",
|
||||
"compliancePrintWarning": "This Compliance Report is for informational purposes only. You should confirm the validity of this report by using Tornado’s Compliance Tool (https://tornado.ws/compliance) or via any other cryptographic software that can compute and verify the information contained herein(the \"Tornado Compliance Tool\"). Any discrepancies between information found in this report and provided by the above tool indicate that the information in this report may be inaccurate and/or fraudulent.{newline}THE COMPLIANCE REPORT IS PROVIDED \"AS IS,\" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OF THE TORNADO.CASH COMPLIANCE TOOL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THIS COMPLIANCE REPORT.",
|
||||
"relayRequestFailed": "Relayer {relayerName} is down. Please choose a different relayer.",
|
||||
"selectProvider": "Select provider",
|
||||
"walletDoesNotSupported": "The wallet is not supported",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "Cerrar notificación",
|
||||
"indexNotification": "Tornado Cash ahora está siendo mantenido por la comunidad, para obtener más información, visite {link}",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "Por favor, no use direcciones a monederos Binance para retiros. Las transacciones internas (incluidos los retiros de Tornado.cash) actualmente no son compatibles con el Exchange de Binance. Si tiene problemas en la recepción de sus fondos, debería contactar con el soporte de Binance.",
|
||||
"deposit": "Depósito",
|
||||
"depositButton": "Depósito",
|
||||
@ -151,7 +151,7 @@
|
||||
"nullifierHash": "Hash del Nullifier",
|
||||
"verified": "Verificador",
|
||||
"generatePdfReport": "Genere informe PDF",
|
||||
"compliancePrintWarning": "Este Informe de Compromiso es para propósito informativo unicamente. Debería confirmar la validez de este informe utilizando la Herramienta de Cumplimiento de Tornado (https://tornadocash.eth.limo/compliance) o cualquier otro software criptográfico que pueda procesar y verificar la información contenida aquí(la \"Tornado Compliance Tool\"). Cualquier discrepancia entre la información recogida en este informe y entregado por la herramienta anterior indica que este informe no es riguroso y/o fraudulento.{newline}EL INFORME DE CUMPLIMIENTO SE PRESENTA \"COMO TAL,\" SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O IMPLÍCITAMENTE, INCLUYENDO PERO NO LIMITADA A LAS GARANTÍAS MERCANTILES, ADECUADAS PARA UN PROPÓSITO PARTICULAR Y LA NO INFRACCIÓN. EN NINGÚN CASO DEBERÍAN LOS AUTORES DE LA HERRAMIENTA DE CUMPLIMIENTO DE TORNADO.CASH SER RESPONSABLES U OBJETO DE CUALQUIER RECLAMO, DAÑO U OTRA RESPONSABILIDAD, YA SEA EN ACCIÓN CONTRACTUAL, AGRAVIADO O DE CUALQUIER OTRO MODO, DERIVADO DE, PRODUCTO DE O EN CONEXIÓN CON EL MENCIONADO INFORME DE CUMPLIMIENTO.",
|
||||
"compliancePrintWarning": "Este Informe de Compromiso es para propósito informativo unicamente. Debería confirmar la validez de este informe utilizando la Herramienta de Cumplimiento de Tornado (https://tornado.ws/compliance) o cualquier otro software criptográfico que pueda procesar y verificar la información contenida aquí(la \"Tornado Compliance Tool\"). Cualquier discrepancia entre la información recogida en este informe y entregado por la herramienta anterior indica que este informe no es riguroso y/o fraudulento.{newline}EL INFORME DE CUMPLIMIENTO SE PRESENTA \"COMO TAL,\" SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O IMPLÍCITAMENTE, INCLUYENDO PERO NO LIMITADA A LAS GARANTÍAS MERCANTILES, ADECUADAS PARA UN PROPÓSITO PARTICULAR Y LA NO INFRACCIÓN. EN NINGÚN CASO DEBERÍAN LOS AUTORES DE LA HERRAMIENTA DE CUMPLIMIENTO DE TORNADO.CASH SER RESPONSABLES U OBJETO DE CUALQUIER RECLAMO, DAÑO U OTRA RESPONSABILIDAD, YA SEA EN ACCIÓN CONTRACTUAL, AGRAVIADO O DE CUALQUIER OTRO MODO, DERIVADO DE, PRODUCTO DE O EN CONEXIÓN CON EL MENCIONADO INFORME DE CUMPLIMIENTO.",
|
||||
"relayRequestFailed": "El retransmisor {relayerName} no responde. Por favor escoja uno diferente.",
|
||||
"selectProvider": "Seleccione proveedor",
|
||||
"walletDoesNotSupported": "El monedero no es compatible",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "Fermer notification",
|
||||
"indexNotification": "Tornado Cash est maintenant maintenu par la communauté, pour plus d'informations, visitez {link}",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "Veuillez ne pas utiliser votre adresse de portefeuille Binance pour retirer vos fonds. Les transactions internes (tout comme celles effectuées par Tornado.Cash) ne sont pas supportées sur la plateforme d'échange Binance. Si vous n'avez pas reçu vos fonds sur Binance, veuillez prendre contact avec le support Binance.",
|
||||
"deposit": "Déposer",
|
||||
"depositButton": "Déposer",
|
||||
@ -151,7 +151,7 @@
|
||||
"nullifierHash": "Hash Nullifié",
|
||||
"verified": "Verifié",
|
||||
"generatePdfReport": "Générer un rapport PDF",
|
||||
"compliancePrintWarning": "Ce rapport de conformité est uniquement destiné à des fins d'information. Vous devez confirmer la validité de ce rapport en utilisant l'outil de conformité de Tornado (https://tornadocash.eth.limo/compliance) ou tout autre logiciel cryptographique capable de calculer et de vérifier les informations contenues dans ce document (l' \"Outil de Conformité Tornado\"). Toute divergence entre les informations trouvées dans ce rapport et celles fournies par l'outil susmentionné indique que les informations contenues dans ce rapport sont inexactes et/ou frauduleuses.{newline}LE RAPPORT DE CONFORMITÉ EST FOURNI \"EN L'ÉTAT\", SANS GARANTIE D'AUCUNE SORTE, EXPRESSE OU IMPLICITE, Y COMPRIS, MAIS SANS S'Y LIMITER, LES GARANTIES DE QUALITÉ MARCHANDE, D'ADÉQUATION À UN USAGE PARTICULIER ET D'ABSENCE DE CONTREFAÇON. EN AUCUN CAS, LES AUTEURS DE L'OUTIL DE CONFORMITÉ TORNADO.CASH NE POURRONT ÊTRE TENUS RESPONSABLES DE TOUTE RÉCLAMATION, DE TOUT DOMMAGE OU DE TOUTE AUTRE RESPONSABILITÉ, QUE CE SOIT DANS LE CADRE D'UNE ACTION CONTRACTUELLE, DÉLICTUELLE OU AUTRE, DÉCOULANT DE, EN DEHORS DE OU EN RELATION AVEC CE RAPPORT DE CONFORMITÉ.",
|
||||
"compliancePrintWarning": "Ce rapport de conformité est uniquement destiné à des fins d'information. Vous devez confirmer la validité de ce rapport en utilisant l'outil de conformité de Tornado (https://tornado.ws/compliance) ou tout autre logiciel cryptographique capable de calculer et de vérifier les informations contenues dans ce document (l' \"Outil de Conformité Tornado\"). Toute divergence entre les informations trouvées dans ce rapport et celles fournies par l'outil susmentionné indique que les informations contenues dans ce rapport sont inexactes et/ou frauduleuses.{newline}LE RAPPORT DE CONFORMITÉ EST FOURNI \"EN L'ÉTAT\", SANS GARANTIE D'AUCUNE SORTE, EXPRESSE OU IMPLICITE, Y COMPRIS, MAIS SANS S'Y LIMITER, LES GARANTIES DE QUALITÉ MARCHANDE, D'ADÉQUATION À UN USAGE PARTICULIER ET D'ABSENCE DE CONTREFAÇON. EN AUCUN CAS, LES AUTEURS DE L'OUTIL DE CONFORMITÉ TORNADO.CASH NE POURRONT ÊTRE TENUS RESPONSABLES DE TOUTE RÉCLAMATION, DE TOUT DOMMAGE OU DE TOUTE AUTRE RESPONSABILITÉ, QUE CE SOIT DANS LE CADRE D'UNE ACTION CONTRACTUELLE, DÉLICTUELLE OU AUTRE, DÉCOULANT DE, EN DEHORS DE OU EN RELATION AVEC CE RAPPORT DE CONFORMITÉ.",
|
||||
"relayRequestFailed": "Le relais {relayerName} est en panne. Veuillez choisir un autre relais.",
|
||||
"selectProvider": "Sélectionner le fournisseur",
|
||||
"walletDoesNotSupported": "Le portefeuille n'est pas supporté",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "Закрыть",
|
||||
"indexNotification": "Tornado Cash в настоящее время поддерживается сообществом, для получения дополнительной информации посетите {link}",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "Пожалуйста, не используйте адреса кошельков Binance для вывода средств. Внутренние транзакции (включая снятие средств с Tornado.cash) в настоящее время не поддерживаются на бирже Binance. Если у вас возникли проблемы с получением средств, вам следует обратиться в службу поддержки Binance.",
|
||||
"deposit": "Депозит",
|
||||
"depositButton": "Внести",
|
||||
@ -151,7 +151,7 @@
|
||||
"nullifierHash": "Nullifier Hash",
|
||||
"verified": "Подтверждено",
|
||||
"generatePdfReport": "Сгенерировать PDF отчёт",
|
||||
"compliancePrintWarning": "Настоящий отчет о соответствии носит исключительно информационный характер. Вы должны подтвердить действительность этого отчета с помощью средства проверки соответствия Tornado (https://tornadocash.eth.limo/compliance) или с помощью любого другого криптографического программного обеспечения, которое может обработать и проверить информацию, содержащуюся в этом отчете(\"Tornado Compliance Tool\"). Любые расхождения между информацией, приведенной в данном отчете и предоставленной вышеуказанным инструментом, указывают на то, что информация, содержащаяся в этом отчете, является неточной и/или мошеннической.{newline}ОТЧЕТ О СООТВЕТСТВИИ ПРЕДОСТАВЛЯЕТСЯ \"КАК ЕСТЬ,\" БЕЗ ГАРАНТИЙ ЛЮБОГО РОДА, ЯВНЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ, ВКЛЮЧАЯ, НО НЕ ОГРАНИЧИВАЯСЬ ГАРАНТИЯМИ ТОВАРНОГО КАЧЕСТВА, ПРИГОДНОСТЬЮ К КОНКРЕТНОЙ ЦЕЛИ. НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ АВТОРЫ ИНСТРУМЕНТА СООТВЕТСТВИЯ TORNADO.CASH НЕ НЕСУТ ОТВЕТСТВЕННОСТИ ЗА ЛЮБЫЕ ПРЕТЕНЗИИ, УЩЕРБ ИЛИ ДРУГУЮ ОТВЕТСТВЕННОСТЬ, ОТНОСЯЩУЮСЯ К ДЕЙСТВИЮ ДОГОВОРОВ, ГРАЖДАНСКИМ ПРАВОНАРУШЕНИЯМ, А ТАКЖЕ ВЫТЕКАЮЩУЮ ИЗ НАСТОЯЩЕГО ОТЧЕТА О СООТВЕТСТВИИ ИЛИ СВЯЗАННУЮ С НИМ.",
|
||||
"compliancePrintWarning": "Настоящий отчет о соответствии носит исключительно информационный характер. Вы должны подтвердить действительность этого отчета с помощью средства проверки соответствия Tornado (https://tornado.ws/compliance) или с помощью любого другого криптографического программного обеспечения, которое может обработать и проверить информацию, содержащуюся в этом отчете(\"Tornado Compliance Tool\"). Любые расхождения между информацией, приведенной в данном отчете и предоставленной вышеуказанным инструментом, указывают на то, что информация, содержащаяся в этом отчете, является неточной и/или мошеннической.{newline}ОТЧЕТ О СООТВЕТСТВИИ ПРЕДОСТАВЛЯЕТСЯ \"КАК ЕСТЬ,\" БЕЗ ГАРАНТИЙ ЛЮБОГО РОДА, ЯВНЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ, ВКЛЮЧАЯ, НО НЕ ОГРАНИЧИВАЯСЬ ГАРАНТИЯМИ ТОВАРНОГО КАЧЕСТВА, ПРИГОДНОСТЬЮ К КОНКРЕТНОЙ ЦЕЛИ. НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ АВТОРЫ ИНСТРУМЕНТА СООТВЕТСТВИЯ TORNADO.CASH НЕ НЕСУТ ОТВЕТСТВЕННОСТИ ЗА ЛЮБЫЕ ПРЕТЕНЗИИ, УЩЕРБ ИЛИ ДРУГУЮ ОТВЕТСТВЕННОСТЬ, ОТНОСЯЩУЮСЯ К ДЕЙСТВИЮ ДОГОВОРОВ, ГРАЖДАНСКИМ ПРАВОНАРУШЕНИЯМ, А ТАКЖЕ ВЫТЕКАЮЩУЮ ИЗ НАСТОЯЩЕГО ОТЧЕТА О СООТВЕТСТВИИ ИЛИ СВЯЗАННУЮ С НИМ.",
|
||||
"relayRequestFailed": "Relayer {relayerName} не отвечает. Попробуйте сменить Relayer.",
|
||||
"selectProvider": "Выберите кошелёк",
|
||||
"walletDoesNotSupported": "Выбранный кошелёк не поддерживается",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "Bildirimi Kapat",
|
||||
"indexNotification": "Tornado Cash artık topluluk tarafından yönetiliyor, daha fazla bilgi için {link} adresini ziyaret edin.",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "Lütfen para çekme işlemleri için Binance cüzdanına ait adresleri kullanmayın. Dahili işlemler (Tornado.cash çekimleri dahil) şu anda Binance Exchange’de desteklenmemektedir. Paranızın hesabınıza yansıması ile ilgili sorunlarınız varsa Binance destek ile iletişime geçmelisiniz.",
|
||||
"deposit": "Yatırma",
|
||||
"depositButton": "Yatırma",
|
||||
@ -151,7 +151,7 @@
|
||||
"nullifierHash": "Nullifier Hash",
|
||||
"verified": "Onaylanmış",
|
||||
"generatePdfReport": "PDF rapora dönüştür.",
|
||||
"compliancePrintWarning": "Bu Uyumluluk Raporu yalnızca bilgilendirme amaçlıdır. Bu raporun geçerliliğini Tornado’nun Uyumluluk Aracını (https://tornadocash.eth.limo/compliance) veya burada yer alan bilgileri hesaplayabilen ve doğrulayabilen diğer herhangi bir şifreleme yazılımıyla (\"Tornado Uyumluluk Aracı\") kullanarak onaylamalısınız.) Bu raporda bulunan ve yukarıdaki araç tarafından sağlanan bilgiler arasındaki herhangi bir tutarsızlık, rapordaki bilgilerin yanlış ve/veya sahte olduğunu gösterir.{newline} UYGUNLUK RAPORU, HERHANGİ BİR GARANTİ OLMADAN tamamen\"OLDUĞU GİBİ\" SUNULMAKTADIR. BELİRLİ BİR AMACA UYGUNLUK VE İHLAL ETMEME GARANTİLERİ DAHİLDİR ANCAK BUNLARLA SINIRLI OLMAMAK ÜZERE ZIMNİ VEYA ZIMNİ OLARAK GEÇERLİDİR. TORNADO.CASH UYUM ARACININ YAZARLARI RAPORDAN KAYNAKLANAN, UYUMLULUKTAN KAYNAKLANAN VEYA BAĞLANTILI OLARAK SÖZLEŞME, HAKSIZ YA DA BAŞKA BİR DURUMDA OLAN HERHANGİ BİR İDDİADAN, ZARAR VEYA BAŞKA SORUMLULUKTAN SORUMLU TUTULAMAZ.",
|
||||
"compliancePrintWarning": "Bu Uyumluluk Raporu yalnızca bilgilendirme amaçlıdır. Bu raporun geçerliliğini Tornado’nun Uyumluluk Aracını (https://tornado.ws/compliance) veya burada yer alan bilgileri hesaplayabilen ve doğrulayabilen diğer herhangi bir şifreleme yazılımıyla (\"Tornado Uyumluluk Aracı\") kullanarak onaylamalısınız.) Bu raporda bulunan ve yukarıdaki araç tarafından sağlanan bilgiler arasındaki herhangi bir tutarsızlık, rapordaki bilgilerin yanlış ve/veya sahte olduğunu gösterir.{newline} UYGUNLUK RAPORU, HERHANGİ BİR GARANTİ OLMADAN tamamen\"OLDUĞU GİBİ\" SUNULMAKTADIR. BELİRLİ BİR AMACA UYGUNLUK VE İHLAL ETMEME GARANTİLERİ DAHİLDİR ANCAK BUNLARLA SINIRLI OLMAMAK ÜZERE ZIMNİ VEYA ZIMNİ OLARAK GEÇERLİDİR. TORNADO.CASH UYUM ARACININ YAZARLARI RAPORDAN KAYNAKLANAN, UYUMLULUKTAN KAYNAKLANAN VEYA BAĞLANTILI OLARAK SÖZLEŞME, HAKSIZ YA DA BAŞKA BİR DURUMDA OLAN HERHANGİ BİR İDDİADAN, ZARAR VEYA BAŞKA SORUMLULUKTAN SORUMLU TUTULAMAZ.",
|
||||
"relayRequestFailed": "Relayer {relayerName} çöktü. lütfen başka bir relayer seçin.",
|
||||
"selectProvider": "Sağlayıcı seçin",
|
||||
"walletDoesNotSupported": "Bu cüzdan desteklenmiyor",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "Закрити повідомлення",
|
||||
"indexNotification": "Tornado Cash зараз обслуговується спільнотою, щоб дізнатися більше, відвідайте {link}",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "Будь ласка, не використовуйте адреси гаманців Binance для виведення коштів. Внутрішні транзакції (включаючи зняття коштів з Tornado.cash) в даний час не підтримуються на біржі Binance. Якщо у вас виникли проблеми з отриманням коштів, вам слід звернутися в службу підтримки Binance.",
|
||||
"deposit": "Депозит",
|
||||
"depositButton": "Внести",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"closeNotification": "关闭通知",
|
||||
"indexNotification": "Tornado Cash 现在由社区维护,有关更多信息,请访问 {link}",
|
||||
"indexNotificationLinkText": "https://t.me/TornadoCashOfficialDAO",
|
||||
"indexNotificationLinkText": "tornadocash.social",
|
||||
"binanceInternalTxsNotification": "请不要使用Binance钱包地址进行提款。Binance交易所目前不支持内部交易(包括Tornado.cash提款)。如果您有资金未收到的问题,您应该联系Binance支持。",
|
||||
"deposit": "存款",
|
||||
"depositButton": "存款",
|
||||
@ -151,7 +151,7 @@
|
||||
"nullifierHash": "无效符",
|
||||
"verified": "已验证",
|
||||
"generatePdfReport": "生成 PDF 报告",
|
||||
"compliancePrintWarning": "这本来源证明报告仅供参考的。 你应该使用Tornado的来源证明工具来确认报告 (https://tornadocash.eth.limo/compliance) 的有效性,或者与可以算出和验证此处包含信息的任何其他密码学软件 (\"Tornado来源证明工具\") 一起使用。 报告中发现的信息与上述工具提供的信息之间存在任何差异,表明报告中的信息是不正确的{newline} 来源证明报告按 \"原样,\" 提供,不提供任何明示或暗示担保,包括但不限于对适销性,用途的适用性和非侵权专利的担保。 无论是出于合同要求、侵权或其他原因,由本来源证明报告引起与相关的任何索赔,损害或其他责任,Tornado.cash的作者概不负责。",
|
||||
"compliancePrintWarning": "这本来源证明报告仅供参考的。 你应该使用Tornado的来源证明工具来确认报告 (https://tornado.ws/compliance) 的有效性,或者与可以算出和验证此处包含信息的任何其他密码学软件 (\"Tornado来源证明工具\") 一起使用。 报告中发现的信息与上述工具提供的信息之间存在任何差异,表明报告中的信息是不正确的{newline} 来源证明报告按 \"原样,\" 提供,不提供任何明示或暗示担保,包括但不限于对适销性,用途的适用性和非侵权专利的担保。 无论是出于合同要求、侵权或其他原因,由本来源证明报告引起与相关的任何索赔,损害或其他责任,Tornado.cash的作者概不负责。",
|
||||
"relayRequestFailed": "中继者 {relayerName} 无法使用,请选择其他中继者。",
|
||||
"selectProvider": "请选择钱包",
|
||||
"walletDoesNotSupported": "此钱包不受支持",
|
||||
@ -364,7 +364,7 @@
|
||||
"rpcDesc": "更改您的以太坊RPC",
|
||||
"connectWeb3": "连接 Web3",
|
||||
"logout": "登出",
|
||||
"changeRpc": "更改RPC"
|
||||
"changeRpc": "更改PRC"
|
||||
},
|
||||
"setup": {
|
||||
"decrypt": "请在 Web3 钱包中确认解密请求。",
|
||||
|
||||
295
networkConfig.js
295
networkConfig.js
@ -1,5 +1,5 @@
|
||||
export const blockSyncInterval = 10000
|
||||
export const enabledChains = ['1', '10', '56', '100', '137', '42161', '43114', '11155111']
|
||||
export const enabledChains = ['1', '5', '10', '56', '100', '137', '42161', '43114']
|
||||
export default {
|
||||
netId1: {
|
||||
rpcCallRetryAttempt: 15,
|
||||
@ -21,29 +21,21 @@ export default {
|
||||
networkName: 'Ethereum Mainnet',
|
||||
deployedBlock: 9116966,
|
||||
rpcUrls: {
|
||||
tornadoRPC: {
|
||||
name: 'Tornado RPC',
|
||||
url: 'https://tornadocash-rpc.com/mainnet'
|
||||
},
|
||||
chainnodes: {
|
||||
name: 'Chainnodes RPC',
|
||||
url: 'https://mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
mevblockerRPC: {
|
||||
name: 'mevblockerRPC',
|
||||
name: 'MevblockerRPC',
|
||||
url: 'https://rpc.mevblocker.io'
|
||||
},
|
||||
poktRPC: {
|
||||
name: 'poktRPC',
|
||||
url: 'https://eth-pokt.nodies.app'
|
||||
},
|
||||
secureRPC: {
|
||||
name: 'secureRPC',
|
||||
url: 'https://api.securerpc.com/v1'
|
||||
},
|
||||
flashbotRPC: {
|
||||
name: 'flashbotRPC',
|
||||
url: 'https://rpc.flashbots.net'
|
||||
},
|
||||
blockpiRPC: {
|
||||
name: 'blockpiRPC',
|
||||
url: 'https://ethereum.blockpi.network/v1/rpc/public'
|
||||
},
|
||||
publicRPC: {
|
||||
name: 'publicRPC',
|
||||
url: 'https://ethereum-rpc.publicnode.com'
|
||||
oneRPC: {
|
||||
name: '1RPC',
|
||||
url: 'https://1rpc.io/eth'
|
||||
}
|
||||
},
|
||||
multicall: '0xeefba1e63905ef1d7acba5a8513c70307c1ce441',
|
||||
@ -86,7 +78,6 @@ export default {
|
||||
decimals: 8,
|
||||
gasLimit: '425000'
|
||||
},
|
||||
|
||||
usdc: {
|
||||
instanceAddress: {
|
||||
'100': '0xd96f2B1c14Db8458374d9Aca76E26c3D18364307',
|
||||
@ -107,7 +98,6 @@ export default {
|
||||
decimals: 6,
|
||||
gasLimit: '100000'
|
||||
},
|
||||
|
||||
wbtc: {
|
||||
instanceAddress: {
|
||||
'0.1': '0x178169B423a011fff22B9e3F3abeA13414dDD0F1',
|
||||
@ -155,25 +145,17 @@ export default {
|
||||
multicall: '0x41263cba59eb80dc200f3e2544eda4ed6a90e76c',
|
||||
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
|
||||
rpcUrls: {
|
||||
bnbRPC: {
|
||||
name: 'bnbRPC',
|
||||
url: 'https://bsc-dataseed.bnbchain.org'
|
||||
tornadoRPC: {
|
||||
name: 'Tornado RPC',
|
||||
url: 'https://tornadocash-rpc.com/bsc'
|
||||
},
|
||||
defibitRPC: {
|
||||
name: 'defibitRPC',
|
||||
url: 'https://bsc-dataseed1.defibit.io'
|
||||
chainnodes: {
|
||||
name: 'Chainnodes RPC',
|
||||
url: 'https://bsc-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
ninicoinRPC: {
|
||||
name: 'ninicoinRPC',
|
||||
url: 'https://bsc-dataseed1.ninicoin.io'
|
||||
},
|
||||
publicRPC: {
|
||||
name: 'publicRPC',
|
||||
url: 'https://bsc-rpc.publicnode.com'
|
||||
},
|
||||
poktRPC: {
|
||||
name: 'poktRPC',
|
||||
url: 'https://bsc-pokt.nodies.app'
|
||||
oneRPC: {
|
||||
name: '1RPC',
|
||||
url: 'https://1rpc.io/bnb'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
@ -218,25 +200,13 @@ export default {
|
||||
multicall: '0x11ce4B23bD875D7F5C6a31084f55fDe1e9A87507',
|
||||
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
|
||||
rpcUrls: {
|
||||
quiknodeRpc: {
|
||||
name: 'quiknodeRpc',
|
||||
url: 'https://rpc-mainnet.matic.quiknode.pro'
|
||||
chainnodes: {
|
||||
name: 'Chainnodes RPC',
|
||||
url: 'https://polygon-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
publicRPC: {
|
||||
name: 'publicRPC',
|
||||
url: 'https://polygon-bor-rpc.publicnode.com'
|
||||
},
|
||||
blastapiRPC: {
|
||||
name: 'blastapiRPC',
|
||||
url: 'https://polygon-mainnet.public.blastapi.io'
|
||||
},
|
||||
drpcRPC: {
|
||||
name: 'drpcRPC',
|
||||
url: 'https://polygon.drpc.org'
|
||||
},
|
||||
meowRPC: {
|
||||
name: 'meowRPC',
|
||||
url: 'https://polygon.meowrpc.com'
|
||||
oneRpc: {
|
||||
name: '1RPC',
|
||||
url: 'https://1rpc.io/matic'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
@ -282,17 +252,17 @@ export default {
|
||||
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
|
||||
ovmGasPriceOracleContract: '0x420000000000000000000000000000000000000F',
|
||||
rpcUrls: {
|
||||
blockpiRPC: {
|
||||
name: 'blockpiRPC',
|
||||
url: 'https://optimism.blockpi.network/v1/rpc/public'
|
||||
tornadoRPC: {
|
||||
name: 'Tornado RPC',
|
||||
url: 'https://tornadocash-rpc.com/op'
|
||||
},
|
||||
publicRpc: {
|
||||
name: 'publicRPC',
|
||||
url: 'https://optimism-rpc.publicnode.com'
|
||||
chainnodes: {
|
||||
name: 'Chainnodes RPC',
|
||||
url: 'https://optimism-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
poktRpc: {
|
||||
name: 'Pokt RPC',
|
||||
url: 'https://op-pokt.nodies.app'
|
||||
oneRpc: {
|
||||
name: '1RPC',
|
||||
url: 'https://1rpc.io/op'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
@ -337,25 +307,21 @@ export default {
|
||||
multicall: '0x842eC2c7D803033Edf55E478F461FC547Bc54EB2',
|
||||
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
|
||||
rpcUrls: {
|
||||
tornadoRPC: {
|
||||
name: 'Tornado RPC',
|
||||
url: 'https://tornadocash-rpc.com/arbitrum'
|
||||
},
|
||||
chainnodes: {
|
||||
name: 'Chainnodes RPC',
|
||||
url: 'https://arbitrum-one.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
oneRpc: {
|
||||
name: '1rpc',
|
||||
url: 'https://1rpc.io/arb'
|
||||
},
|
||||
Arbitrum: {
|
||||
name: 'Arbitrum RPC',
|
||||
url: 'https://arb1.arbitrum.io/rpc'
|
||||
},
|
||||
poktRpc: {
|
||||
name: 'Pokt RPC',
|
||||
url: 'https://arb-pokt.nodies.app'
|
||||
},
|
||||
meowRpc: {
|
||||
name: 'meowRpc',
|
||||
url: 'https://arbitrum.meowrpc.com'
|
||||
},
|
||||
publicRpc: {
|
||||
name: 'publicRpc',
|
||||
url: 'https://arbitrum-one-rpc.publicnode.com'
|
||||
},
|
||||
blockpiRpc: {
|
||||
name: 'blockpiRpc',
|
||||
url: 'https://arbitrum.blockpi.network/v1/rpc/public'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
@ -389,9 +355,9 @@ export default {
|
||||
nativeCurrency: 'xdai',
|
||||
currencyName: 'xDAI',
|
||||
explorerUrl: {
|
||||
tx: 'https://gnosisscan.io/tx/',
|
||||
address: 'https://gnosisscan.io/address/',
|
||||
block: 'https://gnosisscan.io/block/'
|
||||
tx: 'https://blockscout.com/xdai/mainnet/tx/',
|
||||
address: 'https://blockscout.com/xdai/mainnet/address/',
|
||||
block: 'https://blockscout.com/xdai/mainnet/block/'
|
||||
},
|
||||
merkleTreeHeight: 20,
|
||||
emptyElement: '21663839004416932945382355908790599225266501822907911457504978515578255421292',
|
||||
@ -400,21 +366,17 @@ export default {
|
||||
multicall: '0xb5b692a88bdfc81ca69dcb1d924f59f0413a602a',
|
||||
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
|
||||
rpcUrls: {
|
||||
gnosisRPC: {
|
||||
name: 'Gnosis RPC',
|
||||
url: 'https://rpc.gnosischain.com'
|
||||
tornadoRPC: {
|
||||
name: 'Tornado RPC',
|
||||
url: 'https://tornadocash-rpc.com/gnosis'
|
||||
},
|
||||
fmRPC: {
|
||||
name: 'fmRPC',
|
||||
url: 'https://rpc.gnosis.gateway.fm'
|
||||
chainnodes: {
|
||||
name: 'Chainnodes RPC',
|
||||
url: 'https://gnosis-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
poktRPC: {
|
||||
name: 'poktRPC',
|
||||
url: 'https://gnosis-pokt.nodies.app'
|
||||
},
|
||||
publicRPC: {
|
||||
name: 'publicRPC',
|
||||
url: 'https://gnosis-rpc.publicnode.com'
|
||||
blockPi: {
|
||||
name: 'BlockPi',
|
||||
url: 'https://gnosis.blockpi.network/v1/rpc/public'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
@ -459,21 +421,17 @@ export default {
|
||||
multicall: '0xe86e3989c74293Acc962156cd3F525c07b6a1B6e',
|
||||
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
|
||||
rpcUrls: {
|
||||
avaxRpc: {
|
||||
publicRpc: {
|
||||
name: 'Avalanche RPC',
|
||||
url: 'https://api.avax.network/ext/bc/C/rpc'
|
||||
},
|
||||
publicnode: {
|
||||
name: 'Publicnode RPC',
|
||||
url: 'https://avalanche-c-chain-rpc.publicnode.com'
|
||||
},
|
||||
meowRPC: {
|
||||
name: 'Meow RPC',
|
||||
url: 'https://avax.meowrpc.com'
|
||||
},
|
||||
drpcRPC: {
|
||||
name: 'drpcRPC',
|
||||
url: 'https://avalanche.drpc.org'
|
||||
oneRPC: {
|
||||
name: 'OneRPC',
|
||||
url: 'https://1rpc.io/avax/c'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
@ -495,80 +453,115 @@ export default {
|
||||
},
|
||||
'tornado-proxy-light.contract.tornadocash.eth': '0x0D5550d52428E7e3175bfc9550207e4ad3859b17'
|
||||
},
|
||||
netId11155111: {
|
||||
netId5: {
|
||||
rpcCallRetryAttempt: 15,
|
||||
gasPrices: {
|
||||
instant: 2,
|
||||
fast: 2,
|
||||
standard: 2,
|
||||
low: 2
|
||||
instant: 80,
|
||||
fast: 50,
|
||||
standard: 25,
|
||||
low: 8
|
||||
},
|
||||
nativeCurrency: 'eth',
|
||||
currencyName: 'ETH',
|
||||
currencyName: 'gETH',
|
||||
explorerUrl: {
|
||||
tx: 'https://sepolia.etherscan.io/tx/',
|
||||
address: 'https://sepolia.etherscan.io/address/',
|
||||
block: 'https://sepolia.etherscan.io/block/'
|
||||
tx: 'https://goerli.etherscan.io/tx/',
|
||||
address: 'https://goerli.etherscan.io/address/',
|
||||
block: 'https://goerli.etherscan.io/block/'
|
||||
},
|
||||
merkleTreeHeight: 20,
|
||||
emptyElement: '21663839004416932945382355908790599225266501822907911457504978515578255421292',
|
||||
networkName: 'Ethereum Sepolia',
|
||||
deployedBlock: 5594395,
|
||||
multicall: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
||||
echoContractAccount: '0xcDD1fc3F5ac2782D83449d3AbE80D6b7B273B0e5',
|
||||
aggregatorContract: '0x4088712AC9fad39ea133cdb9130E465d235e9642',
|
||||
networkName: 'Ethereum Goerli',
|
||||
deployedBlock: 3781595,
|
||||
multicall: '0x77dca2c955b15e9de4dbbcf1246b4b85b651e50e',
|
||||
echoContractAccount: '0x37e6859804b6499d1e4a86d70a5fdd5de6a0ac65',
|
||||
aggregatorContract: '0x8cb1436F64a3c33aD17bb42F94e255c4c0E871b2',
|
||||
rpcUrls: {
|
||||
blastapiRPC: {
|
||||
name: 'blastapiRPC',
|
||||
url: 'https://eth-sepolia.public.blastapi.io'
|
||||
chainnodes: {
|
||||
name: 'Tornado RPC',
|
||||
url: 'https://goerli.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
|
||||
},
|
||||
drpcRPC: {
|
||||
name: 'drpcRPC',
|
||||
url: 'https://sepolia.drpc.org'
|
||||
},
|
||||
tenderlyRPC: {
|
||||
name: 'tenderlyRPC',
|
||||
url: 'https://sepolia.gateway.tenderly.co'
|
||||
},
|
||||
publicRPC: {
|
||||
name: 'publicRPC',
|
||||
url: 'https://ethereum-sepolia-rpc.publicnode.com'
|
||||
gatewayRPC: {
|
||||
name: 'Gateway RPC',
|
||||
url: 'https://rpc.goerli.eth.gateway.fm'
|
||||
}
|
||||
},
|
||||
tokens: {
|
||||
eth: {
|
||||
instanceAddress: {
|
||||
'0.1': '0x8C4A04d872a6C1BE37964A21ba3a138525dFF50b',
|
||||
'1': '0x8cc930096B4Df705A007c4A039BDFA1320Ed2508',
|
||||
'10': '0x8D10d506D29Fc62ABb8A290B99F66dB27Fc43585',
|
||||
'100': '0x44c5C92ed73dB43888210264f0C8b36Fd68D8379'
|
||||
'0.1': '0x6Bf694a291DF3FeC1f7e69701E3ab6c592435Ae7',
|
||||
'1': '0x3aac1cC67c2ec5Db4eA850957b967Ba153aD6279',
|
||||
'10': '0x723B78e67497E85279CB204544566F4dC5d2acA0',
|
||||
'100': '0x0E3A09dDA6B20aFbB34aC7cD4A6881493f3E7bf7'
|
||||
},
|
||||
symbol: 'ETH',
|
||||
decimals: 18
|
||||
},
|
||||
dai: {
|
||||
instanceAddress: {
|
||||
'100': '0x6921fd1a97441dd603a997ED6DDF388658daf754',
|
||||
'1000': '0x50a637770F5d161999420F7d70d888DE47207145',
|
||||
'10000': '0xecD649870407cD43923A816Cc6334a5bdf113621',
|
||||
'100000': '0x73B4BD04bF83206B6e979BE2507098F92EDf4F90'
|
||||
'100': '0x76D85B4C0Fc497EeCc38902397aC608000A06607',
|
||||
'1000': '0xCC84179FFD19A1627E79F8648d09e095252Bc418',
|
||||
'10000': '0xD5d6f8D9e784d0e26222ad3834500801a68D027D',
|
||||
'100000': '0x407CcEeaA7c95d2FE2250Bf9F2c105aA7AAFB512'
|
||||
},
|
||||
tokenAddress: '0xFF34B3d4Aee8ddCd6F9AFFFB6Fe49bD371b8a357',
|
||||
tokenAddress: '0xdc31Ee1784292379Fbb2964b3B9C4124D8F89C60',
|
||||
symbol: 'DAI',
|
||||
decimals: 18,
|
||||
gasLimit: '55000'
|
||||
},
|
||||
cdai: {
|
||||
instanceAddress: {
|
||||
'5000': '0x833481186f16Cece3f1Eeea1a694c42034c3a0dB',
|
||||
'50000': '0xd8D7DE3349ccaA0Fde6298fe6D7b7d0d34586193',
|
||||
'500000': '0x8281Aa6795aDE17C8973e1aedcA380258Bc124F9',
|
||||
'5000000': '0x57b2B8c82F065de8Ef5573f9730fC1449B403C9f'
|
||||
},
|
||||
tokenAddress: '0x822397d9a55d0fefd20F5c4bCaB33C5F65bd28Eb',
|
||||
symbol: 'cDAI',
|
||||
decimals: 8,
|
||||
gasLimit: '425000'
|
||||
},
|
||||
usdc: {
|
||||
instanceAddress: {
|
||||
'100': '0x05E0b5B40B7b66098C2161A5EE11C5740A3A7C45',
|
||||
'1000': '0x23173fE8b96A4Ad8d2E17fB83EA5dcccdCa1Ae52'
|
||||
},
|
||||
tokenAddress: '0xD87Ba7A50B2E7E660f678A895E4B72E7CB4CCd9C',
|
||||
symbol: 'USDC',
|
||||
decimals: 6,
|
||||
gasLimit: '80000'
|
||||
},
|
||||
usdt: {
|
||||
instanceAddress: {
|
||||
'100': '0x538Ab61E8A9fc1b2f93b3dd9011d662d89bE6FE6',
|
||||
'1000': '0x94Be88213a387E992Dd87DE56950a9aef34b9448'
|
||||
},
|
||||
tokenAddress: '0xb7FC2023D96AEa94Ba0254AA5Aeb93141e4aad66',
|
||||
symbol: 'USDT',
|
||||
decimals: 6,
|
||||
gasLimit: '100000'
|
||||
},
|
||||
wbtc: {
|
||||
instanceAddress: {
|
||||
'0.1': '0x242654336ca2205714071898f67E254EB49ACdCe',
|
||||
'1': '0x776198CCF446DFa168347089d7338879273172cF',
|
||||
'10': '0xeDC5d01286f99A066559F60a585406f3878a033e'
|
||||
},
|
||||
tokenAddress: '0xC04B0d3107736C32e19F1c62b2aF67BE61d63a05',
|
||||
symbol: 'WBTC',
|
||||
decimals: 8,
|
||||
gasLimit: '85000'
|
||||
}
|
||||
},
|
||||
ensSubdomainKey: 'sepolia-tornado',
|
||||
ensSubdomainKey: 'goerli-tornado',
|
||||
pollInterval: 15,
|
||||
constants: {
|
||||
GOVERNANCE_BLOCK: 5594395,
|
||||
NOTE_ACCOUNT_BLOCK: 5594395,
|
||||
ENCRYPTED_NOTES_BLOCK: 5594395,
|
||||
GOVERNANCE_BLOCK: 3945171,
|
||||
NOTE_ACCOUNT_BLOCK: 4131375,
|
||||
ENCRYPTED_NOTES_BLOCK: 4131375,
|
||||
MINING_BLOCK_TIME: 15
|
||||
},
|
||||
'torn.contract.tornadocash.eth': '0x3AE6667167C0f44394106E197904519D808323cA',
|
||||
'governance.contract.tornadocash.eth': '0xe5324cD7602eeb387418e594B87aCADee08aeCAD',
|
||||
'tornado-router.contract.tornadocash.eth': '0x1572AFE6949fdF51Cb3E0856216670ae9Ee160Ee'
|
||||
'torn.contract.tornadocash.eth': '0x77777FeDdddFfC19Ff86DB637967013e6C6A116C',
|
||||
'governance.contract.tornadocash.eth': '0x5efda50f22d34F262c29268506C5Fa42cB56A1Ce',
|
||||
'tornado-proxy.contract.tornadocash.eth': '0x454d870a72e29d5e5697f635128d18077bd04c60'
|
||||
}
|
||||
}
|
||||
|
||||
@ -44,7 +44,7 @@ export default {
|
||||
fallback: true
|
||||
},
|
||||
head: {
|
||||
title: 'Tornado Cash Official - Secure, Decentralized, Private protocol',
|
||||
title: 'Tornado.cash',
|
||||
meta: [
|
||||
{ charset: 'utf-8' },
|
||||
{
|
||||
@ -64,24 +64,22 @@ export default {
|
||||
{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content:
|
||||
'A fully decentralized protocol for private transactions on Ethereum, BSC(BNBChain), Optimism, Polygon, Avalanche, Arbitrum, Gnosis networks.'
|
||||
content: 'Non-custodial Ethereum Privacy solution.'
|
||||
},
|
||||
{
|
||||
hid: 'og:title',
|
||||
property: 'og:title',
|
||||
content: 'Tornado Cash Official - Secure, Decentralized, Private protocol'
|
||||
content: 'Tornado.Cash'
|
||||
},
|
||||
{
|
||||
hid: 'og:description',
|
||||
property: 'og:description',
|
||||
content:
|
||||
'A secure, anonymous, decentralized private protocol. Protect your funds with zk-SNARKs privacy tech.'
|
||||
content: 'Non-custodial, trustless, serverless, private transactions on Ethereum network'
|
||||
},
|
||||
{
|
||||
hid: 'og:url',
|
||||
property: 'og:url',
|
||||
content: 'tornadocash.eth.limo'
|
||||
content: 'https://tornado.ws'
|
||||
},
|
||||
{
|
||||
hid: 'og:type',
|
||||
@ -91,13 +89,18 @@ export default {
|
||||
{
|
||||
hid: 'og:image',
|
||||
property: 'og:image',
|
||||
content: 'tornadocash.eth.limo/tw.png'
|
||||
content: 'https://tornado.ws/tw.png'
|
||||
},
|
||||
{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content: 'Non-custodial, trustless, serverless, private transactions on Ethereum network'
|
||||
},
|
||||
{
|
||||
hid: 'keywords',
|
||||
name: 'keywords',
|
||||
content:
|
||||
'Tornado, TornadoCash, Tornado Cash Official, Ethereum, ERC20, dapp, smart contract, secure, anonymous, private, decentralized, metamask, zksnark, zero knowledge'
|
||||
'Tornado, Ethereum, ERC20, dapp, smart contract, decentralized, metamask, zksnark, zero knowledge'
|
||||
}
|
||||
],
|
||||
link: [
|
||||
|
||||
10
package.json
10
package.json
@ -7,19 +7,15 @@
|
||||
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
|
||||
"precommit": "yarn lint",
|
||||
"test": "jest",
|
||||
"fix:vuex": "node ./scripts/vuex.js",
|
||||
"dev": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" nuxt",
|
||||
"dev:lts": "yarn fix:vuex && cross-env NODE_OPTIONS=\"--max_old_space_size=8192 --openssl-legacy-provider\" nuxt",
|
||||
"build": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" nuxt build",
|
||||
"build:lts": "yarn fix:vuex && cross-env NODE_OPTIONS=\"--max_old_space_size=8192 --openssl-legacy-provider\" nuxt build",
|
||||
"dev": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192 --openssl-legacy-provider\" nuxt",
|
||||
"build": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192 --openssl-legacy-provider\" nuxt build",
|
||||
"start": "nuxt start",
|
||||
"update:zip": "node -r esm scripts/updateZip.js",
|
||||
"update:events": "node -r esm scripts/updateEvents.js --network",
|
||||
"update:encrypted": "node -r esm scripts/updateEncryptedEvents.js --network",
|
||||
"update:tree": "node -r esm scripts/updateTree.js --network",
|
||||
"update:copy": "node -r esm scripts/copyFile.js dist/404.html dist/ipfs-404.html",
|
||||
"generate": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" nuxt generate && yarn update:copy",
|
||||
"generate:lts": "yarn fix:vuex && cross-env NODE_OPTIONS=\"--max_old_space_size=8192 --openssl-legacy-provider\" nuxt generate && yarn update:copy",
|
||||
"generate": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192 --openssl-legacy-provider\" nuxt generate && yarn update:copy",
|
||||
"check:sync": "node -r esm scripts/checkEventsSync.js",
|
||||
"ipfsUpload": "node scripts/ipfsUpload.js",
|
||||
"deploy:ipfs": "yarn generate && yarn ipfsUpload"
|
||||
|
||||
@ -24,7 +24,61 @@
|
||||
>
|
||||
<i18n path="trustBanner.trustLess">
|
||||
<template v-slot:link>
|
||||
<a href="https://tornadocash.eth.limo/">{{ $t('trustBanner.link') }}</a>
|
||||
<a href="https://tornado.ws/">{{ $t('trustBanner.link') }}</a>
|
||||
</template>
|
||||
</i18n>
|
||||
</b-notification>
|
||||
|
||||
<b-notification
|
||||
:active="isActiveNotification.first"
|
||||
class="main-notification"
|
||||
type="is-info"
|
||||
icon-pack="icon"
|
||||
has-icon
|
||||
:aria-close-label="$t('closeNotification')"
|
||||
@close="disableNotification({ key: 'first' })"
|
||||
>
|
||||
<i18n path="indexNotification">
|
||||
<template v-slot:link>
|
||||
<a href="https://tornadocash.social" target="_blank" rel="noopener noreferrer">
|
||||
{{ $t('indexNotificationLinkText') }}
|
||||
</a>
|
||||
</template>
|
||||
</i18n>
|
||||
</b-notification>
|
||||
|
||||
<b-notification
|
||||
:active="isActiveNotification.second"
|
||||
class="main-notification"
|
||||
type="is-warning"
|
||||
icon-pack="icon"
|
||||
has-icon
|
||||
:aria-close-label="$t('closeNotification')"
|
||||
@close="disableNotification({ key: 'second' })"
|
||||
>
|
||||
<i18n path="rpcDisclaimer">
|
||||
<template v-slot:linkOne>
|
||||
<a
|
||||
href="https://home.treasury.gov/news/press-releases/jy0916"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{{ $t('rpcDisclaimerLinkOneText') }}
|
||||
</a>
|
||||
</template>
|
||||
<template v-slot:linkTwo>
|
||||
<a href="https://chainlist.org" target="_blank" rel="noopener noreferrer">
|
||||
{{ $t('rpcDisclaimerLinkTwoText') }}
|
||||
</a>
|
||||
</template>
|
||||
<template v-slot:linkThree>
|
||||
<a
|
||||
href="https://docs.tornado.ws/general/guides/post-censorship#RPC"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{{ $t('rpcDisclaimerLinkThreeText') }}
|
||||
</a>
|
||||
</template>
|
||||
</i18n>
|
||||
</b-notification>
|
||||
|
||||
@ -3,7 +3,12 @@ export default ({ store, isHMR, app }, inject) => {
|
||||
inject('isLoadedFromIPFS', main)
|
||||
}
|
||||
function main() {
|
||||
const whiteListedDomains = ['tornadocash.eth.link', 'tornadocash.eth.limo']
|
||||
const whiteListedDomains = [
|
||||
'tornadocash.eth.link',
|
||||
'tornadocash.eth.limo',
|
||||
'tornadocashcommunity.eth.link',
|
||||
'tornadocashcommunity.eth.limo'
|
||||
]
|
||||
|
||||
const IPFS_GATEWAY_REGEXP = /.ipfs./
|
||||
const IPFS_LOCAL_REGEXP = /.ipfs.localhost:/
|
||||
|
||||
@ -23,9 +23,9 @@ function main(store) {
|
||||
window.multipleTabsDetected = true
|
||||
window.onbeforeunload = null
|
||||
window.alert(
|
||||
'Multiple tabs opened. Your page will be closed. Please only use single instance of https://tornadocash.eth.limo/'
|
||||
'Multiple tabs opened. Your page will be closed. Please only use single instance of https://tornado.ws'
|
||||
)
|
||||
window.location = 'https://t.me/TornadoCashOfficialDAO'
|
||||
window.location = 'https://t.me/TornadoOfficial'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1,24 +0,0 @@
|
||||
/**
|
||||
* Manually patch vuex to support Node.js >= 18.x
|
||||
*
|
||||
* See issue https://github.com/vuejs/vuex/issues/2160
|
||||
* https://github.com/vuejs/vuex/commit/397e9fba45c8b4ec0c4a33d2578e34829bd348d7
|
||||
*/
|
||||
const fs = require('fs')
|
||||
|
||||
const pkgJson = JSON.parse(fs.readFileSync('./node_modules/vuex/package.json', { encoding: 'utf8' }))
|
||||
const backupJson = JSON.stringify(pkgJson, null, 2)
|
||||
|
||||
let changes = false
|
||||
|
||||
if (!pkgJson.exports['./*']) {
|
||||
pkgJson.exports['./*'] = './*'
|
||||
|
||||
changes = true
|
||||
}
|
||||
|
||||
|
||||
if (changes) {
|
||||
fs.writeFileSync('./node_modules/vuex/package.backup.json', backupJson + '\n')
|
||||
fs.writeFileSync('./node_modules/vuex/package.json', JSON.stringify(pkgJson, null, 2) + '\n')
|
||||
}
|
||||
@ -14,45 +14,20 @@ const isEmptyArray = (arr) => !Array.isArray(arr) || !arr.length
|
||||
|
||||
const first = 1000
|
||||
|
||||
const APIKEY_URLS = {
|
||||
1: '8b164501e1862078eff5fb9dda136c6c',
|
||||
10: 'd2db349f28c895aa2272421996404c8d',
|
||||
56: '30503850823438e04497429381e416f7',
|
||||
100: 'd2db349f28c895aa2272421996404c8d',
|
||||
137: 'd2db349f28c895aa2272421996404c8d',
|
||||
42161: 'd2db349f28c895aa2272421996404c8d',
|
||||
43114: 'd2db349f28c895aa2272421996404c8d',
|
||||
11155111: 'd2db349f28c895aa2272421996404c8d',
|
||||
88888888: 'c978a2a9a36f30ba63457b707e821e6c'
|
||||
}
|
||||
|
||||
function getApiKey(chainId) {
|
||||
const customApiKey = window.localStorage.getItem('graphApiKey')
|
||||
if (customApiKey) {
|
||||
return customApiKey
|
||||
}
|
||||
return APIKEY_URLS[chainId]
|
||||
}
|
||||
|
||||
const link = ({ getContext }) => {
|
||||
const { chainId } = getContext()
|
||||
return CHAIN_GRAPH_URLS[chainId].replace('{apiKey}', getApiKey(chainId))
|
||||
}
|
||||
|
||||
const registryLink = () => {
|
||||
return CHAIN_GRAPH_URLS[88888888].replace('{apiKey}', getApiKey(88888888))
|
||||
return CHAIN_GRAPH_URLS[chainId]
|
||||
}
|
||||
|
||||
const CHAIN_GRAPH_URLS = {
|
||||
1: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/Ec6fVMDVqXTDQZ3c4jxcyV3zBXqkdgMWfhdtCgtqn7Sh',
|
||||
10: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/GvkbnEVhLD6KArXpEzLFtSKRmspBW29ApKFqR5FjuP2P',
|
||||
56: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/CiwGzefDBZCavXRPnwarnnF8xDDoLw4boBuySomJWYnV',
|
||||
100: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/F1m8vxuGatCBRvP8fPnnWUJ1oK7kfE1DGdRacqoamLjF',
|
||||
137: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/HUMgwMYNrPQpnBJgesFXyy5u6jSiJ6u5nNWQng9ayCmD',
|
||||
42161: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/8x8o6XFAqYZmiPwrJ51UxGTaZLYyW1fFtghvsEy7a1KJ',
|
||||
43114: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/CqUYVKJT9Jsyt7qnGNrf4FJNHw75ZbFGuzaJgqdaFASo',
|
||||
11155111: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/8kJGz92AYUm72wfyUoze1as3E11ynDSTZM8emiRWrRPy',
|
||||
88888888: 'https://gateway.thegraph.com/api/{apiKey}/subgraphs/id/DgKwfAbLfynpiq7fDJy59LDnVnia4Y5nYeRDBYi9qezc'
|
||||
1: 'https://api.thegraph.com/subgraphs/name/tornadocash/mainnet-tornado-subgraph',
|
||||
5: 'https://api.thegraph.com/subgraphs/name/tornadocash/goerli-tornado-subgraph',
|
||||
10: 'https://api.thegraph.com/subgraphs/name/tornadocash/optimism-tornado-subgraph',
|
||||
56: 'https://api.thegraph.com/subgraphs/name/tornadocash/bsc-tornado-subgraph',
|
||||
100: 'https://api.thegraph.com/subgraphs/name/tornadocash/xdai-tornado-subgraph',
|
||||
137: 'https://api.thegraph.com/subgraphs/name/tornadocash/matic-tornado-subgraph',
|
||||
42161: 'https://api.thegraph.com/subgraphs/name/tornadocash/arbitrum-tornado-subgraph',
|
||||
43114: 'https://api.thegraph.com/subgraphs/name/tornadocash/avalanche-tornado-subgraph'
|
||||
}
|
||||
|
||||
const defaultOptions = {
|
||||
@ -70,7 +45,7 @@ const client = new ApolloClient({
|
||||
})
|
||||
|
||||
const registryClient = new ApolloClient({
|
||||
uri: registryLink,
|
||||
uri: 'https://api.thegraph.com/subgraphs/name/tornadocash/tornado-relayer-registry',
|
||||
cache: new InMemoryCache(),
|
||||
credentials: 'omit',
|
||||
defaultOptions
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
static/events/deposits_5_cdai_5000.json.gz
Normal file
0
static/events/deposits_5_cdai_5000.json.gz
Normal file
0
static/events/deposits_5_cdai_50000.json.gz
Normal file
0
static/events/deposits_5_cdai_50000.json.gz
Normal file
0
static/events/deposits_5_cdai_500000.json.gz
Normal file
0
static/events/deposits_5_cdai_500000.json.gz
Normal file
0
static/events/deposits_5_cdai_5000000.json.gz
Normal file
0
static/events/deposits_5_cdai_5000000.json.gz
Normal file
0
static/events/deposits_5_dai_100.json.gz
Normal file
0
static/events/deposits_5_dai_100.json.gz
Normal file
0
static/events/deposits_5_dai_1000.json.gz
Normal file
0
static/events/deposits_5_dai_1000.json.gz
Normal file
0
static/events/deposits_5_dai_10000.json.gz
Normal file
0
static/events/deposits_5_dai_10000.json.gz
Normal file
0
static/events/deposits_5_dai_100000.json.gz
Normal file
0
static/events/deposits_5_dai_100000.json.gz
Normal file
BIN
static/events/deposits_5_eth_0.1.json.gz
Normal file
BIN
static/events/deposits_5_eth_0.1.json.gz
Normal file
Binary file not shown.
BIN
static/events/deposits_5_eth_1.json.gz
Normal file
BIN
static/events/deposits_5_eth_1.json.gz
Normal file
Binary file not shown.
BIN
static/events/deposits_5_eth_10.json.gz
Normal file
BIN
static/events/deposits_5_eth_10.json.gz
Normal file
Binary file not shown.
BIN
static/events/deposits_5_eth_100.json.gz
Normal file
BIN
static/events/deposits_5_eth_100.json.gz
Normal file
Binary file not shown.
0
static/events/deposits_5_usdc_100.json.gz
Normal file
0
static/events/deposits_5_usdc_100.json.gz
Normal file
0
static/events/deposits_5_usdc_1000.json.gz
Normal file
0
static/events/deposits_5_usdc_1000.json.gz
Normal file
0
static/events/deposits_5_usdt_100.json.gz
Normal file
0
static/events/deposits_5_usdt_100.json.gz
Normal file
0
static/events/deposits_5_usdt_1000.json.gz
Normal file
0
static/events/deposits_5_usdt_1000.json.gz
Normal file
0
static/events/deposits_5_wbtc_0.1.json.gz
Normal file
0
static/events/deposits_5_wbtc_0.1.json.gz
Normal file
0
static/events/deposits_5_wbtc_1.json.gz
Normal file
0
static/events/deposits_5_wbtc_1.json.gz
Normal file
0
static/events/deposits_5_wbtc_10.json.gz
Normal file
0
static/events/deposits_5_wbtc_10.json.gz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
static/events/encrypted_notes_5.json.gz
Normal file
BIN
static/events/encrypted_notes_5.json.gz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user