Skip to content

Commit

Permalink
fix(site): build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiserKarel authored and cor committed Sep 28, 2023
1 parent fe19626 commit a377a28
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion site/src/lib/Xterm.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { onMount } from 'svelte';
import { ApolloClient, InMemoryCache, ApolloProvider, gql } from '@apollo/client';
import { ApolloClient, InMemoryCache, gql } from '@apollo/client/core';
import type { Terminal } from 'xterm';
const client = new ApolloClient({
Expand Down
6 changes: 0 additions & 6 deletions site/src/routes/blog/start-of-the-endgame/+page.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,10 @@ preview: "Galois and CometBLS have been live on our internal testnets for a whil
published: true
---

<script lang="ts">
import Pingpong from '$lib/Pingpong.svelte';
</script>

Galois and CometBLS have been live on our internal testnets for a while, but now we are ready to share a brief demo in anticipation of Cosmoverse. This is the **first, tangible implementation** of an effort that has been going on for the last few years by many different teams. We proudly present the first IBC connection to Ethereum.

Below is a live view of two smart contracts using General Message Passing (GMP) to play pingpong. Under the hood, [Galois]() is generating zero knowledge proofs to update lightclient state. Voyager is handling IBC relaying between `union-testnet-3` and `sepolia`.

<Pingpong/>

## Next Steps

The testnet does not have a live explorer yet, we'll be deploying that in the coming weeks, including a faucet and token transfers.
Expand Down
2 changes: 1 addition & 1 deletion site/src/routes/blog/the-journey-so-far/+page.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Note that this is not a dummy or hacky setup, we have:

1. The full IBC stack on Union and Sepolia,
2. Light clients on both sides are properly implemented including (non)membership proofs,
header verification via ZK proof, etc.
header verification via ZK proof, etc.
3. A fully functional stateless relayer. (Voyager)
4. An efficient zero-knowledge prover. (Galois)

Expand Down
3 changes: 2 additions & 1 deletion site/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default {
fontVariationSettings: '"opsz" 32',
},
],
jetbrains: 'JetBrainsMono, Disket-Mono, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
jetbrains:
'JetBrainsMono, Disket-Mono, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
colors: {
background: "#1b1b1d",
Expand Down

0 comments on commit a377a28

Please sign in to comment.