This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios'); | |
// Epoch to data to send to the finalize endpoint | |
const knownCheckpoints = { | |
"117136": { | |
"epoch": "117136", | |
"state_root": "0x6d92a3a81ce8b90ad71c11d7bcd80c551866c0dcf334f843e0234df216d90770", | |
"block_root": "0xe48389dee2da56c7101f0dacc4c5020ec91eb425ff40d16e3b924271eef53edd", | |
}, | |
"117729": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/@adminjs/typeorm/lib/Database.js b/node_modules/@adminjs/typeorm/lib/Database.js | |
index 01d0fcc..3ad852d 100644 | |
--- a/node_modules/@adminjs/typeorm/lib/Database.js | |
+++ b/node_modules/@adminjs/typeorm/lib/Database.js | |
@@ -12,7 +12,9 @@ class Database extends adminjs_1.BaseDatabase { | |
const resources = []; | |
// eslint-disable-next-line no-restricted-syntax | |
for (const entityMetadata of this.connection.entityMetadatas) { | |
- resources.push(new Resource_1.Resource(entityMetadata.target)); | |
+ resources.push(new Resource_1.Resource( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/react-native-webview/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java b/node_modules/react-native-webview/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java | |
index ab869cf..e37d88d 100644 | |
--- a/node_modules/react-native-webview/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java | |
+++ b/node_modules/react-native-webview/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java | |
@@ -2,6 +2,7 @@ package com.reactnativecommunity.webview; | |
import android.annotation.SuppressLint; | |
import android.annotation.TargetApi; | |
+import android.app.Activity; | |
import android.app.DownloadManager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const phpassbase64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; | |
const base64translate = (input) => { | |
const res = [0]; | |
let currentBit = 0, index = 0; | |
input.split('').forEach(l => { | |
const i = phpassbase64.indexOf(l); | |
res[index] += (i << currentBit) & 0xff; | |
currentBit += 6; | |
if(currentBit >= 8) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "websocket-bug", | |
"version": "0.0.1", | |
"description": "A simple test case to show a bug with connecting to secure servers while using an old version of faye-websocket", | |
"main": "test.js", | |
"dependencies": { | |
"faye-websocket": "^0.9.4" | |
}, | |
"devDependencies": {}, | |
"scripts": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/meteor b/meteor | |
index 4472075..b90d02c 100755 | |
--- a/meteor | |
+++ b/meteor | |
@@ -23,8 +23,7 @@ elif [ "$UNAME" = "Linux" ] ; then | |
ARCH="$(uname -m)" | |
if [ "$ARCH" != "i686" -a "$ARCH" != "x86_64" ] ; then | |
echo "Unsupported architecture: $ARCH" | |
- echo "Meteor only supports i686 and x86_64 for now." | |
- exit 1 |