This file contains 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
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"buffer_font_size": 15, |
This file contains 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
#!/bin/bash | |
# This script verifies key aspects of the Stride network setup: | |
# 1. Namespace Creation: Ensures the Kubernetes namespace exists. | |
# 2. Pod Creation: Checks if all validator pods for each chain are running. | |
# 3. Chain Health: Verifies that each chain is synced and not catching up. | |
# 4. Relayer Health: Confirms that the IBC relayer path is set up correctly. | |
# 5. IBC Transfer: (TODO) Will test IBC transfer functionality between chains. | |
# 6. Send Notification: (TODO) Sends notification after checks are completed, to inform the team about the result. | |
# |
This file contains 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
package main | |
import "crypto/sha256" | |
type Node struct { | |
Left, Right *Node | |
Hash []byte | |
IsLeaf bool | |
} |
This file contains 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: build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
- v* | |
push: | |
branches: |
This file contains 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 MY_DOMAIN = "ghostmac.io" | |
const START_PAGE = "https://ghostmac.notion.site/Home-1c58eda481d549c5a47a985627890368" | |
const DISQUS_SHORTNAME = "ghostmac" | |
addEventListener('fetch', event => { | |
event.respondWith(fetchAndApply(event.request)) | |
}) | |
const corsHeaders = { | |
"Access-Control-Allow-Origin": "*", |