echo "https://dl-cdn.alpinelinux.org/alpine/latest-stable/main" >> /etc/apk/repositories
apk update && apk upgrade
restart app
echo "https://dl-cdn.alpinelinux.org/alpine/latest-stable/main" >> /etc/apk/repositories
apk update && apk upgrade
restart app
{ | |
"schema": "https://json.schemastore.org/tsconfig.json", | |
"display": "Default", | |
"compilerOptions": { | |
"strict": true, | |
"noEmit": true, | |
"allowJs": true, | |
"checkJs": true, | |
// add DOM and DOM.Iterable if working with browser | |
"lib": ["ESNext"], |
<!doctype html> | |
<html> | |
<head> | |
<meta http-equiv="Location" content="https://union.build" /> | |
<meta http-equiv="refresh" content="0; URL=https://union.build" /> | |
</head> | |
<body/> | |
</html> |
diff --git a/node_modules/@cosmjs/amino/build/pubkeys.js b/node_modules/@cosmjs/amino/build/pubkeys.js | |
index e9844ef..86101f8 100644 | |
--- a/node_modules/@cosmjs/amino/build/pubkeys.js | |
+++ b/node_modules/@cosmjs/amino/build/pubkeys.js | |
@@ -9,6 +9,10 @@ function isSecp256k1Pubkey(pubkey) { | |
return pubkey.type === "tendermint/PubKeySecp256k1"; | |
} | |
exports.isSecp256k1Pubkey = isSecp256k1Pubkey; | |
+function isBn254Pubkey(pubkey) { | |
+ return pubkey.type === "tendermint/PubKeyBn254"; |
export const reactiveQueryArgs = <T>(cb: () => T) => { | |
const store = writable<T>(); | |
$effect.pre(() => { | |
store.set(cb()); | |
}); | |
return store; | |
}; |
sudo apt update --yes | |
sudo apt upgrade --yes | |
sudo apt install --yes \ | |
curl \ | |
apt-transport-https \ | |
ca-certificates \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg \ |
name: 'Auto Commit Prettier' | |
on: | |
pull_request: | |
branches: ['main'] | |
jobs: | |
auto-commit: | |
name: 'Auto Commit' | |
runs-on: ['ubuntu-latest'] |
echo "http://dl-cdn.alpinelinux.org/alpine/v3.20/main" > /etc/apl/repositories; | |
echo "http://dl-cdn.alpinelinux.org/alpine/v3.20/community" >> /etc/apl/repositories; | |
echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apl/repositories; | |
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apl/repositories; | |
echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apl/repositories; | |
echo "http://dl-cdn.alpinelinux.org/alpine/latest-stable/main" >> /etc/apl/repositories; | |
echo "http://dl-cdn.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories; | |
apk update |
curl --silent --location \ | |
--request POST \ | |
--url 'https://spacex-production.up.railway.app' \ | |
--header 'Content-Type: application/json' \ | |
--data '{"query":"query IntrospectionQuery { __schema { queryType { name } mutationType { name } subscriptionType { name } types { ...FullType } directives { name description locations args { ...InputValue } } } } fragment FullType on __Type { kind name description fields(includeDeprecated: true) { name description args { ...InputValue } type { ...TypeRef } isDeprecated deprecationReason } inputFields { ...InputValue } interfaces { ...TypeRef } enumValues(includeDeprecated: true) { name description isDeprecated deprecationReason } possibleTypes { ...TypeRef } } fragment InputValue on __InputValue { name description type { ...TypeRef } defaultValue } fragment TypeRef on __Type { kind name ofType { kind name ofType { kind name ofType { kind name ofType { kind name ofType { kind name ofType { kind name ofType { kind name } } } } } } } }","variable":{}}' |
<html lang='en'> | |
<head> | |
<title>GraphiQL</title> | |
<Style> | |
body { | |
margin: 0; | |
width: 100%; | |
height: 100%; | |
overflow: hidden; |