Skip to content

Commit

Permalink
chore: update to babylon lab (#16)
Browse files Browse the repository at this point in the history
* chore: update to babylon lab
  • Loading branch information
jrwbabylonlab authored Jul 30, 2024
1 parent 1b81655 commit 3014c7e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NEXT_PUBLIC_MEMPOOL_API=https://babylon.mempool.space
NEXT_PUBLIC_API_URL=https://staking-api.staging.babylonchain.io
NEXT_PUBLIC_API_URL=https://staking-api.testnet.babylonchain.io
NEXT_PUBLIC_NETWORK=signet
NEXT_PUBLIC_DISPLAY_TESTING_MESSAGES=true
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.

Parameters

Licensor: Babylonchain, Inc.
Licensor: Babylon Labs, Ltd.

Licensed Work: simple-staking
The Licensed Work is (c) 2024 Babylonchain, Inc.
The Licensed Work is (c) 2024 Babylon Labs, Ltd.

Additional Use Grant: None.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "rm -r node_modules",
"build-docker": "docker build -t babylonchain/simple-staking .",
"clean-docker": "docker rmi babylonchain/simple-staking 2>/dev/null; true",
"build-docker": "docker build -t babylonlabs/simple-staking .",
"clean-docker": "docker rmi babylonlabs/simple-staking 2>/dev/null; true",
"prepare": "husky",
"sort-imports": "eslint --fix .",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/FAQ/data/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const questions = (coinName: string): Question[] => {
},
{
title: "Are there any other ways to stake?",
content: `<p>Hands-on stakers can operate the <a href="https://github.com/babylonchain/btc-staker/blob/dev/docs/create-phase1-staking.md" target="_blank" rel="noopener noreferrer" class="text-primary"><u>btc-staker CLI program</u></a> that allows for the creation of ${coinName} staking transactions from the CLI.</p>
content: `<p>Hands-on stakers can operate the <a href="https://github.com/babylonlabs-io/btc-staker/blob/dev/docs/create-phase1-staking.md" target="_blank" rel="noopener noreferrer" class="text-primary"><u>btc-staker CLI program</u></a> that allows for the creation of ${coinName} staking transactions from the CLI.</p>
`,
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const iconLinks = [
},
{
name: "GitHub",
url: "https://github.com/babylonchain",
url: "https://github.com/babylonlabs-io",
Icon: BsGithub,
},
{
Expand All @@ -50,7 +50,7 @@ const iconLinks = [
},
{
name: "Email",
url: "mailto:contact@babylonchain.io",
url: "mailto:contact@babylonlabs.io",
Icon: MdAlternateEmail,
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/Modals/Terms/data/terms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export const Terms = () => {
<p>
If you have any dispute or claim arising out of or relating in any way
to the Interface or these Terms, you must send an email to{" "}
<a href="mailto:contracts@babylonchain.io" className="text-primary">
contracts@babylonchain.io
<a href="mailto:contact@babylonlabs.io" className="text-primary">
contact@babylonlabs.io
</a>{" "}
to resolve the matter via an informal, good faith negotiation process.
If that dispute or claim is not resolved within 60 days of sending such
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const FinalityProviders: React.FC<FinalityProvidersProps> = ({
}

const network = getNetworkConfig().network;
const createFinalityProviderLink = `https://github.com/babylonchain/networks/tree/main/${
const createFinalityProviderLink = `https://github.com/babylonlabs-io/networks/tree/main/${
network == Network.MAINNET ? "bbn-1" : "bbn-test-4"
}/finality-providers`;
return (
Expand Down

0 comments on commit 3014c7e

Please sign in to comment.