Compare commits
5 Commits
50d917a33e
...
9210330208
Author | SHA1 | Date | |
---|---|---|---|
9210330208 | |||
fb0a5131f4 | |||
d16449bcf8 | |||
d9ae37ebb2 | |||
7db929cc8c |
@ -1,181 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"inputs": [
|
|
||||||
{ "internalType": "contract MultiWrapper", "name": "_multiWrapper", "type": "address" },
|
|
||||||
{ "internalType": "contract IOracle[]", "name": "existingOracles", "type": "address[]" },
|
|
||||||
{ "internalType": "enum OffchainOracle.OracleType[]", "name": "oracleTypes", "type": "uint8[]" },
|
|
||||||
{ "internalType": "contract IERC20[]", "name": "existingConnectors", "type": "address[]" },
|
|
||||||
{ "internalType": "contract IERC20", "name": "wBase", "type": "address" }
|
|
||||||
],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "constructor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": false, "internalType": "contract IERC20", "name": "connector", "type": "address" }
|
|
||||||
],
|
|
||||||
"name": "ConnectorAdded",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": false, "internalType": "contract IERC20", "name": "connector", "type": "address" }
|
|
||||||
],
|
|
||||||
"name": "ConnectorRemoved",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": false, "internalType": "contract MultiWrapper", "name": "multiWrapper", "type": "address" }
|
|
||||||
],
|
|
||||||
"name": "MultiWrapperUpdated",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": false, "internalType": "contract IOracle", "name": "oracle", "type": "address" },
|
|
||||||
{
|
|
||||||
"indexed": false,
|
|
||||||
"internalType": "enum OffchainOracle.OracleType",
|
|
||||||
"name": "oracleType",
|
|
||||||
"type": "uint8"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"name": "OracleAdded",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": false, "internalType": "contract IOracle", "name": "oracle", "type": "address" },
|
|
||||||
{
|
|
||||||
"indexed": false,
|
|
||||||
"internalType": "enum OffchainOracle.OracleType",
|
|
||||||
"name": "oracleType",
|
|
||||||
"type": "uint8"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"name": "OracleRemoved",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
|
|
||||||
{ "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
|
|
||||||
],
|
|
||||||
"name": "OwnershipTransferred",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "contract IERC20", "name": "connector", "type": "address" }],
|
|
||||||
"name": "addConnector",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [
|
|
||||||
{ "internalType": "contract IOracle", "name": "oracle", "type": "address" },
|
|
||||||
{ "internalType": "enum OffchainOracle.OracleType", "name": "oracleKind", "type": "uint8" }
|
|
||||||
],
|
|
||||||
"name": "addOracle",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "connectors",
|
|
||||||
"outputs": [{ "internalType": "contract IERC20[]", "name": "allConnectors", "type": "address[]" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [
|
|
||||||
{ "internalType": "contract IERC20", "name": "srcToken", "type": "address" },
|
|
||||||
{ "internalType": "contract IERC20", "name": "dstToken", "type": "address" },
|
|
||||||
{ "internalType": "bool", "name": "useWrappers", "type": "bool" }
|
|
||||||
],
|
|
||||||
"name": "getRate",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "weightedRate", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [
|
|
||||||
{ "internalType": "contract IERC20", "name": "srcToken", "type": "address" },
|
|
||||||
{ "internalType": "bool", "name": "useSrcWrappers", "type": "bool" }
|
|
||||||
],
|
|
||||||
"name": "getRateToEth",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "weightedRate", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "multiWrapper",
|
|
||||||
"outputs": [{ "internalType": "contract MultiWrapper", "name": "", "type": "address" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "oracles",
|
|
||||||
"outputs": [
|
|
||||||
{ "internalType": "contract IOracle[]", "name": "allOracles", "type": "address[]" },
|
|
||||||
{ "internalType": "enum OffchainOracle.OracleType[]", "name": "oracleTypes", "type": "uint8[]" }
|
|
||||||
],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "owner",
|
|
||||||
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "contract IERC20", "name": "connector", "type": "address" }],
|
|
||||||
"name": "removeConnector",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [
|
|
||||||
{ "internalType": "contract IOracle", "name": "oracle", "type": "address" },
|
|
||||||
{ "internalType": "enum OffchainOracle.OracleType", "name": "oracleKind", "type": "uint8" }
|
|
||||||
],
|
|
||||||
"name": "removeOracle",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "renounceOwnership",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "contract MultiWrapper", "name": "_multiWrapper", "type": "address" }],
|
|
||||||
"name": "setMultiWrapper",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
|
|
||||||
"name": "transferOwnership",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
}
|
|
||||||
]
|
|
@ -1,151 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "address", "name": "_owner", "type": "address" }],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "constructor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [{ "indexed": false, "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"name": "DecimalsUpdated",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [{ "indexed": false, "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"name": "GasPriceUpdated",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [{ "indexed": false, "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"name": "L1BaseFeeUpdated",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [{ "indexed": false, "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"name": "OverheadUpdated",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [
|
|
||||||
{ "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
|
|
||||||
{ "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
|
|
||||||
],
|
|
||||||
"name": "OwnershipTransferred",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"anonymous": false,
|
|
||||||
"inputs": [{ "indexed": false, "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"name": "ScalarUpdated",
|
|
||||||
"type": "event"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "decimals",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "gasPrice",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "bytes", "name": "_data", "type": "bytes" }],
|
|
||||||
"name": "getL1Fee",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "bytes", "name": "_data", "type": "bytes" }],
|
|
||||||
"name": "getL1GasUsed",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "l1BaseFee",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "overhead",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "owner",
|
|
||||||
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "renounceOwnership",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [],
|
|
||||||
"name": "scalar",
|
|
||||||
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
||||||
"stateMutability": "view",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "uint256", "name": "_decimals", "type": "uint256" }],
|
|
||||||
"name": "setDecimals",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "uint256", "name": "_gasPrice", "type": "uint256" }],
|
|
||||||
"name": "setGasPrice",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "uint256", "name": "_baseFee", "type": "uint256" }],
|
|
||||||
"name": "setL1BaseFee",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "uint256", "name": "_overhead", "type": "uint256" }],
|
|
||||||
"name": "setOverhead",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "uint256", "name": "_scalar", "type": "uint256" }],
|
|
||||||
"name": "setScalar",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
|
|
||||||
"name": "transferOwnership",
|
|
||||||
"outputs": [],
|
|
||||||
"stateMutability": "nonpayable",
|
|
||||||
"type": "function"
|
|
||||||
}
|
|
||||||
]
|
|
@ -192,7 +192,7 @@ export default {
|
|||||||
...mapState('relayer', ['isLoadingRelayers']),
|
...mapState('relayer', ['isLoadingRelayers']),
|
||||||
...mapGetters('txHashKeeper', ['txExplorerUrl']),
|
...mapGetters('txHashKeeper', ['txExplorerUrl']),
|
||||||
...mapGetters('application', ['isNotEnoughTokens', 'selectedStatisticCurrency']),
|
...mapGetters('application', ['isNotEnoughTokens', 'selectedStatisticCurrency']),
|
||||||
...mapGetters('metamask', ['networkConfig', 'netId', 'isLoggedIn', 'nativeCurrency']),
|
...mapGetters('metamask', ['networkConfig', 'netId', 'isLoggedIn']),
|
||||||
notEnoughDeposits() {
|
notEnoughDeposits() {
|
||||||
if (this.depositsPast < 5) {
|
if (this.depositsPast < 5) {
|
||||||
return true
|
return true
|
||||||
@ -337,9 +337,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.$store.dispatch('application/setAndUpdateStatistic', { currency, amount: Number(amount) })
|
this.$store.dispatch('application/setAndUpdateStatistic', { currency, amount: Number(amount) })
|
||||||
if (currency !== this.nativeCurrency) {
|
this.$store.dispatch('fees/calculateWithdrawalFeeViaRelayer', {})
|
||||||
this.$store.dispatch('application/setDefaultEthToReceive', { currency })
|
|
||||||
}
|
|
||||||
this.$store.dispatch('loading/updateProgress', { progress: -1 })
|
this.$store.dispatch('loading/updateProgress', { progress: -1 })
|
||||||
this.depositsPast = Number(depositsPast) <= 0 ? 0 : depositsPast
|
this.depositsPast = Number(depositsPast) <= 0 ? 0 : depositsPast
|
||||||
this.depositTxHash = txHash
|
this.depositTxHash = txHash
|
||||||
|
@ -18,7 +18,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div v-if="withdrawType === 'relayer'" class="withdraw-data-item">
|
<div v-if="withdrawType === 'relayer'" class="withdraw-data-item">
|
||||||
{{ $t('networkFee') }}
|
{{ $t('networkFee') }}
|
||||||
<span data-test="label_network_fee">{{ toDecimals(networkFee, 18, 6) }} {{ networkCurrency }}</span>
|
<span data-test="label_network_fee"
|
||||||
|
>{{ toDecimals(withdrawalNetworkFee, 18, 6) }} {{ networkCurrency }}</span
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="withdrawType === 'relayer'" class="withdraw-data-item">
|
<div v-if="withdrawType === 'relayer'" class="withdraw-data-item">
|
||||||
{{ $t('relayerFee') }}
|
{{ $t('relayerFee') }}
|
||||||
@ -69,13 +71,13 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('application', ['selectedStatistic']),
|
...mapState('application', ['selectedStatistic']),
|
||||||
|
...mapState('fees', ['withdrawalNetworkFee', 'withdrawalFeeViaRelayer']),
|
||||||
...mapGetters('metamask', ['networkConfig', 'nativeCurrency']),
|
...mapGetters('metamask', ['networkConfig', 'nativeCurrency']),
|
||||||
...mapGetters('metamask', {
|
...mapGetters('metamask', {
|
||||||
networkCurrency: 'currency'
|
networkCurrency: 'currency'
|
||||||
}),
|
}),
|
||||||
...mapGetters('gasPrices', ['gasPriceInGwei']),
|
...mapGetters('fees', ['gasPriceInGwei']),
|
||||||
...mapGetters('token', ['toDecimals', 'fromDecimals']),
|
...mapGetters('token', ['toDecimals', 'fromDecimals']),
|
||||||
...mapGetters('application', ['networkFee']),
|
|
||||||
...mapGetters('price', ['tokenRate']),
|
...mapGetters('price', ['tokenRate']),
|
||||||
relayerFee() {
|
relayerFee() {
|
||||||
const { amount } = this.selectedStatistic
|
const { amount } = this.selectedStatistic
|
||||||
@ -91,7 +93,7 @@ export default {
|
|||||||
const tornadoServiceFee = this.relayerFee
|
const tornadoServiceFee = this.relayerFee
|
||||||
const { currency } = this.selectedStatistic
|
const { currency } = this.selectedStatistic
|
||||||
const { decimals } = this.networkConfig.tokens[currency]
|
const { decimals } = this.networkConfig.tokens[currency]
|
||||||
const ethFee = this.networkFee
|
const ethFee = this.withdrawalNetworkFee
|
||||||
if (currency === this.nativeCurrency) {
|
if (currency === this.nativeCurrency) {
|
||||||
return ethFee.add(tornadoServiceFee)
|
return ethFee.add(tornadoServiceFee)
|
||||||
}
|
}
|
||||||
@ -117,17 +119,12 @@ export default {
|
|||||||
return fromWei(this.ethToReceive)
|
return fromWei(this.ethToReceive)
|
||||||
},
|
},
|
||||||
total() {
|
total() {
|
||||||
const { amount, currency } = this.selectedStatistic
|
const { amount } = this.selectedStatistic
|
||||||
let total = toBN(this.fromDecimals(amount.toString()))
|
let total = toBN(this.fromDecimals(amount.toString()))
|
||||||
|
|
||||||
if (this.withdrawType === 'relayer') {
|
if (this.withdrawType === 'relayer') {
|
||||||
const relayerFee = this.totalRelayerFee
|
const relayerFee = this.withdrawalFeeViaRelayer
|
||||||
|
total = total.sub(relayerFee)
|
||||||
if (currency === this.nativeCurrency) {
|
|
||||||
total = total.sub(relayerFee)
|
|
||||||
} else {
|
|
||||||
total = total.sub(relayerFee).sub(this.ethToReceiveInToken)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.toDecimals(total, null, 6)
|
return this.toDecimals(total, null, 6)
|
||||||
|
@ -65,7 +65,7 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
this.checkRecoveryKey()
|
this.checkRecoveryKey()
|
||||||
this.newNotify()
|
this.newNotify()
|
||||||
this.$store.dispatch('gasPrices/setDefault')
|
this.$store.dispatch('fees/setDefaultGasPrice')
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$preventMultitabs()
|
this.$preventMultitabs()
|
||||||
@ -80,7 +80,7 @@ export default {
|
|||||||
await this.selectRpc({ netId: 1, action: this.preselectRpc })
|
await this.selectRpc({ netId: 1, action: this.preselectRpc })
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$store.dispatch('gasPrices/fetchGasPrice')
|
this.$store.dispatch('fees/fetchGasPrice')
|
||||||
this.$store.dispatch('price/fetchTokenPrice', {}, { root: true })
|
this.$store.dispatch('price/fetchTokenPrice', {}, { root: true })
|
||||||
try {
|
try {
|
||||||
this.$store.dispatch('application/loadAllNotesData')
|
this.$store.dispatch('application/loadAllNotesData')
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tornadocash-classic-ui",
|
"name": "tornadocash-classic-ui",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"description": "Private ethereum transactions",
|
"description": "Private ethereum transactions",
|
||||||
"author": "Tornado Cash Team",
|
"author": "Tornado Cash Team",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -23,8 +23,8 @@
|
|||||||
"@apollo/client": "^3.3.20",
|
"@apollo/client": "^3.3.20",
|
||||||
"@metamask/onboarding": "^1.0.0",
|
"@metamask/onboarding": "^1.0.0",
|
||||||
"@nuxtjs/moment": "^1.6.0",
|
"@nuxtjs/moment": "^1.6.0",
|
||||||
"@tornado/gas-price-oracle": "^0.5.3",
|
|
||||||
"@tornado/snarkjs": "0.1.20-p2",
|
"@tornado/snarkjs": "0.1.20-p2",
|
||||||
|
"@tornado/tornado-oracles": "1.3.2",
|
||||||
"@tornado/websnark": "0.0.4-p1",
|
"@tornado/websnark": "0.0.4-p1",
|
||||||
"@walletconnect/web3-provider": "1.7.8",
|
"@walletconnect/web3-provider": "1.7.8",
|
||||||
"ajv": "^6.10.2",
|
"ajv": "^6.10.2",
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
static/events/deposits_1_cdai_5000.json.gz
Normal file
0
static/events/deposits_1_cdai_5000.json.gz
Normal file
0
static/events/deposits_1_cdai_50000.json.gz
Normal file
0
static/events/deposits_1_cdai_50000.json.gz
Normal file
0
static/events/deposits_1_cdai_500000.json.gz
Normal file
0
static/events/deposits_1_cdai_500000.json.gz
Normal file
0
static/events/deposits_1_cdai_5000000.json.gz
Normal file
0
static/events/deposits_1_cdai_5000000.json.gz
Normal file
0
static/events/deposits_1_dai_100.json.gz
Normal file
0
static/events/deposits_1_dai_100.json.gz
Normal file
0
static/events/deposits_1_dai_1000.json.gz
Normal file
0
static/events/deposits_1_dai_1000.json.gz
Normal file
0
static/events/deposits_1_dai_10000.json.gz
Normal file
0
static/events/deposits_1_dai_10000.json.gz
Normal file
0
static/events/deposits_1_dai_100000.json.gz
Normal file
0
static/events/deposits_1_dai_100000.json.gz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
static/events/deposits_1_usdc_100.json.gz
Normal file
0
static/events/deposits_1_usdc_100.json.gz
Normal file
0
static/events/deposits_1_usdc_1000.json.gz
Normal file
0
static/events/deposits_1_usdc_1000.json.gz
Normal file
0
static/events/deposits_1_usdt_100.json.gz
Normal file
0
static/events/deposits_1_usdt_100.json.gz
Normal file
0
static/events/deposits_1_usdt_1000.json.gz
Normal file
0
static/events/deposits_1_usdt_1000.json.gz
Normal file
0
static/events/deposits_1_wbtc_0.1.json.gz
Normal file
0
static/events/deposits_1_wbtc_0.1.json.gz
Normal file
0
static/events/deposits_1_wbtc_1.json.gz
Normal file
0
static/events/deposits_1_wbtc_1.json.gz
Normal file
0
static/events/deposits_1_wbtc_10.json.gz
Normal file
0
static/events/deposits_1_wbtc_10.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.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
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/withdrawals_1_cdai_5000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_5000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_50000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_50000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_500000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_500000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_5000000.json.gz
Normal file
0
static/events/withdrawals_1_cdai_5000000.json.gz
Normal file
0
static/events/withdrawals_1_dai_100.json.gz
Normal file
0
static/events/withdrawals_1_dai_100.json.gz
Normal file
0
static/events/withdrawals_1_dai_1000.json.gz
Normal file
0
static/events/withdrawals_1_dai_1000.json.gz
Normal file
0
static/events/withdrawals_1_dai_10000.json.gz
Normal file
0
static/events/withdrawals_1_dai_10000.json.gz
Normal file
0
static/events/withdrawals_1_dai_100000.json.gz
Normal file
0
static/events/withdrawals_1_dai_100000.json.gz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
static/events/withdrawals_1_usdc_100.json.gz
Normal file
0
static/events/withdrawals_1_usdc_100.json.gz
Normal file
0
static/events/withdrawals_1_usdc_1000.json.gz
Normal file
0
static/events/withdrawals_1_usdc_1000.json.gz
Normal file
0
static/events/withdrawals_1_usdt_100.json.gz
Normal file
0
static/events/withdrawals_1_usdt_100.json.gz
Normal file
0
static/events/withdrawals_1_usdt_1000.json.gz
Normal file
0
static/events/withdrawals_1_usdt_1000.json.gz
Normal file
0
static/events/withdrawals_1_wbtc_0.1.json.gz
Normal file
0
static/events/withdrawals_1_wbtc_0.1.json.gz
Normal file
0
static/events/withdrawals_1_wbtc_1.json.gz
Normal file
0
static/events/withdrawals_1_wbtc_1.json.gz
Normal file
0
static/events/withdrawals_1_wbtc_10.json.gz
Normal file
0
static/events/withdrawals_1_wbtc_10.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.
0
static/events/withdrawals_5_cdai_5000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_5000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_50000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_50000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_500000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_500000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_5000000.json.gz
Normal file
0
static/events/withdrawals_5_cdai_5000000.json.gz
Normal file
0
static/events/withdrawals_5_dai_100.json.gz
Normal file
0
static/events/withdrawals_5_dai_100.json.gz
Normal file
0
static/events/withdrawals_5_dai_1000.json.gz
Normal file
0
static/events/withdrawals_5_dai_1000.json.gz
Normal file
0
static/events/withdrawals_5_dai_10000.json.gz
Normal file
0
static/events/withdrawals_5_dai_10000.json.gz
Normal file
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user