-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
115 lines (109 loc) · 4.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Astrograph</title>
<link rel="preconnect" href="https://fonts.googleapis.com/" />
<link rel="preconnect" href="https://www.googletagmanager.com/" />
<link rel="preconnect" href="https://www.google-analytics.com" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512x512.png" />
<meta itemprop="name" content="Astrograph" />
<meta name="description" content="GraphQL interface to Stellar blockchain. Access Stellar ledger via GraphQL" />
<meta itemprop="image" content="/icon-512x512.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@evilmartians" />
<meta name="twitter:title" content="Astrograph" />
<meta
name="twitter:description"
content="GraphQL interface to Stellar blockchain. Access Stellar ledger via GraphQL"
/>
<meta name="twitter:creator" content="@evilmartians" />
<meta name="twitter:image" content="/icon-512x512.png" />
<meta property="og:title" content="Astrograph" />
<meta property="og:type" content="website" />
<meta property="og:url" content="%BASE_URL%" />
<meta property="og:image" content="/icon-512x512.png" />
<meta property="og:description" content="GraphQL interface to Stellar blockchain. Access Stellar ledger via GraphQL" />
<meta property="og:site_name" content="Astrograph" />
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "WebSite",
"name": "Astrograph",
"url": "https://astrograph.io"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "SoftwareSourceCode",
"image": "https://astrograph.io/icon-512x512.png",
"name": "Astrograph",
"description": "GraphQL interface to Stellar blockchain. Access Stellar ledger via GraphQL",
"codeRepository": "https://github.com/astroband/astrograph"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "SoftwareApplication",
"image": "https://astrograph.io/icon-512x512.png",
"name": "Astrograph",
"applicationCategory": "Web",
"operatingSystem": "Any"
}
</script>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-KQNGZJ5");
</script>
<script src="/prism.js"></script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-KQNGZJ5"
height="0"
width="0"
style="display:none;visibility:hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<noscript>
<h1>Astrograph</h1>
<h2>
GraphQL interface to Stellar blockchain. Access Stellar ledger via
GraphQL
</h2>
<p>
Astrograph is a GraphQL server for the
<a href="https://www.stellar.org/" rel="nofollow">Stellar</a> network.
You can think about it as a GraphQL version of
<a href="https://github.com/stellar/go/tree/master/services/horizon" rel="nofollow">Horizon</a>,
the client-facing API server for the Stellar ecosystem.
</p>
<p>
Astrograph allows you to retrieve various data from the blockchain, as
well as allowing you to subscribe to particular events using
<a href="https://github.com/apollographql/graphql-subscriptions" rel="nofollow">GraphQL subscriptions</a>
mechanisms.
</p>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>