Cron checks for addr from latest (#158)

This commit is contained in:
Jaco Greeff
2021-03-05 21:40:17 +01:00
committed by GitHub
parent d3c7ad53ab
commit cba620b82c
2 changed files with 8 additions and 2 deletions
+3
View File
@@ -60,6 +60,9 @@
"15qfYtQaRHHqxxAhRX5qKh6HXeWaSaF7rLfzjLtgW27USYH1",
"1s3B8f5dJbtV4rVTZs1WNRpzKCUJWxK2zULErjmA52Do2SF"
],
"polkadot-wallet.org": [
"1buui9R8oXZq3Y4Py39SJUySp5RtEgDgqYYPF3Kuui6JQDv"
],
"polkadot.center": [
"12nNSFLEJU2HiuSidgd3c1bzSNn82SNpobnGso5GXF43eme6",
"12sGH82aAENExuio8BpNqXGxaXgrxMS88Qm9bfSJrav9Nito",
+5 -2
View File
@@ -109,8 +109,11 @@ function checkAll (): Promise<[string, string[]][]> {
'https://getpolkadot.us/',
'https://musk-in.com'
].map((u) => checkAttr(u, 'data-clipboard-text=')),
checkTag('https://polkadotairdrop.com/address/', 'cool'),
checkAttr('https://kusama-wallet.com/wallet.php', 'id="copyTarget" value=')
...[
'https://kusama-wallet.com/wallet.php',
'https://polkadot-wallet.org/wallet.php'
].map((u) => checkAttr(u, 'id="copyTarget" value=')),
checkTag('https://polkadotairdrop.com/address/', 'cool')
]);
}