Skip to content

Commit b5a18f1

Browse files
committed
devop: 🔧 cleanup and fix some aave issues
2 parents 0d17cb9 + 83af9d2 commit b5a18f1

File tree

12 files changed

+2876
-1065
lines changed

12 files changed

+2876
-1065
lines changed

apollo.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module.exports = {
22
client: {
3-
service: {
4-
name: 'api',
5-
url: 'https://hbfzqg7jia.execute-api.us-west-2.amazonaws.com/dev',
6-
},
7-
includes: ['src/apollo/**/*.graphql'],
3+
service: {
4+
name: 'api',
5+
url: 'https://api-v2.ethvm.dev:443'
6+
},
7+
includes: ['src/apollo/**/*.graphql']
88
}
9-
}
9+
};

connections.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ module.exports = [
1313
'https://estimategas.mewapi.io:443/goerli',
1414
'https://api.ethvm.com:443',
1515
'wss://apiws.ethvm.com:443',
16+
'https://api-v2.ethvm.dev:443',
17+
'wss://apiws-v2.ethvm.dev:443',
1618
'https://nft.mewapi.io:443',
1719
'https://qa.mewwallet.dev:443',
1820
'https://mainnet.mewwallet.dev:443',

package-lock.json

Lines changed: 2124 additions & 918 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-test.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,19 @@ const EXCEPTIONS = [
5252
// breaking
5353
'@shapeshiftoss/hdwallet-core',
5454
'@shapeshiftoss/hdwallet-keepkey-webusb',
55-
'@ledgerhq/hw-transport-web-ble',
56-
'@ledgerhq/hw-transport-webusb',
57-
'codecov', // no fix
58-
'vue-template-compiler', // no fix
59-
'package-json', // switched to es
55+
'package-json',
56+
'codecov',
57+
'node-polyfill-webpack-plugin',
58+
'@lokalise/node-api',
59+
'@unstoppabledomains/resolution',
60+
'@walletconnect/client',
61+
'@walletconnect/qrcode-modal',
6062
'chromedriver',
61-
'uuid',
62-
'@ensdomains/ensjs',
6363
'@ethereumjs/common',
6464
'@ethereumjs/tx',
65-
'@aave/contract-helpers',
66-
'@aave/math-utils'
65+
'graphql',
66+
'node-sass',
67+
'vue-template-compiler'
6768
];
6869
const CUSTOM_DIST = {
6970
['babel-core']: 'bridge'

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "myetherwallet",
3-
"version": "6.6.5",
3+
"version": "6.6.6",
44
"description": "Client side ethereum wallet",
55
"scripts": {
66
"build": "npm run update && vue-cli-service build",
@@ -77,7 +77,7 @@
7777
"crypto": "1.0.1",
7878
"ethereum-block-by-date": "1.4.5",
7979
"ethers": "5.7.0",
80-
"graphql": "16.6.0",
80+
"graphql": "15.5.3",
8181
"graphql-tag": "2.12.6",
8282
"highcharts": "10.2.1",
8383
"highcharts-vue": "1.4.0",

src/apollo/queries/notifications/notification.graphql

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
query getEthTransfersV2($owner: String!, $limit: Int, $nextKey: String) {
2-
getEthTransfersV2(owner: $owner, filter: TO, limit: $limit, nextKey: $nextKey) {
3-
transfers {
4-
transfer {
5-
transactionHash
6-
}
2+
getEthTransfersV2(
3+
owner: $owner
4+
direction: OUTGOING
5+
limit: $limit
6+
nextKey: $nextKey
7+
) {
8+
transfers {
9+
transfer {
10+
transactionHash
711
}
8-
nextKey
912
}
13+
nextKey
14+
}
1015
}
1116

1217
query getTransactionsByHashes($hashes: [String]!) {
@@ -42,12 +47,12 @@ query getTransactionByHash($hash: String!) {
4247
}
4348

4449
subscription pendingTransaction($owner: String) {
45-
pendingTransaction(owner: $owner) {
46-
transactionHash
47-
to
48-
}
50+
pendingTransaction(owner: $owner) {
51+
transactionHash
52+
to
53+
}
4954
}
5055

5156
subscription transactionEvent($hash: String!) {
52-
transactionEvent(hash: $hash)
57+
transactionEvent(hash: $hash)
5358
}

src/apollo/queries/tokens/tokens.graphql

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/apollo/queries/tokens721/tokens721.graphql

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)