diff --git a/components/settings/SettingsModalBox.vue b/components/settings/SettingsModalBox.vue
index f920044..4925c8e 100644
--- a/components/settings/SettingsModalBox.vue
+++ b/components/settings/SettingsModalBox.vue
@@ -4,7 +4,10 @@
{{ $t('withdrawalSettings') }}
-
+
+
+
+
@@ -46,7 +49,11 @@ export default {
computed: {
...mapState('application', {
defaultWithdrawType: 'withdrawType'
- })
+ }),
+ ...mapState('relayer', ['isLoadingRelayers', 'validRelayers']),
+ isRelayersAvailable() {
+ return !this.isLoadingRelayers && this.validRelayers.length > 0;
+ }
},
created() {
this.withdrawType = this.defaultWithdrawType
diff --git a/components/withdraw/Withdraw.vue b/components/withdraw/Withdraw.vue
index da90dde..d99b25d 100644
--- a/components/withdraw/Withdraw.vue
+++ b/components/withdraw/Withdraw.vue
@@ -200,7 +200,7 @@ export default {
return false
},
shouldSettingsShow() {
- return !this.hasErrorNote && !this.error.message
+ return !this.isLoading && !this.error.type && !this.hasErrorNote
},
hasErrorNote() {
const note = this.withdrawNote.split('-')[4]
diff --git a/networkConfig.js b/networkConfig.js
index 74bd170..2fbd980 100644
--- a/networkConfig.js
+++ b/networkConfig.js
@@ -29,9 +29,9 @@ export default {
name: 'MevblockerRPC',
url: 'https://rpc.mevblocker.io'
},
- llamaRPC: {
- name: 'llamarpc',
- url: 'https://eth.llamarpc.com'
+ oneRPC: {
+ name: '1RPC',
+ url: 'https://1rpc.io/eth'
}
},
multicall: '0xeefba1e63905ef1d7acba5a8513c70307c1ce441',
@@ -401,17 +401,17 @@ export default {
multicall: '0xe86e3989c74293Acc962156cd3F525c07b6a1B6e',
echoContractAccount: '0xa75BF2815618872f155b7C4B0C81bF990f5245E4',
rpcUrls: {
- publicRpc1: {
+ publicRpc: {
name: 'Avalanche RPC',
- url: 'https://endpoints.omniatech.io/v1/avax/mainnet/public'
+ url: 'https://api.avax.network/ext/bc/C/rpc'
},
meowRPC: {
name: 'Meow RPC',
url: 'https://avax.meowrpc.com'
},
- communityRPC: {
- name: 'Tornado RPC',
- url: 'https://avalanche-rpc.tornado.ws/ext/bc/C/rpc'
+ oneRPC: {
+ name: 'OneRPC',
+ url: 'https://1rpc.io/avax/c'
}
},
tokens: {
@@ -459,6 +459,10 @@ export default {
chainnodes: {
name: 'Tornado RPC',
url: 'https://goerli.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607'
+ },
+ gatewayRPC: {
+ name: 'Gateway RPC',
+ url: 'https://rpc.goerli.eth.gateway.fm'
}
},
tokens: {
diff --git a/scripts/updateZip.js b/scripts/updateZip.js
index f05b91e..ee0b2ec 100644
--- a/scripts/updateZip.js
+++ b/scripts/updateZip.js
@@ -17,21 +17,22 @@ function updateEncrypted(netId) {
async function updateCommon(netId) {
const { nativeCurrency, tokens } = networkConfig[`netId${netId}`]
- console.log(Object.keys(tokens[nativeCurrency].instanceAddress))
+ for (const type of EVENTS) {
+ for (const [tokenName, tokenInfo] of Object.entries(tokens)) {
+ console.log(`${tokenInfo.symbol}: ${Object.keys(tokenInfo.instanceAddress)}`)
+ for (const instance of Object.keys(tokenInfo.instanceAddress)) {
+ console.warn('instance', instance)
- for await (const type of EVENTS) {
- for await (const instance of Object.keys(tokens[nativeCurrency].instanceAddress)) {
- console.warn('instance', instance)
+ const filename = `${type.toLowerCase()}s_${netId}_${tokenName}_${instance}.json`
- const filename = `${type.toLowerCase()}s_${netId}_${nativeCurrency}_${instance}.json`
+ const isSaved = save(`${EVENTS_PATH}${filename}`)
- const isSaved = save(`${EVENTS_PATH}${filename}`)
-
- if (isSaved) {
- try {
- testCommon(netId, type, filename)
- } catch (err) {
- console.error(err.message)
+ if (isSaved) {
+ try {
+ testCommon(netId, type, filename)
+ } catch (err) {
+ console.error(err.message)
+ }
}
}
}
diff --git a/static/events/deposits_137_matic_100.json.gz b/static/events/deposits_137_matic_100.json.gz
index 8635de8..1c92307 100644
Binary files a/static/events/deposits_137_matic_100.json.gz and b/static/events/deposits_137_matic_100.json.gz differ
diff --git a/static/events/deposits_137_matic_1000.json.gz b/static/events/deposits_137_matic_1000.json.gz
index e522569..bb8d6a1 100644
Binary files a/static/events/deposits_137_matic_1000.json.gz and b/static/events/deposits_137_matic_1000.json.gz differ
diff --git a/static/events/deposits_137_matic_10000.json.gz b/static/events/deposits_137_matic_10000.json.gz
index 3cbc794..7dfea5f 100644
Binary files a/static/events/deposits_137_matic_10000.json.gz and b/static/events/deposits_137_matic_10000.json.gz differ
diff --git a/static/events/deposits_1_cdai_5000.json.gz b/static/events/deposits_1_cdai_5000.json.gz
index e69de29..6efd992 100644
Binary files a/static/events/deposits_1_cdai_5000.json.gz and b/static/events/deposits_1_cdai_5000.json.gz differ
diff --git a/static/events/deposits_1_cdai_50000.json.gz b/static/events/deposits_1_cdai_50000.json.gz
index e69de29..75907e3 100644
Binary files a/static/events/deposits_1_cdai_50000.json.gz and b/static/events/deposits_1_cdai_50000.json.gz differ
diff --git a/static/events/deposits_1_cdai_500000.json.gz b/static/events/deposits_1_cdai_500000.json.gz
index e69de29..e5c7620 100644
Binary files a/static/events/deposits_1_cdai_500000.json.gz and b/static/events/deposits_1_cdai_500000.json.gz differ
diff --git a/static/events/deposits_1_cdai_5000000.json.gz b/static/events/deposits_1_cdai_5000000.json.gz
index e69de29..5c8705b 100644
Binary files a/static/events/deposits_1_cdai_5000000.json.gz and b/static/events/deposits_1_cdai_5000000.json.gz differ
diff --git a/static/events/deposits_1_dai_100.json.gz b/static/events/deposits_1_dai_100.json.gz
index e69de29..25bfec2 100644
Binary files a/static/events/deposits_1_dai_100.json.gz and b/static/events/deposits_1_dai_100.json.gz differ
diff --git a/static/events/deposits_1_dai_1000.json.gz b/static/events/deposits_1_dai_1000.json.gz
index e69de29..efd7c30 100644
Binary files a/static/events/deposits_1_dai_1000.json.gz and b/static/events/deposits_1_dai_1000.json.gz differ
diff --git a/static/events/deposits_1_dai_10000.json.gz b/static/events/deposits_1_dai_10000.json.gz
index e69de29..d0dbfea 100644
Binary files a/static/events/deposits_1_dai_10000.json.gz and b/static/events/deposits_1_dai_10000.json.gz differ
diff --git a/static/events/deposits_1_dai_100000.json.gz b/static/events/deposits_1_dai_100000.json.gz
index e69de29..f70cfd4 100644
Binary files a/static/events/deposits_1_dai_100000.json.gz and b/static/events/deposits_1_dai_100000.json.gz differ
diff --git a/static/events/deposits_1_eth_0.1.json.gz b/static/events/deposits_1_eth_0.1.json.gz
index 9dbcd78..bf4f924 100644
Binary files a/static/events/deposits_1_eth_0.1.json.gz and b/static/events/deposits_1_eth_0.1.json.gz differ
diff --git a/static/events/deposits_1_eth_1.json.gz b/static/events/deposits_1_eth_1.json.gz
index 7549b74..00ef0de 100644
Binary files a/static/events/deposits_1_eth_1.json.gz and b/static/events/deposits_1_eth_1.json.gz differ
diff --git a/static/events/deposits_1_eth_10.json.gz b/static/events/deposits_1_eth_10.json.gz
index 5a91751..83716fe 100644
Binary files a/static/events/deposits_1_eth_10.json.gz and b/static/events/deposits_1_eth_10.json.gz differ
diff --git a/static/events/deposits_1_eth_100.json.gz b/static/events/deposits_1_eth_100.json.gz
index d4a0229..213236c 100644
Binary files a/static/events/deposits_1_eth_100.json.gz and b/static/events/deposits_1_eth_100.json.gz differ
diff --git a/static/events/deposits_1_usdc_100.json.gz b/static/events/deposits_1_usdc_100.json.gz
index e69de29..9305a88 100644
Binary files a/static/events/deposits_1_usdc_100.json.gz and b/static/events/deposits_1_usdc_100.json.gz differ
diff --git a/static/events/deposits_1_usdc_1000.json.gz b/static/events/deposits_1_usdc_1000.json.gz
index e69de29..d95cf62 100644
Binary files a/static/events/deposits_1_usdc_1000.json.gz and b/static/events/deposits_1_usdc_1000.json.gz differ
diff --git a/static/events/deposits_1_usdt_100.json.gz b/static/events/deposits_1_usdt_100.json.gz
index e69de29..09d4831 100644
Binary files a/static/events/deposits_1_usdt_100.json.gz and b/static/events/deposits_1_usdt_100.json.gz differ
diff --git a/static/events/deposits_1_usdt_1000.json.gz b/static/events/deposits_1_usdt_1000.json.gz
index e69de29..4c7a6c9 100644
Binary files a/static/events/deposits_1_usdt_1000.json.gz and b/static/events/deposits_1_usdt_1000.json.gz differ
diff --git a/static/events/deposits_1_wbtc_0.1.json.gz b/static/events/deposits_1_wbtc_0.1.json.gz
index e69de29..8ec63b1 100644
Binary files a/static/events/deposits_1_wbtc_0.1.json.gz and b/static/events/deposits_1_wbtc_0.1.json.gz differ
diff --git a/static/events/deposits_1_wbtc_1.json.gz b/static/events/deposits_1_wbtc_1.json.gz
index e69de29..35829e0 100644
Binary files a/static/events/deposits_1_wbtc_1.json.gz and b/static/events/deposits_1_wbtc_1.json.gz differ
diff --git a/static/events/deposits_1_wbtc_10.json.gz b/static/events/deposits_1_wbtc_10.json.gz
index e69de29..0396764 100644
Binary files a/static/events/deposits_1_wbtc_10.json.gz and b/static/events/deposits_1_wbtc_10.json.gz differ
diff --git a/static/events/deposits_42161_eth_0.1.json.gz b/static/events/deposits_42161_eth_0.1.json.gz
index 347de23..7e2b671 100644
Binary files a/static/events/deposits_42161_eth_0.1.json.gz and b/static/events/deposits_42161_eth_0.1.json.gz differ
diff --git a/static/events/deposits_42161_eth_1.json.gz b/static/events/deposits_42161_eth_1.json.gz
index 221bf73..ceaf71c 100644
Binary files a/static/events/deposits_42161_eth_1.json.gz and b/static/events/deposits_42161_eth_1.json.gz differ
diff --git a/static/events/deposits_42161_eth_10.json.gz b/static/events/deposits_42161_eth_10.json.gz
index 7fa8ade..5cf71bd 100644
Binary files a/static/events/deposits_42161_eth_10.json.gz and b/static/events/deposits_42161_eth_10.json.gz differ
diff --git a/static/events/deposits_56_bnb_0.1.json.gz b/static/events/deposits_56_bnb_0.1.json.gz
index ea7916d..8c22485 100644
Binary files a/static/events/deposits_56_bnb_0.1.json.gz and b/static/events/deposits_56_bnb_0.1.json.gz differ
diff --git a/static/events/deposits_56_bnb_1.json.gz b/static/events/deposits_56_bnb_1.json.gz
index 3225b5a..87f79d7 100644
Binary files a/static/events/deposits_56_bnb_1.json.gz and b/static/events/deposits_56_bnb_1.json.gz differ
diff --git a/static/events/deposits_56_bnb_10.json.gz b/static/events/deposits_56_bnb_10.json.gz
index a600b12..3a9605f 100644
Binary files a/static/events/deposits_56_bnb_10.json.gz and b/static/events/deposits_56_bnb_10.json.gz differ
diff --git a/static/events/deposits_56_bnb_100.json.gz b/static/events/deposits_56_bnb_100.json.gz
index b337a09..85cf071 100644
Binary files a/static/events/deposits_56_bnb_100.json.gz and b/static/events/deposits_56_bnb_100.json.gz differ
diff --git a/static/events/withdrawals_137_matic_100.json.gz b/static/events/withdrawals_137_matic_100.json.gz
index 0d5798c..f9de7a7 100644
Binary files a/static/events/withdrawals_137_matic_100.json.gz and b/static/events/withdrawals_137_matic_100.json.gz differ
diff --git a/static/events/withdrawals_137_matic_1000.json.gz b/static/events/withdrawals_137_matic_1000.json.gz
index 174542a..de1a41c 100644
Binary files a/static/events/withdrawals_137_matic_1000.json.gz and b/static/events/withdrawals_137_matic_1000.json.gz differ
diff --git a/static/events/withdrawals_137_matic_10000.json.gz b/static/events/withdrawals_137_matic_10000.json.gz
index ca1181f..ea286a0 100644
Binary files a/static/events/withdrawals_137_matic_10000.json.gz and b/static/events/withdrawals_137_matic_10000.json.gz differ
diff --git a/static/events/withdrawals_1_cdai_5000.json.gz b/static/events/withdrawals_1_cdai_5000.json.gz
index e69de29..6d336c6 100644
Binary files a/static/events/withdrawals_1_cdai_5000.json.gz and b/static/events/withdrawals_1_cdai_5000.json.gz differ
diff --git a/static/events/withdrawals_1_cdai_50000.json.gz b/static/events/withdrawals_1_cdai_50000.json.gz
index e69de29..82c621c 100644
Binary files a/static/events/withdrawals_1_cdai_50000.json.gz and b/static/events/withdrawals_1_cdai_50000.json.gz differ
diff --git a/static/events/withdrawals_1_cdai_500000.json.gz b/static/events/withdrawals_1_cdai_500000.json.gz
index e69de29..16f601f 100644
Binary files a/static/events/withdrawals_1_cdai_500000.json.gz and b/static/events/withdrawals_1_cdai_500000.json.gz differ
diff --git a/static/events/withdrawals_1_cdai_5000000.json.gz b/static/events/withdrawals_1_cdai_5000000.json.gz
index e69de29..c4fd82e 100644
Binary files a/static/events/withdrawals_1_cdai_5000000.json.gz and b/static/events/withdrawals_1_cdai_5000000.json.gz differ
diff --git a/static/events/withdrawals_1_dai_100.json.gz b/static/events/withdrawals_1_dai_100.json.gz
index e69de29..e980837 100644
Binary files a/static/events/withdrawals_1_dai_100.json.gz and b/static/events/withdrawals_1_dai_100.json.gz differ
diff --git a/static/events/withdrawals_1_dai_1000.json.gz b/static/events/withdrawals_1_dai_1000.json.gz
index e69de29..541e367 100644
Binary files a/static/events/withdrawals_1_dai_1000.json.gz and b/static/events/withdrawals_1_dai_1000.json.gz differ
diff --git a/static/events/withdrawals_1_dai_10000.json.gz b/static/events/withdrawals_1_dai_10000.json.gz
index e69de29..41a57e5 100644
Binary files a/static/events/withdrawals_1_dai_10000.json.gz and b/static/events/withdrawals_1_dai_10000.json.gz differ
diff --git a/static/events/withdrawals_1_dai_100000.json.gz b/static/events/withdrawals_1_dai_100000.json.gz
index e69de29..af0cba0 100644
Binary files a/static/events/withdrawals_1_dai_100000.json.gz and b/static/events/withdrawals_1_dai_100000.json.gz differ
diff --git a/static/events/withdrawals_1_eth_0.1.json.gz b/static/events/withdrawals_1_eth_0.1.json.gz
index 3e5f1c0..f53be62 100644
Binary files a/static/events/withdrawals_1_eth_0.1.json.gz and b/static/events/withdrawals_1_eth_0.1.json.gz differ
diff --git a/static/events/withdrawals_1_eth_1.json.gz b/static/events/withdrawals_1_eth_1.json.gz
index af5842d..a6e018e 100644
Binary files a/static/events/withdrawals_1_eth_1.json.gz and b/static/events/withdrawals_1_eth_1.json.gz differ
diff --git a/static/events/withdrawals_1_eth_10.json.gz b/static/events/withdrawals_1_eth_10.json.gz
index 44c626a..7652b02 100644
Binary files a/static/events/withdrawals_1_eth_10.json.gz and b/static/events/withdrawals_1_eth_10.json.gz differ
diff --git a/static/events/withdrawals_1_eth_100.json.gz b/static/events/withdrawals_1_eth_100.json.gz
index e0d6cd6..30346d2 100644
Binary files a/static/events/withdrawals_1_eth_100.json.gz and b/static/events/withdrawals_1_eth_100.json.gz differ
diff --git a/static/events/withdrawals_1_usdc_100.json.gz b/static/events/withdrawals_1_usdc_100.json.gz
index e69de29..2d89657 100644
Binary files a/static/events/withdrawals_1_usdc_100.json.gz and b/static/events/withdrawals_1_usdc_100.json.gz differ
diff --git a/static/events/withdrawals_1_usdc_1000.json.gz b/static/events/withdrawals_1_usdc_1000.json.gz
index e69de29..5b3c29d 100644
Binary files a/static/events/withdrawals_1_usdc_1000.json.gz and b/static/events/withdrawals_1_usdc_1000.json.gz differ
diff --git a/static/events/withdrawals_1_usdt_100.json.gz b/static/events/withdrawals_1_usdt_100.json.gz
index e69de29..ab121e5 100644
Binary files a/static/events/withdrawals_1_usdt_100.json.gz and b/static/events/withdrawals_1_usdt_100.json.gz differ
diff --git a/static/events/withdrawals_1_usdt_1000.json.gz b/static/events/withdrawals_1_usdt_1000.json.gz
index e69de29..16c8999 100644
Binary files a/static/events/withdrawals_1_usdt_1000.json.gz and b/static/events/withdrawals_1_usdt_1000.json.gz differ
diff --git a/static/events/withdrawals_1_wbtc_0.1.json.gz b/static/events/withdrawals_1_wbtc_0.1.json.gz
index e69de29..9e14dd8 100644
Binary files a/static/events/withdrawals_1_wbtc_0.1.json.gz and b/static/events/withdrawals_1_wbtc_0.1.json.gz differ
diff --git a/static/events/withdrawals_1_wbtc_1.json.gz b/static/events/withdrawals_1_wbtc_1.json.gz
index e69de29..32c7188 100644
Binary files a/static/events/withdrawals_1_wbtc_1.json.gz and b/static/events/withdrawals_1_wbtc_1.json.gz differ
diff --git a/static/events/withdrawals_1_wbtc_10.json.gz b/static/events/withdrawals_1_wbtc_10.json.gz
index e69de29..bf70ee7 100644
Binary files a/static/events/withdrawals_1_wbtc_10.json.gz and b/static/events/withdrawals_1_wbtc_10.json.gz differ
diff --git a/static/events/withdrawals_42161_eth_0.1.json.gz b/static/events/withdrawals_42161_eth_0.1.json.gz
index ec8e527..b0b518a 100644
Binary files a/static/events/withdrawals_42161_eth_0.1.json.gz and b/static/events/withdrawals_42161_eth_0.1.json.gz differ
diff --git a/static/events/withdrawals_42161_eth_1.json.gz b/static/events/withdrawals_42161_eth_1.json.gz
index 35108ff..a013774 100644
Binary files a/static/events/withdrawals_42161_eth_1.json.gz and b/static/events/withdrawals_42161_eth_1.json.gz differ
diff --git a/static/events/withdrawals_42161_eth_10.json.gz b/static/events/withdrawals_42161_eth_10.json.gz
index c3fc631..a559534 100644
Binary files a/static/events/withdrawals_42161_eth_10.json.gz and b/static/events/withdrawals_42161_eth_10.json.gz differ
diff --git a/static/events/withdrawals_56_bnb_0.1.json.gz b/static/events/withdrawals_56_bnb_0.1.json.gz
index e05bf49..2fd58bb 100644
Binary files a/static/events/withdrawals_56_bnb_0.1.json.gz and b/static/events/withdrawals_56_bnb_0.1.json.gz differ
diff --git a/static/events/withdrawals_56_bnb_1.json.gz b/static/events/withdrawals_56_bnb_1.json.gz
index 8319816..11b35e7 100644
Binary files a/static/events/withdrawals_56_bnb_1.json.gz and b/static/events/withdrawals_56_bnb_1.json.gz differ
diff --git a/static/events/withdrawals_56_bnb_10.json.gz b/static/events/withdrawals_56_bnb_10.json.gz
index ba79e43..9fa8968 100644
Binary files a/static/events/withdrawals_56_bnb_10.json.gz and b/static/events/withdrawals_56_bnb_10.json.gz differ
diff --git a/static/events/withdrawals_56_bnb_100.json.gz b/static/events/withdrawals_56_bnb_100.json.gz
index f469bf7..acf1c22 100644
Binary files a/static/events/withdrawals_56_bnb_100.json.gz and b/static/events/withdrawals_56_bnb_100.json.gz differ
diff --git a/static/trees/deposits_1_eth_0.1_bloom.json.gz b/static/trees/deposits_1_eth_0.1_bloom.json.gz
index 8794dd0..0714c0f 100644
Binary files a/static/trees/deposits_1_eth_0.1_bloom.json.gz and b/static/trees/deposits_1_eth_0.1_bloom.json.gz differ
diff --git a/static/trees/deposits_1_eth_0.1_slice1.json.gz b/static/trees/deposits_1_eth_0.1_slice1.json.gz
index 87bf8dc..f0eb577 100644
Binary files a/static/trees/deposits_1_eth_0.1_slice1.json.gz and b/static/trees/deposits_1_eth_0.1_slice1.json.gz differ
diff --git a/static/trees/deposits_1_eth_0.1_slice2.json.gz b/static/trees/deposits_1_eth_0.1_slice2.json.gz
index 2520cbc..189174d 100644
Binary files a/static/trees/deposits_1_eth_0.1_slice2.json.gz and b/static/trees/deposits_1_eth_0.1_slice2.json.gz differ
diff --git a/static/trees/deposits_1_eth_0.1_slice3.json.gz b/static/trees/deposits_1_eth_0.1_slice3.json.gz
index acfcba1..6f7c44f 100644
Binary files a/static/trees/deposits_1_eth_0.1_slice3.json.gz and b/static/trees/deposits_1_eth_0.1_slice3.json.gz differ
diff --git a/static/trees/deposits_1_eth_0.1_slice4.json.gz b/static/trees/deposits_1_eth_0.1_slice4.json.gz
index 233af83..03b1a43 100644
Binary files a/static/trees/deposits_1_eth_0.1_slice4.json.gz and b/static/trees/deposits_1_eth_0.1_slice4.json.gz differ
diff --git a/static/trees/deposits_1_eth_100_bloom.json.gz b/static/trees/deposits_1_eth_100_bloom.json.gz
index ad32316..cfed015 100644
Binary files a/static/trees/deposits_1_eth_100_bloom.json.gz and b/static/trees/deposits_1_eth_100_bloom.json.gz differ
diff --git a/static/trees/deposits_1_eth_100_slice1.json.gz b/static/trees/deposits_1_eth_100_slice1.json.gz
index d184b0e..1df6822 100644
Binary files a/static/trees/deposits_1_eth_100_slice1.json.gz and b/static/trees/deposits_1_eth_100_slice1.json.gz differ
diff --git a/static/trees/deposits_1_eth_100_slice2.json.gz b/static/trees/deposits_1_eth_100_slice2.json.gz
index f864046..f1132a9 100644
Binary files a/static/trees/deposits_1_eth_100_slice2.json.gz and b/static/trees/deposits_1_eth_100_slice2.json.gz differ
diff --git a/static/trees/deposits_1_eth_100_slice3.json.gz b/static/trees/deposits_1_eth_100_slice3.json.gz
index 31e6de9..e3faf78 100644
Binary files a/static/trees/deposits_1_eth_100_slice3.json.gz and b/static/trees/deposits_1_eth_100_slice3.json.gz differ
diff --git a/static/trees/deposits_1_eth_100_slice4.json.gz b/static/trees/deposits_1_eth_100_slice4.json.gz
index 1c9f4fe..bdfee14 100644
Binary files a/static/trees/deposits_1_eth_100_slice4.json.gz and b/static/trees/deposits_1_eth_100_slice4.json.gz differ
diff --git a/static/trees/deposits_1_eth_10_bloom.json.gz b/static/trees/deposits_1_eth_10_bloom.json.gz
index 1abe1b5..6cebf00 100644
Binary files a/static/trees/deposits_1_eth_10_bloom.json.gz and b/static/trees/deposits_1_eth_10_bloom.json.gz differ
diff --git a/static/trees/deposits_1_eth_10_slice1.json.gz b/static/trees/deposits_1_eth_10_slice1.json.gz
index 9371793..11802be 100644
Binary files a/static/trees/deposits_1_eth_10_slice1.json.gz and b/static/trees/deposits_1_eth_10_slice1.json.gz differ
diff --git a/static/trees/deposits_1_eth_10_slice2.json.gz b/static/trees/deposits_1_eth_10_slice2.json.gz
index 01b9023..2faacc5 100644
Binary files a/static/trees/deposits_1_eth_10_slice2.json.gz and b/static/trees/deposits_1_eth_10_slice2.json.gz differ
diff --git a/static/trees/deposits_1_eth_10_slice3.json.gz b/static/trees/deposits_1_eth_10_slice3.json.gz
index b1ec7f6..ad2c22f 100644
Binary files a/static/trees/deposits_1_eth_10_slice3.json.gz and b/static/trees/deposits_1_eth_10_slice3.json.gz differ
diff --git a/static/trees/deposits_1_eth_10_slice4.json.gz b/static/trees/deposits_1_eth_10_slice4.json.gz
index 7a7db98..bfa38a4 100644
Binary files a/static/trees/deposits_1_eth_10_slice4.json.gz and b/static/trees/deposits_1_eth_10_slice4.json.gz differ
diff --git a/static/trees/deposits_1_eth_1_bloom.json.gz b/static/trees/deposits_1_eth_1_bloom.json.gz
index 02b1ed9..82b647d 100644
Binary files a/static/trees/deposits_1_eth_1_bloom.json.gz and b/static/trees/deposits_1_eth_1_bloom.json.gz differ
diff --git a/static/trees/deposits_1_eth_1_slice1.json.gz b/static/trees/deposits_1_eth_1_slice1.json.gz
index 247e63c..9fad765 100644
Binary files a/static/trees/deposits_1_eth_1_slice1.json.gz and b/static/trees/deposits_1_eth_1_slice1.json.gz differ
diff --git a/static/trees/deposits_1_eth_1_slice2.json.gz b/static/trees/deposits_1_eth_1_slice2.json.gz
index d549d60..e5efa8a 100644
Binary files a/static/trees/deposits_1_eth_1_slice2.json.gz and b/static/trees/deposits_1_eth_1_slice2.json.gz differ
diff --git a/static/trees/deposits_1_eth_1_slice3.json.gz b/static/trees/deposits_1_eth_1_slice3.json.gz
index 77439b9..7bb80ed 100644
Binary files a/static/trees/deposits_1_eth_1_slice3.json.gz and b/static/trees/deposits_1_eth_1_slice3.json.gz differ
diff --git a/static/trees/deposits_1_eth_1_slice4.json.gz b/static/trees/deposits_1_eth_1_slice4.json.gz
index 38680c3..a833314 100644
Binary files a/static/trees/deposits_1_eth_1_slice4.json.gz and b/static/trees/deposits_1_eth_1_slice4.json.gz differ
diff --git a/static/trees/deposits_42161_eth_0.1_bloom.json.gz b/static/trees/deposits_42161_eth_0.1_bloom.json.gz
index b827869..b1ebc05 100644
Binary files a/static/trees/deposits_42161_eth_0.1_bloom.json.gz and b/static/trees/deposits_42161_eth_0.1_bloom.json.gz differ
diff --git a/static/trees/deposits_42161_eth_0.1_slice1.json.gz b/static/trees/deposits_42161_eth_0.1_slice1.json.gz
index c96a67a..30a63a8 100644
Binary files a/static/trees/deposits_42161_eth_0.1_slice1.json.gz and b/static/trees/deposits_42161_eth_0.1_slice1.json.gz differ
diff --git a/static/trees/deposits_42161_eth_0.1_slice2.json.gz b/static/trees/deposits_42161_eth_0.1_slice2.json.gz
index fea2a4e..9f1524e 100644
Binary files a/static/trees/deposits_42161_eth_0.1_slice2.json.gz and b/static/trees/deposits_42161_eth_0.1_slice2.json.gz differ
diff --git a/static/trees/deposits_42161_eth_0.1_slice3.json.gz b/static/trees/deposits_42161_eth_0.1_slice3.json.gz
index b62dadb..fbe5deb 100644
Binary files a/static/trees/deposits_42161_eth_0.1_slice3.json.gz and b/static/trees/deposits_42161_eth_0.1_slice3.json.gz differ
diff --git a/static/trees/deposits_42161_eth_0.1_slice4.json.gz b/static/trees/deposits_42161_eth_0.1_slice4.json.gz
index 975768c..dfde1a4 100644
Binary files a/static/trees/deposits_42161_eth_0.1_slice4.json.gz and b/static/trees/deposits_42161_eth_0.1_slice4.json.gz differ
diff --git a/static/trees/deposits_42161_eth_10_bloom.json.gz b/static/trees/deposits_42161_eth_10_bloom.json.gz
index b449c61..1eed52c 100644
Binary files a/static/trees/deposits_42161_eth_10_bloom.json.gz and b/static/trees/deposits_42161_eth_10_bloom.json.gz differ
diff --git a/static/trees/deposits_42161_eth_10_slice1.json.gz b/static/trees/deposits_42161_eth_10_slice1.json.gz
index 3860bb2..d57720a 100644
Binary files a/static/trees/deposits_42161_eth_10_slice1.json.gz and b/static/trees/deposits_42161_eth_10_slice1.json.gz differ
diff --git a/static/trees/deposits_42161_eth_10_slice2.json.gz b/static/trees/deposits_42161_eth_10_slice2.json.gz
index 7cfd4ac..ce64b2a 100644
Binary files a/static/trees/deposits_42161_eth_10_slice2.json.gz and b/static/trees/deposits_42161_eth_10_slice2.json.gz differ
diff --git a/static/trees/deposits_42161_eth_10_slice3.json.gz b/static/trees/deposits_42161_eth_10_slice3.json.gz
index 119e90b..c3934e9 100644
Binary files a/static/trees/deposits_42161_eth_10_slice3.json.gz and b/static/trees/deposits_42161_eth_10_slice3.json.gz differ
diff --git a/static/trees/deposits_42161_eth_10_slice4.json.gz b/static/trees/deposits_42161_eth_10_slice4.json.gz
index 11e7c76..359ea7d 100644
Binary files a/static/trees/deposits_42161_eth_10_slice4.json.gz and b/static/trees/deposits_42161_eth_10_slice4.json.gz differ
diff --git a/static/trees/deposits_42161_eth_1_bloom.json.gz b/static/trees/deposits_42161_eth_1_bloom.json.gz
index e036a7f..af02f80 100644
Binary files a/static/trees/deposits_42161_eth_1_bloom.json.gz and b/static/trees/deposits_42161_eth_1_bloom.json.gz differ
diff --git a/static/trees/deposits_42161_eth_1_slice1.json.gz b/static/trees/deposits_42161_eth_1_slice1.json.gz
index cf9994c..0289401 100644
Binary files a/static/trees/deposits_42161_eth_1_slice1.json.gz and b/static/trees/deposits_42161_eth_1_slice1.json.gz differ
diff --git a/static/trees/deposits_42161_eth_1_slice2.json.gz b/static/trees/deposits_42161_eth_1_slice2.json.gz
index 54a9204..47d1cff 100644
Binary files a/static/trees/deposits_42161_eth_1_slice2.json.gz and b/static/trees/deposits_42161_eth_1_slice2.json.gz differ
diff --git a/static/trees/deposits_42161_eth_1_slice3.json.gz b/static/trees/deposits_42161_eth_1_slice3.json.gz
index a654f42..cff8a32 100644
Binary files a/static/trees/deposits_42161_eth_1_slice3.json.gz and b/static/trees/deposits_42161_eth_1_slice3.json.gz differ
diff --git a/static/trees/deposits_42161_eth_1_slice4.json.gz b/static/trees/deposits_42161_eth_1_slice4.json.gz
index eb86499..b46d2f8 100644
Binary files a/static/trees/deposits_42161_eth_1_slice4.json.gz and b/static/trees/deposits_42161_eth_1_slice4.json.gz differ
diff --git a/static/trees/deposits_56_bnb_0.1_bloom.json.gz b/static/trees/deposits_56_bnb_0.1_bloom.json.gz
index bcade11..7942b32 100644
Binary files a/static/trees/deposits_56_bnb_0.1_bloom.json.gz and b/static/trees/deposits_56_bnb_0.1_bloom.json.gz differ
diff --git a/static/trees/deposits_56_bnb_0.1_slice1.json.gz b/static/trees/deposits_56_bnb_0.1_slice1.json.gz
index 19fb9ac..cba2fe4 100644
Binary files a/static/trees/deposits_56_bnb_0.1_slice1.json.gz and b/static/trees/deposits_56_bnb_0.1_slice1.json.gz differ
diff --git a/static/trees/deposits_56_bnb_0.1_slice2.json.gz b/static/trees/deposits_56_bnb_0.1_slice2.json.gz
index 6c9deb3..a8bc36b 100644
Binary files a/static/trees/deposits_56_bnb_0.1_slice2.json.gz and b/static/trees/deposits_56_bnb_0.1_slice2.json.gz differ
diff --git a/static/trees/deposits_56_bnb_0.1_slice3.json.gz b/static/trees/deposits_56_bnb_0.1_slice3.json.gz
index af4a958..f0306c3 100644
Binary files a/static/trees/deposits_56_bnb_0.1_slice3.json.gz and b/static/trees/deposits_56_bnb_0.1_slice3.json.gz differ
diff --git a/static/trees/deposits_56_bnb_0.1_slice4.json.gz b/static/trees/deposits_56_bnb_0.1_slice4.json.gz
index 2ba723a..822dbab 100644
Binary files a/static/trees/deposits_56_bnb_0.1_slice4.json.gz and b/static/trees/deposits_56_bnb_0.1_slice4.json.gz differ
diff --git a/static/trees/deposits_56_bnb_100_bloom.json.gz b/static/trees/deposits_56_bnb_100_bloom.json.gz
index dbbb20b..56031bb 100644
Binary files a/static/trees/deposits_56_bnb_100_bloom.json.gz and b/static/trees/deposits_56_bnb_100_bloom.json.gz differ
diff --git a/static/trees/deposits_56_bnb_100_slice1.json.gz b/static/trees/deposits_56_bnb_100_slice1.json.gz
index e954001..0a02814 100644
Binary files a/static/trees/deposits_56_bnb_100_slice1.json.gz and b/static/trees/deposits_56_bnb_100_slice1.json.gz differ
diff --git a/static/trees/deposits_56_bnb_100_slice2.json.gz b/static/trees/deposits_56_bnb_100_slice2.json.gz
index 148f485..99d4794 100644
Binary files a/static/trees/deposits_56_bnb_100_slice2.json.gz and b/static/trees/deposits_56_bnb_100_slice2.json.gz differ
diff --git a/static/trees/deposits_56_bnb_100_slice3.json.gz b/static/trees/deposits_56_bnb_100_slice3.json.gz
index b61ae0d..9843d68 100644
Binary files a/static/trees/deposits_56_bnb_100_slice3.json.gz and b/static/trees/deposits_56_bnb_100_slice3.json.gz differ
diff --git a/static/trees/deposits_56_bnb_100_slice4.json.gz b/static/trees/deposits_56_bnb_100_slice4.json.gz
index 91d70d6..9278c92 100644
Binary files a/static/trees/deposits_56_bnb_100_slice4.json.gz and b/static/trees/deposits_56_bnb_100_slice4.json.gz differ
diff --git a/static/trees/deposits_56_bnb_10_bloom.json.gz b/static/trees/deposits_56_bnb_10_bloom.json.gz
index b6cd74c..2a8271b 100644
Binary files a/static/trees/deposits_56_bnb_10_bloom.json.gz and b/static/trees/deposits_56_bnb_10_bloom.json.gz differ
diff --git a/static/trees/deposits_56_bnb_10_slice1.json.gz b/static/trees/deposits_56_bnb_10_slice1.json.gz
index de04b71..e88ec1b 100644
Binary files a/static/trees/deposits_56_bnb_10_slice1.json.gz and b/static/trees/deposits_56_bnb_10_slice1.json.gz differ
diff --git a/static/trees/deposits_56_bnb_10_slice2.json.gz b/static/trees/deposits_56_bnb_10_slice2.json.gz
index 8bd65c2..0b79a1f 100644
Binary files a/static/trees/deposits_56_bnb_10_slice2.json.gz and b/static/trees/deposits_56_bnb_10_slice2.json.gz differ
diff --git a/static/trees/deposits_56_bnb_10_slice3.json.gz b/static/trees/deposits_56_bnb_10_slice3.json.gz
index ee67268..d5d21b9 100644
Binary files a/static/trees/deposits_56_bnb_10_slice3.json.gz and b/static/trees/deposits_56_bnb_10_slice3.json.gz differ
diff --git a/static/trees/deposits_56_bnb_10_slice4.json.gz b/static/trees/deposits_56_bnb_10_slice4.json.gz
index 175fd21..6ff29ac 100644
Binary files a/static/trees/deposits_56_bnb_10_slice4.json.gz and b/static/trees/deposits_56_bnb_10_slice4.json.gz differ
diff --git a/static/trees/deposits_56_bnb_1_bloom.json.gz b/static/trees/deposits_56_bnb_1_bloom.json.gz
index 0612b9d..7f9d000 100644
Binary files a/static/trees/deposits_56_bnb_1_bloom.json.gz and b/static/trees/deposits_56_bnb_1_bloom.json.gz differ
diff --git a/static/trees/deposits_56_bnb_1_slice1.json.gz b/static/trees/deposits_56_bnb_1_slice1.json.gz
index 19bf30b..03a6cec 100644
Binary files a/static/trees/deposits_56_bnb_1_slice1.json.gz and b/static/trees/deposits_56_bnb_1_slice1.json.gz differ
diff --git a/static/trees/deposits_56_bnb_1_slice2.json.gz b/static/trees/deposits_56_bnb_1_slice2.json.gz
index 218743a..17e8c9a 100644
Binary files a/static/trees/deposits_56_bnb_1_slice2.json.gz and b/static/trees/deposits_56_bnb_1_slice2.json.gz differ
diff --git a/static/trees/deposits_56_bnb_1_slice3.json.gz b/static/trees/deposits_56_bnb_1_slice3.json.gz
index a50a25b..d686255 100644
Binary files a/static/trees/deposits_56_bnb_1_slice3.json.gz and b/static/trees/deposits_56_bnb_1_slice3.json.gz differ
diff --git a/static/trees/deposits_56_bnb_1_slice4.json.gz b/static/trees/deposits_56_bnb_1_slice4.json.gz
index cd818f6..807389c 100644
Binary files a/static/trees/deposits_56_bnb_1_slice4.json.gz and b/static/trees/deposits_56_bnb_1_slice4.json.gz differ
diff --git a/store/governance/gov.js b/store/governance/gov.js
index 0bf4f81..3a47156 100644
--- a/store/governance/gov.js
+++ b/store/governance/gov.js
@@ -37,7 +37,7 @@ const state = () => {
EXECUTION_DELAY: 172800,
EXECUTION_EXPIRATION: 259200,
PROPOSAL_THRESHOLD: '1000000000000000000000',
- QUORUM_VOTES: '25000000000000000000000',
+ QUORUM_VOTES: '100000000000000000000000',
VOTING_PERIOD: 432000
}
}